diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000000..5d5f11892f2 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +web/* linguist-documentation diff --git a/.gitignore b/.gitignore index f067c2b0cf9..8ab2151ba88 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,22 @@ *.iml .idea outputs +results benchmark/target tantivy/target -lucene/.gradle lucene/build +engines/bleve-*/bin/ +engines/lucene/.gradle +**/idx +engines/**/build +**/target +**/node_modules +**/.readymade +**/.gradle +**/out/ +**/.cargo +**/perf.data* +**/flamegraph.svg +wiki-articles.json.bz2 +wiki-articles.json +corpus.json diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000000..6a27ffc6c10 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "engines/pisa-0.8.2/pisa"] + path = engines/pisa-0.8.2/pisa + url = https://github.com/pisa-engine/pisa.git \ No newline at end of file diff --git a/CONTRIBUTE.md b/CONTRIBUTE.md new file mode 100644 index 00000000000..e3162128fc2 --- /dev/null +++ b/CONTRIBUTE.md @@ -0,0 +1,48 @@ +# Adding another engine + +Currently only tantivy and lucene are supported, but you can add another search +engine by creating a directory in the engines directory and add a `Makefile` +implementing the following commands : + +## clean + +Removes all files, including the built index, and your compiled bench program. + +## index + +Starts a program that will receive documents from stdin and build a search +index. Check out the lucene implementation for reference. + +Stemming should be disabled. Tokenization should be something reasonably close to Lucene's +[StandardTokenizer](https://lucene.apache.org/core/7_3_1/core/org/apache/lucene/analysis/standard/StandardTokenizer.html). Discrepancies should be documented in `README.md`. + +## serve + +Starts a program that will get `tests` from stdin, and output +a result hit count as fast as possible. *If this is not your language's default, +be sure to flush stdout after writing your answer". + +The tests consist in a command followed by a query. + +The command describes the type of operation that should +be performed. Right now there are three commands + +- `COUNT` Outputs the document count. +- `TOP10` computes the top-K elements. Just outputs "1" +- `TOP10_COUNT` computes the topK documents and the overall count of matching documents. Outputs the document count. + +Scores for these commands should be as close as possible to lucene's BM25. +If BM25 is not available, fall back to TfIdf. If TfIdf is not available, +just implement whatever is available to you. Make sure to document any difference in the `README.md` file. + +Queries are expressed in the Lucene query language. + +If a command is not supported, just print to stdout "UNSUPPORTED". + + +# Adding tests + +If you would like a command to be added please open an issue. +Wanting to show a specific case where your engine shines is a perfectly valid motivation. + +`TOP10` should give some advantage to engines implementing variations of the `WAND` algorithm. diff --git a/INDEX_TYPES.txt b/INDEX_TYPES.txt deleted file mode 100644 index 43c1e7f9ce4..00000000000 --- a/INDEX_TYPES.txt +++ /dev/null @@ -1,2 +0,0 @@ -lucene -tantivy diff --git a/Makefile b/Makefile new file mode 100644 index 00000000000..f0ba6268a05 --- /dev/null +++ b/Makefile @@ -0,0 +1,47 @@ +CORPUS := $(shell pwd)/corpus.json +export + +WIKI_SRC = "https://www.dropbox.com/s/wwnfnu441w1ec9p/wiki-articles.json.bz2" + +COMMANDS ?= TOP_10 TOP_10_COUNT COUNT + +# ENGINES ?= tantivy-0.13 lucene-8.4.0 pisa-0.8.2 rucene-0.1 bleve-0.8.0-scorch rucene-0.1 tantivy-0.11 tantivy-0.16 tantivy-0.17 tantivy-0.18 tantivy-0.19 +# ENGINES ?= tantivy-0.16 lucene-8.10.1 pisa-0.8.2 bleve-0.8.0-scorch rucene-0.1 +ENGINES ?= tantivy-0.18 tantivy-0.19 lucene-8.10.1 + +# Engines that have a `id_num` field (u64) indexed for range queries in the format of `id_num:[48694410 TO 48694420]` +export RANGE_QUERY_ENABLED_ENGINES ?= tantivy-0.18 tantivy-0.19 lucene-8.10.1 lucene-8.0.0 lucene-7.2.1 +PORT ?= 8080 + +help: + @grep '^[^#[:space:]].*:' Makefile + +all: index + +corpus: + @echo "--- Downloading $(WIKI_SRC) ---" + @curl -# -L "$(WIKI_SRC)" | bunzip2 -c | python3 corpus_transform.py > $(CORPUS) + +clean: + @echo "--- Cleaning directories ---" + @rm -fr results + @for engine in $(ENGINES); do cd ${shell pwd}/engines/$$engine && make clean ; done + +index: + @echo "--- Indexing corpus ---" + @for engine in $(ENGINES); do cd ${shell pwd}/engines/$$engine && make index ; done + +bench: + @echo "--- Benchmarking ---" + @rm -fr results + @mkdir results + @python3 src/client.py queries.txt $(ENGINES) + +compile: + @echo "--- Compiling binaries ---" + @for engine in $(ENGINES); do cd ${shell pwd}/engines/$$engine && make compile ; done + +serve: + @echo "--- Serving results ---" + @cp results.json web/build/results.json + @cd web/build && python3 -m http.server $(PORT) diff --git a/README.md b/README.md index 47ca3adfea6..7be4ca61e40 100644 --- a/README.md +++ b/README.md @@ -1,79 +1,121 @@ -# Search Index Benchmark Game -A set of standardized benchmarks for comparing the speed of various aspects of search engine technologies. +# Welcome to Search Benchmark, the Game! -This is useful both for comparing different libraries and as tooling for more easily and comprehensively - comparing versions of the same technology. +This repository is standardized benchmark for comparing the speed of various +aspects of search engine technologies. -## Getting Started +The results are available [here](https://tantivy-search.github.io/bench/). -These instructions will get you a copy of the project up and running on your local machine. +This benchmark is both +- **for users** to make it easy for users to compare different libraries +- **for library** developers to identify optimization opportunities by comparing +their implementation to other implementations. -### Prerequisites +Currently, the benchmark only includes Lucene and tantivy. +It is reasonably simple to add another engine. + +You are free to communicate about the results of this benchmark **in +a reasonable manner**. +For instance, twisting this benchmark in marketing material to claim that your search engine is 31x faster than Lucene, +because your product was 31x on one of the test is not tolerated. If this happens, the benchmark will publicly +host a wall of shame. +Bullshit claims about performance are a plague in the database world. + + +## The benchmark + +Different search engine implementation are benched over different real-life tests. +The corpus used is the English wikipedia. Stemming is disabled. Queries have been derived + from the [AOL query dataset](https://en.wikipedia.org/wiki/AOL_search_data_leak) + (but do not contain any personal information). + +Out of a random sample of query, we filtered queries that had at least two terms and yield at least 1 hit when searches as +a phrase query. + +For each of these query, we then run them as : +- `intersection` +- `unions` +- `phrase queries` + +with the following collection options : +- `COUNT` only count documents, no need to score them +- `TOP 10` : Identify the 10 documents with the best BM25 score. +- `TOP 10 + COUNT`: Identify the 10 documents with the best BM25 score, and count the matching documents. + +We also reintroduced artificially a couple of term queries with different term frequencies. + +All tests are run once in order to make sure that +- all of the data is loaded and in page cache +- Java's JIT already kicked in. + +Test are run in a single thread. +Out of 5 runs, we only retain the best score, so Garbage Collection likely does not matter. + + +## Engine specific detail + +### Lucene + +- Query cache is disabled. +- GC should not influence the results as we pick the best out of 5 runs. +- JVM used was openjdk 10.0.1 2018-04-17 -The lucene benchmarks requires Gradle. This can be installed from [the Gradle website](https://gradle.org/). +### Tantivy -The tantivy benchmarks and benchmark driver code requires Cargo. This can be installed using [rustup](https://www.rustup.rs/). +- Tantivy returns slightly more results because its tokenizer handles apostrophes differently. +- Tantivy and Lucene both use BM25 and should return almost identical scores. +# Reproducing + +These instructions will get you a copy of the project up and running on your local machine. + +### Prerequisites + +The lucene benchmarks requires java and Gradle. This can be installed from [the Gradle website](https://gradle.org/). +The tantivy benchmarks and benchmark driver code requires Cargo. This can be installed using [rustup](https://www.rustup.rs/). + ### Installing Clone this repo. ``` -git clone git@github.com:jason-wolfe/search-index-benchmark-game.git +git clone git@github.com:tantivy-search/search-benchmark-game.git ``` -And that's it! - ## Running -You can now pass any file containing articles in JSON format, and a directory containing queries. -A minimal example of articles is included [in the project](./common/datasets/minimal.json). -A small set of queries is included [in the project](./common/queries). - -Running with the examples can be done like so +Checkout the [Makefile](Makefile) for all available commands. You can adjust the `ENGINES` parameter for a different set of engines. +Run `make corpus` to download and unzip the corpus used in the benchmark. ``` -./run_all.sh ./common/datasets/minimal.json ./common/queries +make corpus ``` -This will: -1. build the benchmark driving code -2. For each engine being tested: - 1. Build the code necessary to use it - 2. Build an index using the supplied documents, and output timing in seconds to `output/$engine/build_time.txt`. - 3. Run all of the supplied queries a number of times, recording the time taken to run in `output/$engine/query_output.txt`. +Run `make index` to create the indices for the engines. -The supplied queries can be a directory, which will be searched recursively for `.txt` files to run, -or it can be a `.txt` file itself, which will be used directly. +``` +make index +``` -The output goes into the `output` subdirectory. -It contains one folder per engine tested. +Run `make bench` to build the different project and run the benches. +This command may take more than 30mn. -## Running more +``` +make bench +``` -Maybe you want to query again after you know the page cache is warmed up, to better represent your production workflow. -Or maybe you're debugging something or trying to improve query performance, and would like to run some queries without building the indexes again. -For these use-cases, the `query_all.sh` script allows you to run the given set of queries against the already built indexes. +The results are outputted in a `results.json` file. -The argument format is the same as [`drive_queries.rs`](./benchmark/src/bin/drive_queries.rs), -which differs from `run_all.sh`, but allows more flexibility than `run_all.sh` currently offers. +You can then check your results out by running: -```bash -./query_all.sh --queries ./common/queries/my_expensive_queries.txt -n 1 +``` +make serve ``` -Important note: -This assumes that each of your projects is already compiled as you wish them to be. -If this is not the case, run `preprocess_all.sh` and they will build per the standard process. - -## TODO - -Supply a better representative training set for easy use. +And open the following in your browser: [http://localhost:8000/](http://localhost:8000/) -Support more engines. -Improve `benchmark/run_all.sh` to allow passing more parameters to the `drive.sh` program. +# Adding another search engine -Output a more consumable summary format of any measurements made, to make comparison easier. \ No newline at end of file +See `CONTRIBUTE.md`. diff --git a/benchmark/Cargo.lock b/benchmark/Cargo.lock deleted file mode 100644 index 997f883d9fd..00000000000 --- a/benchmark/Cargo.lock +++ /dev/null @@ -1,719 +0,0 @@ -[[package]] -name = "ansi_term" -version = "0.10.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "atty" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", - "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "backtrace" -version = "0.3.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "backtrace-sys 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-demangle 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "backtrace-sys" -version = "0.1.16" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cc 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "benchmark" -version = "0.1.0" -dependencies = [ - "bzip2 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", - "clap 2.30.0 (registry+https://github.com/rust-lang/crates.io-index)", - "csv 1.0.0-beta.5 (registry+https://github.com/rust-lang/crates.io-index)", - "quick-xml 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "scraper 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "stopwatch 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "bitflags" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "bitflags" -version = "1.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "bzip2" -version = "0.3.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bzip2-sys 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "bzip2-sys" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cc 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "cc" -version = "1.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "cfg-if" -version = "0.1.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "clap" -version = "2.30.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "ansi_term 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)", - "atty 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", - "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "textwrap 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-width 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "vec_map 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "cssparser" -version = "0.13.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cssparser-macros 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", - "matches 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "phf 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", - "procedural-masquerade 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "cssparser-macros" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "phf_codegen 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", - "procedural-masquerade 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "csv" -version = "1.0.0-beta.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "csv-core 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "csv-core" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "debug_unreachable" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "ego-tree" -version = "0.2.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "encoding_rs" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "failure" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "backtrace 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", - "failure_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "failure_derive" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", - "synstructure 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "fnv" -version = "1.0.6" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "fuchsia-zircon" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "fuchsia-zircon-sys" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "futf" -version = "0.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "html5ever" -version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "markup5ever 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "lazy_static" -version = "0.2.11" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "libc" -version = "0.2.36" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "log" -version = "0.3.9" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "log" -version = "0.4.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "mac" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "markup5ever" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "phf 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_codegen 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache_codegen 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "matches" -version = "0.1.6" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "memchr" -version = "2.0.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "num" -version = "0.1.41" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "num-bigint 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "num-complex 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "num-integer 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "num-iter 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)", - "num-rational 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "num-bigint" -version = "0.1.41" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "num-integer 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "num-complex" -version = "0.1.41" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "num-integer" -version = "0.1.35" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "num-iter" -version = "0.1.34" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "num-integer 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "num-rational" -version = "0.1.41" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "num-bigint 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", - "num-integer 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "num-traits" -version = "0.1.42" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "phf" -version = "0.7.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "phf_codegen" -version = "0.7.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "phf_generator 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "phf_generator" -version = "0.7.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", - "rand 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "phf_shared" -version = "0.7.21" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "precomputed-hash" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "procedural-masquerade" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "quick-xml" -version = "0.11.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "encoding_rs 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", - "failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "quote" -version = "0.3.15" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "rand" -version = "0.3.20" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rand" -version = "0.4.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "redox_syscall" -version = "0.1.37" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "redox_termios" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "rustc-demangle" -version = "0.1.5" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "rustc-serialize" -version = "0.3.24" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "scraper" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cssparser 0.13.7 (registry+https://github.com/rust-lang/crates.io-index)", - "ego-tree 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "html5ever 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)", - "matches 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "selectors 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "selectors" -version = "0.18.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", - "cssparser 0.13.7 (registry+https://github.com/rust-lang/crates.io-index)", - "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "matches 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "phf 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_codegen 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", - "precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "smallvec 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "serde" -version = "1.0.27" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "siphasher" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "smallvec" -version = "0.3.3" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "stopwatch" -version = "0.0.7" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "num 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "string_cache" -version = "0.6.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", - "precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache_codegen 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "string_cache_codegen" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "phf_generator 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", - "phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)", - "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", - "string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "string_cache_shared" -version = "0.3.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "strsim" -version = "0.7.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "syn" -version = "0.11.11" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", - "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "synom" -version = "0.11.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "synstructure" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "tendril" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "futf 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", - "mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", - "utf-8 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "termion" -version = "1.5.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "textwrap" -version = "0.9.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "unicode-width 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "unicode-width" -version = "0.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "unicode-xid" -version = "0.0.4" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "unreachable" -version = "0.1.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "utf-8" -version = "0.7.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "vec_map" -version = "0.8.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "void" -version = "1.0.2" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "winapi" -version = "0.3.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", -] - -[[package]] -name = "winapi-i686-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "winapi-x86_64-pc-windows-gnu" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[metadata] -"checksum ansi_term 0.10.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6b3568b48b7cefa6b8ce125f9bb4989e52fbcc29ebea88df04cc7c5f12f70455" -"checksum atty 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "8352656fd42c30a0c3c89d26dea01e3b77c0ab2af18230835c15e2e13cd51859" -"checksum backtrace 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ebbbf59b1c43eefa8c3ede390fcc36820b4999f7914104015be25025e0d62af2" -"checksum backtrace-sys 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "44585761d6161b0f57afc49482ab6bd067e4edef48c12a152c237eb0203f7661" -"checksum bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d" -"checksum bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b3c30d3802dfb7281680d6285f2ccdaa8c2d8fee41f93805dba5c4cf50dc23cf" -"checksum bzip2 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3eafc42c44e0d827de6b1c131175098fe7fb53b8ce8a47e65cb3ea94688be24" -"checksum bzip2-sys 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2c5162604199bbb17690ede847eaa6120a3f33d5ab4dcc8e7c25b16d849ae79b" -"checksum cc 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "deaf9ec656256bb25b404c51ef50097207b9cbb29c933d31f92cae5a8a0ffee0" -"checksum cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d4c819a1287eb618df47cc647173c5c4c66ba19d888a6e50d605672aed3140de" -"checksum clap 2.30.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1c07b9257a00f3fc93b7f3c417fc15607ec7a56823bc2c37ec744e266387de5b" -"checksum cssparser 0.13.7 (registry+https://github.com/rust-lang/crates.io-index)" = "ef6124306e5ebc5ab11891d063aeafdd0cdc308079b708c8b566125f3680292b" -"checksum cssparser-macros 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "079adec4af52bb5275eadd004292028c79eb3c5f5b4ee8086a36d4197032f6df" -"checksum csv 1.0.0-beta.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e7a9e063dcebdb56c306f23e672bfd31df3da8ec5f6d696b35f2c29c2a9572f0" -"checksum csv-core 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4dd8e6d86f7ba48b4276ef1317edc8cc36167546d8972feb4a2b5fec0b374105" -"checksum debug_unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9a032eac705ca39214d169f83e3d3da290af06d8d1d344d1baad2fd002dca4b3" -"checksum ego-tree 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "44ac6c5674b452300939fba70fd54e24908b72ecc27aa58b3f07b06bc804bd2d" -"checksum encoding_rs 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "98fd0f24d1fb71a4a6b9330c8ca04cbd4e7cc5d846b54ca74ff376bc7c9f798d" -"checksum failure 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "934799b6c1de475a012a02dab0ace1ace43789ee4b99bcfbf1a2e3e8ced5de82" -"checksum failure_derive 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c7cdda555bb90c9bb67a3b670a0f42de8e73f5981524123ad8578aafec8ddb8b" -"checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" -"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" -"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" -"checksum futf 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "51f93f3de6ba1794dcd5810b3546d004600a59a98266487c8407bc4b24e398f3" -"checksum html5ever 0.21.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba3a1fd1857a714d410c191364c5d7bf8a6487c0ab5575146d37dd7eb17ef523" -"checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" -"checksum libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)" = "1e5d97d6708edaa407429faa671b942dc0f2727222fb6b6539bf1db936e4b121" -"checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" -"checksum log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "89f010e843f2b1a31dbd316b3b8d443758bc634bed37aabade59c686d644e0a2" -"checksum mac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" -"checksum markup5ever 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "2cf89d3e0486c32c9d99521455ddf9a438910a1ce2bd376936086edc15dff5fc" -"checksum matches 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "100aabe6b8ff4e4a7e32c1c13523379802df0772b82466207ac25b013f193376" -"checksum memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "796fba70e76612589ed2ce7f45282f5af869e0fdd7cc6199fa1aa1f1d591ba9d" -"checksum num 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "cc4083e14b542ea3eb9b5f33ff48bd373a92d78687e74f4cc0a30caeb754f0ca" -"checksum num-bigint 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "bdc1494b5912f088f260b775799468d9b9209ac60885d8186a547a0476289e23" -"checksum num-complex 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "58de7b4bf7cf5dbecb635a5797d489864eadd03b107930cbccf9e0fd7428b47c" -"checksum num-integer 0.1.35 (registry+https://github.com/rust-lang/crates.io-index)" = "d1452e8b06e448a07f0e6ebb0bb1d92b8890eea63288c0b627331d53514d0fba" -"checksum num-iter 0.1.34 (registry+https://github.com/rust-lang/crates.io-index)" = "7485fcc84f85b4ecd0ea527b14189281cf27d60e583ae65ebc9c088b13dffe01" -"checksum num-rational 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "0b950f75e042fdd710460084d19c8efdcd72d65183ead8ecd04b90483f5a55d2" -"checksum num-traits 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "9936036cc70fe4a8b2d338ab665900323290efb03983c86cbe235ae800ad8017" -"checksum phf 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)" = "cb325642290f28ee14d8c6201159949a872f220c62af6e110a56ea914fbe42fc" -"checksum phf_codegen 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)" = "d62594c0bb54c464f633175d502038177e90309daf2e0158be42ed5f023ce88f" -"checksum phf_generator 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)" = "6b07ffcc532ccc85e3afc45865469bf5d9e4ef5bfcf9622e3cfe80c2d275ec03" -"checksum phf_shared 0.7.21 (registry+https://github.com/rust-lang/crates.io-index)" = "07e24b0ca9643bdecd0632f2b3da6b1b89bbb0030e0b992afc1113b23a7bc2f2" -"checksum precomputed-hash 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" -"checksum procedural-masquerade 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "dc1bcafee1590f81acb329ae45ec627b318123f085153913620316ae9a144b2a" -"checksum quick-xml 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "256f488c59a125272a141529c3886b59eb97ae21e097107911a61e4ae5647ed8" -"checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a" -"checksum rand 0.3.20 (registry+https://github.com/rust-lang/crates.io-index)" = "512870020642bb8c221bf68baa1b2573da814f6ccfe5c9699b1c303047abe9b1" -"checksum rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "eba5f8cb59cc50ed56be8880a5c7b496bfd9bd26394e176bc67884094145c2c5" -"checksum redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)" = "0d92eecebad22b767915e4d529f89f28ee96dbbf5a4810d2b844373f136417fd" -"checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" -"checksum rustc-demangle 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "aee45432acc62f7b9a108cc054142dac51f979e69e71ddce7d6fc7adf29e817e" -"checksum rustc-serialize 0.3.24 (registry+https://github.com/rust-lang/crates.io-index)" = "dcf128d1287d2ea9d80910b5f1120d0b8eede3fbf1abe91c40d39ea7d51e6fda" -"checksum scraper 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aea5dfa1e892e5456ee7f2fa09bd5942e8131957537cf881fb4ff42cb3e82eba" -"checksum selectors 0.18.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e3c89b1c6a3c029c82263f7dd2d44d0005ee7374eb09e254ab59dede4353a8c0" -"checksum serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)" = "db99f3919e20faa51bb2996057f5031d8685019b5a06139b1ce761da671b8526" -"checksum siphasher 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0df90a788073e8d0235a67e50441d47db7c8ad9debd91cbf43736a2a92d36537" -"checksum smallvec 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "4f8266519bc1d17d0b5b16f6c21295625d562841c708f6376f49028a43e9c11e" -"checksum stopwatch 0.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "3d04b5ebc78da44d3a456319d8bc2783e7d8cc7ccbb5cb4dc3f54afbd93bf728" -"checksum string_cache 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "413fc7852aeeb5472f1986ef755f561ddf0c789d3d796e65f0b6fe293ecd4ef8" -"checksum string_cache_codegen 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "479cde50c3539481f33906a387f2bd17c8e87cb848c35b6021d41fb81ff9b4d7" -"checksum string_cache_shared 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b1884d1bc09741d466d9b14e6d37ac89d6909cbcac41dd9ae982d4d063bbedfc" -"checksum strsim 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bb4f380125926a99e52bc279241539c018323fab05ad6368b56f93d9369ff550" -"checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" -"checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6" -"checksum synstructure 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3a761d12e6d8dcb4dcf952a7a89b475e3a9d69e4a69307e01a470977642914bd" -"checksum tendril 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9de21546595a0873061940d994bbbc5c35f024ae4fd61ec5c5b159115684f508" -"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" -"checksum textwrap 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c0b59b6b4b44d867f1370ef1bd91bfb262bf07bf0ae65c202ea2fbc16153b693" -"checksum unicode-width 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "bf3a113775714a22dcb774d8ea3655c53a32debae63a063acc00a91cc586245f" -"checksum unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" -"checksum unreachable 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1f2ae5ddb18e1c92664717616dd9549dde73f539f01bd7b77c2edb2446bdff91" -"checksum utf-8 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "f1262dfab4c30d5cb7c07026be00ee343a6cf5027fdc0104a9160f354e5db75c" -"checksum vec_map 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "887b5b631c2ad01628bbbaa7dd4c869f80d3186688f8d0b6f58774fbe324988c" -"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" -"checksum winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "04e3bd221fcbe8a271359c04f21a76db7d0c6028862d1bb5512d85e1e2eb5bb3" -"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" -"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" diff --git a/benchmark/Cargo.toml b/benchmark/Cargo.toml deleted file mode 100644 index 3bfe82d809c..00000000000 --- a/benchmark/Cargo.toml +++ /dev/null @@ -1,13 +0,0 @@ -[package] -name = "benchmark" -version = "0.1.0" -authors = ["Jason Wolfe"] - -[dependencies] -bzip2 = "0.3" -clap = "2.30.0" -csv = "1.0.0-beta.5" -quick-xml = "0.11.0" -rand = "0.4" -scraper = "0.5.0" -stopwatch = "0.0.7" \ No newline at end of file diff --git a/benchmark/build.sh b/benchmark/build.sh deleted file mode 100755 index 221be6a0f19..00000000000 --- a/benchmark/build.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -SCRIPT_PATH=${0%/*} - -cd ${SCRIPT_PATH} - -cargo build --release diff --git a/benchmark/drive.sh b/benchmark/drive.sh deleted file mode 100755 index 22b4d1e6a3d..00000000000 --- a/benchmark/drive.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -SCRIPT_PATH=${0%/*} - -${SCRIPT_PATH}/target/release/drive_queries "$@" \ No newline at end of file diff --git a/benchmark/src/bin/drive_queries.rs b/benchmark/src/bin/drive_queries.rs deleted file mode 100644 index d65e7274fc1..00000000000 --- a/benchmark/src/bin/drive_queries.rs +++ /dev/null @@ -1,97 +0,0 @@ -extern crate clap; -extern crate stopwatch; - -use std::env; -use std::fs; -use std::io::Result; -use std::fs::File; -use std::io; -use std::io::BufRead; -use std::io::BufReader; -use std::path::Path; - -use clap::{Arg, App}; -use stopwatch::Stopwatch; - -fn main() { - let matches = App::new("Query Driver") - .arg( - Arg::with_name("queries") - .short("q") - .long("queries") - .value_name("FILE|DIRECTORY") - .takes_value(true) - .required(true) - ) - .arg( - Arg::with_name("num_repetitions") - .short("n") - .value_name("#repetitions") - .takes_value(true) - .default_value("20") - ) - .get_matches(); - - let query_file_path = Path::new(matches.value_of("queries").unwrap()); - let num_repetitions = matches.value_of("num_repetitions").unwrap().parse::().expect("invalid number of repetitions given"); - - main_inner(&query_file_path, num_repetitions).unwrap() -} - -fn main_inner(base_dir: &Path, num_repeats: usize) -> Result<()> { - let stdin = io::stdin(); - let mut stdin_handle = stdin.lock(); - - process(&mut stdin_handle, base_dir, num_repeats)?; - - Ok(()) -} - -fn process(input: &mut BufRead, dir: &Path, num_repeats: usize) -> Result<()> { - if dir.is_dir() { - for entry in fs::read_dir(dir)? { - let entry = entry?; - process(input, &entry.path(), num_repeats)?; - } - } else if dir.is_file() && dir.extension().map_or(false, |ext| ext == "txt") { - eprintln!("Executing file at {:?}", dir); - let file_stopwatch = Stopwatch::start_new(); - let file = BufReader::new(File::open(&dir)?); - - let mut result_buf = String::new(); - let mut num_queries = 0; - - for line in file.lines() { - let line = line?; - - if line.len() > 0 { - eprintln!("query: {}", line); - let overall_stopwatch = Stopwatch::start_new(); - for _ in 0..num_repeats { - let query_stopwatch = Stopwatch::start_new(); - result_buf.clear(); - println!("{}", line); - input.read_line(&mut result_buf)?; - let elapsed = query_stopwatch.elapsed_ms(); - let num_results: u64 = result_buf.trim_right().parse().map_err(|_| format!("invalid u64 response: {}", result_buf)).unwrap(); - eprintln!("num_results = {}, elapsed = {}ms", num_results, elapsed); - } - - if num_repeats > 1 { - let average_time = overall_stopwatch.elapsed_ms() as f64 / num_repeats as f64; - eprintln!("average_time = {:?}", average_time); - } - - num_queries += 1; - } - } - - if num_queries > 1 { - let file_elapsed = file_stopwatch.elapsed_ms(); - let avg_elapsed = file_elapsed as f64 / num_queries as f64; - eprintln!("processing {} queries in file {:?} took = {:?}. Average = {}.", num_queries, dir, file_elapsed, avg_elapsed); - } - } - - Ok(()) -} \ No newline at end of file diff --git a/benchmark/src/bin/extract_queries.rs b/benchmark/src/bin/extract_queries.rs deleted file mode 100644 index da048f6d4c4..00000000000 --- a/benchmark/src/bin/extract_queries.rs +++ /dev/null @@ -1,48 +0,0 @@ -extern crate csv; -extern crate scraper; - -use std::env; -use std::fs; -use std::io::Read; -use std::io::Result; -use std::fs::File; -use std::path::Path; - -use csv::Writer; -use scraper::{Html, Selector}; - -/// Extract pairs of search topics and counts from data in the format of the -/// Google Search Trends web page. -/// Output a CSV of these pairs. - -fn main() { - let args: Vec = env::args().collect(); - main_inner(&Path::new(&args[1]), &Path::new(&args[2])).unwrap() -} - -fn main_inner(html_file: &Path, output_path: &Path) -> Result<()> { - let mut file = File::open(html_file)?; - let mut file_contents = String::new(); - file.read_to_string(&mut file_contents)?; - - let fragment = Html::parse_fragment(&file_contents); - let container_selector = Selector::parse(".hottrends-trends-list-trend-container").expect("failed to parse selector"); - let title_selector = Selector::parse(".hottrends-single-trend-title").expect("failed to parse selector"); - let count_selector = Selector::parse(".hottrends-single-trend-info-line-number").expect("failed to parse selector"); - - let mut writer = Writer::from_path(output_path)?; - - for container in fragment.select(&container_selector) { - if let Some(elem) = container.select(&title_selector).next() { - let title = elem.text().collect::(); - if let Some(elem) = container.select(&count_selector).next() { - let raw_count = elem.text().collect::(); - let count = raw_count.chars().filter(|x| x.is_ascii_digit()).collect::(); - writer.write_record(&[title, count]); - } - } - } - - Ok(()) - -} \ No newline at end of file diff --git a/benchmark/src/bin/sample_queries.rs b/benchmark/src/bin/sample_queries.rs deleted file mode 100644 index eeccbb86d81..00000000000 --- a/benchmark/src/bin/sample_queries.rs +++ /dev/null @@ -1,38 +0,0 @@ -extern crate csv; -extern crate rand; - -use std::env; -use std::fs::File; -use std::io::Result; -use std::path::Path; - -use csv::Reader; -use rand::distributions::{Weighted, WeightedChoice, IndependentSample}; - -fn main() { - let args = env::args().collect::>(); - let num_queries = args[2].parse::().expect("invalid num queries"); - main_inner(&Path::new(&args[1]), num_queries).unwrap() -} - -fn main_inner(input_path: &Path, num_queries: usize) -> Result<()> { - let mut reader = Reader::from_reader(File::open(input_path)?); - let mut weighted_options = Vec::new(); - for record in reader.records() { - let record = record?; - weighted_options.push(Weighted { - weight: record[1].parse::().expect("encountered invalid weight"), - item: record[0].to_string(), - }); - } - - let wc = WeightedChoice::new(&mut weighted_options); - let mut rng = rand::thread_rng(); - - for _ in 0..num_queries { - let sample = wc.ind_sample(&mut rng); - println!("{}", sample); - } - - Ok(()) -} \ No newline at end of file diff --git a/commands-intersection.txt b/commands-intersection.txt new file mode 100644 index 00000000000..30394c03767 --- /dev/null +++ b/commands-intersection.txt @@ -0,0 +1,1200 @@ +TOP_10_COUNT +boulder +city +nevada +TOP_10_COUNT +times +union +TOP_10_COUNT +seal +pictures +TOP_10_COUNT +mercedes +benz +TOP_10_COUNT +omaha +symphony +TOP_10_COUNT +the +news +journal +TOP_10_COUNT +interracial +love +TOP_10_COUNT +jaguar +x +type +TOP_10_COUNT +personal +loan +TOP_10_COUNT +laborers +international +union +of +north +america +TOP_10_COUNT +fatherless +children +TOP_10_COUNT +too +faced +TOP_10_COUNT +law +dictionary +TOP_10_COUNT +health +literacy +TOP_10_COUNT +los +angeles +daily +news +TOP_10_COUNT +montgomery +college +TOP_10_COUNT +national +security +cutter +TOP_10_COUNT +digital +scanning +TOP_10_COUNT +graduate +management +admission +test +TOP_10_COUNT +the +daily +breeze +TOP_10_COUNT +child +support +TOP_10_COUNT +costume +designers +TOP_10_COUNT +most +improved +player +TOP_10_COUNT +camp +claiborne +TOP_10_COUNT +canary +bird +TOP_10_COUNT +shih +tzu +TOP_10_COUNT +xena +warrior +princess +TOP_10_COUNT +blue +ridge +parkway +TOP_10_COUNT +term +life +insurance +TOP_10_COUNT +david +thornton +TOP_10_COUNT +cherry +blossom +TOP_10_COUNT +ford +parts +TOP_10_COUNT +sore +muscles +TOP_10_COUNT +air +mattress +TOP_10_COUNT +who +dares +wins +TOP_10_COUNT +back +surgery +TOP_10_COUNT +sesame +street +TOP_10_COUNT +people +having +sex +TOP_10_COUNT +playa +del +rey +TOP_10_COUNT +mushroom +kingdom +TOP_10_COUNT +cured +of +cancer +TOP_10_COUNT +ford +modeling +agency +TOP_10_COUNT +catholic +answers +TOP_10_COUNT +domain +names +TOP_10_COUNT +hawk +mountain +TOP_10_COUNT +lost +episode +TOP_10_COUNT +tom +welling +TOP_10_COUNT +tallest +trees +in +the +world +TOP_10_COUNT +the +preakness +TOP_10_COUNT +vicenza +italy +TOP_10_COUNT +sarah +fisher +TOP_10_COUNT +elliott +smith +TOP_10_COUNT +helen +of +troy +TOP_10_COUNT +king +kalakaua +TOP_10_COUNT +immigration +to +mexico +TOP_10_COUNT +home +loan +TOP_10_COUNT +david +kim +TOP_10_COUNT +jesus +as +a +child +TOP_10_COUNT +belcourt +castle +TOP_10_COUNT +chicken +noodle +soup +TOP_10_COUNT +milwaukee +newspaper +TOP_10_COUNT +big +boss +man +TOP_10_COUNT +barrett +jackson +TOP_10_COUNT +rolex +watches +TOP_10_COUNT +kenosha +wisconsin +TOP_10_COUNT +bismarck +state +college +TOP_10_COUNT +army +reserve +TOP_10_COUNT +plus +size +clothing +TOP_10_COUNT +the +british +embassy +TOP_10_COUNT +georgian +architecture +TOP_10_COUNT +george +r +brown +convention +center +TOP_10_COUNT +university +of +washington +TOP_10_COUNT +books +on +cd +TOP_10_COUNT +hotel +del +coronado +TOP_10_COUNT +analog +computer +TOP_10_COUNT +merry +christmas +TOP_10_COUNT +ambassador +of +italy +TOP_10_COUNT +wildlife +photography +TOP_10_COUNT +little +cars +TOP_10_COUNT +phone +cases +TOP_10_COUNT +scottsdale +az +TOP_10_COUNT +naked +news +TOP_10_COUNT +justin +timberlake +TOP_10_COUNT +san +francisco +TOP_10_COUNT +third +trimester +TOP_10_COUNT +bankruptcy +laws +TOP_10_COUNT +william +wallace +TOP_10_COUNT +new +york +towns +TOP_10_COUNT +cartoon +network +TOP_10_COUNT +kasota +stone +TOP_10_COUNT +mid +continent +airport +TOP_10_COUNT +flow +meter +TOP_10_COUNT +new +haven +TOP_10_COUNT +abilene +tx +TOP_10_COUNT +movie +theatres +TOP_10_COUNT +new +jersey +police +TOP_10_COUNT +kristanna +loken +TOP_10_COUNT +international +baseball +TOP_10_COUNT +central +community +college +TOP_10_COUNT +bmw +engines +TOP_10_COUNT +naomi +wallace +TOP_10_COUNT +danube +river +TOP_10_COUNT +city +in +iran +TOP_10_COUNT +carolyn +jones +TOP_10_COUNT +long +legs +TOP_10_COUNT +iq +scores +TOP_10_COUNT +little +shop +of +horrors +TOP_10_COUNT +portrait +studio +TOP_10_COUNT +interest +only +TOP_10_COUNT +region +iv +TOP_10_COUNT +all +funds +TOP_10_COUNT +car +stereo +TOP_10_COUNT +warren +county +TOP_10_COUNT +graffiti +art +TOP_10_COUNT +penny +stocks +TOP_10_COUNT +new +york +population +TOP_10_COUNT +jungle +boy +TOP_10_COUNT +kitchen +accessories +TOP_10_COUNT +robert +reed +TOP_10_COUNT +virginia +usa +TOP_10_COUNT +bass +fishing +TOP_10_COUNT +texas +state +legislature +TOP_10_COUNT +jonathan +daniel +TOP_10_COUNT +chicago +teachers +union +TOP_10_COUNT +old +photos +TOP_10_COUNT +personal +chef +TOP_10_COUNT +adobe +buildings +TOP_10_COUNT +bladder +tumor +TOP_10_COUNT +ron +keel +TOP_10_COUNT +general +motors +TOP_10_COUNT +the +oregonian +newspaper +TOP_10_COUNT +the +incredibles +TOP_10_COUNT +university +of +akron +TOP_10_COUNT +developmental +delays +TOP_10_COUNT +trendy +clothes +TOP_10_COUNT +famous +quotes +TOP_10_COUNT +hurricane +wilma +TOP_10_COUNT +chicago +bulls +TOP_10_COUNT +gun +magazines +TOP_10_COUNT +human +trafficking +TOP_10_COUNT +spiritual +warfare +TOP_10_COUNT +open +source +software +TOP_10_COUNT +miami +dade +college +TOP_10_COUNT +john +wilkes +booth +TOP_10_COUNT +animal +rights +TOP_10_COUNT +italian +translation +TOP_10_COUNT +dexter +michigan +TOP_10_COUNT +japan +airlines +TOP_10_COUNT +columbia +university +TOP_10_COUNT +home +business +TOP_10_COUNT +the +progressive +TOP_10_COUNT +john +wellington +TOP_10_COUNT +low +estrogen +TOP_10_COUNT +ventura +college +TOP_10_COUNT +padre +island +TOP_10_COUNT +heart +disease +TOP_10_COUNT +avon +school +TOP_10_COUNT +glass +works +TOP_10_COUNT +kansas +city +kings +TOP_10_COUNT +business +consultants +TOP_10_COUNT +trans +siberian +orchestra +TOP_10_COUNT +sky +news +TOP_10_COUNT +edith +head +TOP_10_COUNT +the +breakfast +club +TOP_10_COUNT +zip +code +TOP_10_COUNT +true +religion +TOP_10_COUNT +perfume +bottles +TOP_10_COUNT +milan +tennessee +TOP_10_COUNT +roundabout +theatre +TOP_10_COUNT +calvin +klein +TOP_10_COUNT +kidney +transplant +TOP_10_COUNT +civil +war +battlefields +TOP_10_COUNT +food +carts +TOP_10_COUNT +round +table +TOP_10_COUNT +becoming +a +widow +TOP_10_COUNT +worcester +state +college +TOP_10_COUNT +automatic +writing +TOP_10_COUNT +lord +of +the +rings +TOP_10_COUNT +time +for +kids +TOP_10_COUNT +danbury +ct +TOP_10_COUNT +google +satellite +TOP_10_COUNT +consumer +affairs +TOP_10_COUNT +john +donne +TOP_10_COUNT +binghamton +new +york +TOP_10_COUNT +ace +frehley +TOP_10_COUNT +corpus +christi +tx +TOP_10_COUNT +water +filters +TOP_10_COUNT +anderson +hospital +TOP_10_COUNT +antonio +cromartie +TOP_10_COUNT +intramuscular +injections +TOP_10_COUNT +toxic +encephalopathy +TOP_10_COUNT +the +book +of +life +TOP_10_COUNT +the +actors +studio +TOP_10_COUNT +national +book +award +TOP_10_COUNT +david +koresh +TOP_10_COUNT +texas +death +row +TOP_10_COUNT +evening +wear +TOP_10_COUNT +centerville +high +school +TOP_10_COUNT +pocket +pc +TOP_10_COUNT +robert +fuller +TOP_10_COUNT +akron +beacon +TOP_10_COUNT +music +stands +TOP_10_COUNT +the +movement +TOP_10_COUNT +secretary +of +state +TOP_10_COUNT +mercury +insurance +TOP_10_COUNT +philadelphia +phillies +TOP_10_COUNT +time +in +denver +TOP_10_COUNT +farmers +almanac +TOP_10_COUNT +borders +books +TOP_10_COUNT +cheap +hotels +TOP_10_COUNT +chicken +coop +TOP_10_COUNT +tennis +elbow +TOP_10_COUNT +medal +of +honor +TOP_10_COUNT +battle +of +the +bulge +TOP_10_COUNT +american +funds +TOP_10_COUNT +body +painting +TOP_10_COUNT +united +states +constitution +TOP_10_COUNT +john +klein +TOP_10_COUNT +"the who" +uk +TOP_10_COUNT +hsbc +bank +TOP_10_COUNT +game +downloads +TOP_10_COUNT +aishwarya +rai +TOP_10_COUNT +montessori +schools +TOP_10_COUNT +power +rangers +ninja +storm +TOP_10_COUNT +york +photo +TOP_10_COUNT +eastern +mennonite +university +TOP_10_COUNT +georgia +public +broadcasting +TOP_10_COUNT +ancient +egypt +TOP_10_COUNT +fluid +power +TOP_10_COUNT +music +videos +TOP_10_COUNT +zion +national +park +TOP_10_COUNT +elizabeth +vargas +TOP_10_COUNT +french +culinary +institute +TOP_10_COUNT +american +academy +of +child +and +adolescent +psychiatry +TOP_10_COUNT +connecticut +historical +society +TOP_10_COUNT +new +york +times +best +sellers +list +TOP_10_COUNT +world +bank +president +TOP_10_COUNT +good +luck +TOP_10_COUNT +the +garden +of +eden +TOP_10_COUNT +cognitive +impairment +TOP_10_COUNT +microsoft +frontpage +TOP_10_COUNT +oxford +dictionary +TOP_10_COUNT +robert +green +ingersoll +TOP_10_COUNT +us +coast +guard +TOP_10_COUNT +sleep +study +TOP_10_COUNT +freelance +work +TOP_10_COUNT +st +petersburg +high +school +TOP_10_COUNT +ear +ache +TOP_10_COUNT +canadian +real +estate +TOP_10_COUNT +bowel +obstruction +TOP_10_COUNT +color +combinations +TOP_10_COUNT +decorative +windows +TOP_10_COUNT +ellen +degeneres +show +TOP_10_COUNT +griffith +observatory +TOP_10_COUNT +western +herald +TOP_10_COUNT +state +of +louisiana +TOP_10_COUNT +hempstead +new +york +TOP_10_COUNT +critical +care +medicine +TOP_10_COUNT +wisconsin +attorney +general +TOP_10_COUNT +david +lee +roth +TOP_10_COUNT +ugly +people +TOP_10_COUNT +west +palm +beach +florida +TOP_10_COUNT +stone +mountain +TOP_10_COUNT +the +globe +newspaper +TOP_10_COUNT +usb +hub +TOP_10_COUNT +prayer +times +TOP_10_COUNT +elise +neal +TOP_10_COUNT +tv +party +TOP_10_COUNT +foam +mattress +TOP_10_COUNT +missy +elliott +TOP_10_COUNT +napa +auto +parts +TOP_10_COUNT +false +prophets +TOP_10_COUNT +walk +the +line +TOP_10_COUNT +premier +wine +TOP_10_COUNT +canon +powershot +TOP_10_COUNT +law +school +rankings +TOP_10_COUNT +jefferson +davis +high +school +TOP_10_COUNT +little +brown +jug +TOP_10_COUNT +rob +halford +TOP_10_COUNT +chicago +public +schools +TOP_10_COUNT +critical +care +nurse +TOP_10_COUNT +debra +jo +rupp +TOP_10_COUNT +new +england +aquarium +TOP_10_COUNT +hot +springs +south +dakota +TOP_10_COUNT +weather +underground +TOP_10_COUNT +edith +wharton +TOP_10_COUNT +freedom +tower +TOP_10_COUNT +american +south +TOP_10_COUNT +connecticut +post +TOP_10_COUNT +care +a +lot +TOP_10_COUNT +pump +it +up +TOP_10_COUNT +the +english +restoration +TOP_10_COUNT +clothing +optional +TOP_10_COUNT +printer +ink +TOP_10_COUNT +internet +fraud +TOP_10_COUNT +table +lamps +TOP_10_COUNT +reading +museum +TOP_10_COUNT +jamie +murray +TOP_10_COUNT +mood +swings +TOP_10_COUNT +niceville +high +school +TOP_10_COUNT +boulder +city +nevada +TOP_10_COUNT +times +union +TOP_10_COUNT +seal +pictures +TOP_10_COUNT +mercedes +benz +TOP_10_COUNT +omaha +symphony +TOP_10_COUNT +the +news +journal +TOP_10_COUNT +interracial +love +TOP_10_COUNT +jaguar +x +type +TOP_10_COUNT +personal +loan +TOP_10_COUNT +laborers +international +union +of +north +america +TOP_10_COUNT +fatherless +children +TOP_10_COUNT +too +faced +TOP_10_COUNT +law +dictionary +TOP_10_COUNT +health +literacy +TOP_10_COUNT +los +angeles +daily +news +TOP_10_COUNT +montgomery +college +TOP_10_COUNT +national +security +cutter +TOP_10_COUNT +digital +scanning +TOP_10_COUNT +graduate +management +admission +test +TOP_10_COUNT +the +daily +breeze +TOP_10_COUNT +child +support +TOP_10_COUNT +costume +designers +TOP_10_COUNT +most +improved +player +TOP_10_COUNT +camp +claiborne +TOP_10_COUNT +canary +bird +TOP_10_COUNT +shih +tzu +TOP_10_COUNT +xena +warrior +princess +TOP_10_COUNT +blue +ridge +parkway +TOP_10_COUNT +term +life +insurance +TOP_10_COUNT +david +thornton +TOP_10_COUNT +cherry +blossom +TOP_10_COUNT +ford +parts +TOP_10_COUNT +sore +muscles +TOP_10_COUNT +air +mattress +TOP_10_COUNT +who +dares +wins +TOP_10_COUNT +back +surgery +TOP_10_COUNT +sesame +street +TOP_10_COUNT +people +having +sex +TOP_10_COUNT +playa +del +rey +TOP_10_COUNT +mushroom +kingdom +TOP_10_COUNT +cured +of +cancer +TOP_10_COUNT +ford +modeling +agency +TOP_10_COUNT +catholic +answers +TOP_10_COUNT +domain +names +TOP_10_COUNT +hawk +mountain +TOP_10_COUNT +lost +episode +TOP_10_COUNT +tom +welling +TOP_10_COUNT +tallest +trees +in +the +world +TOP_10_COUNT +the +preakness +TOP_10_COUNT +vicenza +italy +TOP_10_COUNT +sarah +fisher +TOP_10_COUNT +elliott +smith +TOP_10_COUNT +helen +of +troy +TOP_10_COUNT +king +kalakaua +TOP_10_COUNT +immigration +to +mexico +TOP_10_COUNT +home +loan +TOP_10_COUNT +david +kim +TOP_10_COUNT +jesus +as +a +child +TOP_10_COUNT +belcourt +castle +TOP_10_COUNT +chicken +noodle +soup +TOP_10_COUNT +milwaukee +newspaper +TOP_10_COUNT +big +boss +man +TOP_10_COUNT +barrett +jackson +TOP_10_COUNT +rolex +watches +TOP_10_COUNT +kenosha +wisconsin +TOP_10_COUNT +bismarck +state +college +TOP_10_COUNT +army +reserve +TOP_10_COUNT +plus +size +clothing +TOP_10_COUNT +the +british +embassy +TOP_10_COUNT +georgian +architecture +TOP_10_COUNT +george +r +brown +convention +center +TOP_10_COUNT +university +of +washington +TOP_10_COUNT +books +on +cd +TOP_10_COUNT +hotel +del +coronado +TOP_10_COUNT +analog +computer +TOP_10_COUNT +merry +christmas +TOP_10_COUNT +ambassador +of +italy +TOP_10_COUNT +wildlife +photography +TOP_10_COUNT +little +cars +TOP_10_COUNT +phone +cases +TOP_10_COUNT +scottsdale +az +TOP_10_COUNT +naked +news +TOP_10_COUNT +justin +timberlake +TOP_10_COUNT +san +francisco +TOP_10_COUNT +third +trimester +TOP_10_COUNT +bankruptcy +laws +TOP_10_COUNT +william +wallace +TOP_10_COUNT +new +york +towns +TOP_10_COUNT +cartoon +network +TOP_10_COUNT +kasota +stone +TOP_10_COUNT +mid +continent +airport +TOP_10_COUNT +flow +meter +TOP_10_COUNT +new +haven +TOP_10_COUNT +abilene +tx +TOP_10_COUNT +movie +theatres +TOP_10_COUNT +new +jersey +police +TOP_10_COUNT +kristanna +loken +TOP_10_COUNT +international +baseball +TOP_10_COUNT +central +community +college +TOP_10_COUNT +bmw +engines +TOP_10_COUNT +naomi +wallace +TOP_10_COUNT +danube +river +TOP_10_COUNT +city +in +iran +TOP_10_COUNT +carolyn +jones +TOP_10_COUNT +long +legs +TOP_10_COUNT +iq +scores +TOP_10_COUNT +little +shop +of +horrors +TOP_10_COUNT +portrait +studio +TOP_10_COUNT +interest +only +TOP_10_COUNT +region +iv +TOP_10_COUNT +all +funds +TOP_10_COUNT +car +stereo +TOP_10_COUNT +warren +county +TOP_10_COUNT +graffiti +art +TOP_10_COUNT +penny +stocks +TOP_10_COUNT +new +york +population +TOP_10_COUNT +jungle +boy +TOP_10_COUNT +kitchen +accessories +TOP_10_COUNT +robert +reed +TOP_10_COUNT +virginia +usa +TOP_10_COUNT +bass +fishing +TOP_10_COUNT +texas +state +legislature +TOP_10_COUNT +jonathan +daniel +TOP_10_COUNT +chicago +teachers +union +TOP_10_COUNT +old +photos +TOP_10_COUNT +personal +chef +TOP_10_COUNT +adobe +buildings +TOP_10_COUNT +bladder +tumor +TOP_10_COUNT +ron +keel +TOP_10_COUNT +general +motors +TOP_10_COUNT +the +oregonian +newspaper +TOP_10_COUNT +the +incredibles +TOP_10_COUNT +university +of +akron +TOP_10_COUNT +developmental +delays +TOP_10_COUNT +trendy +clothes +TOP_10_COUNT +famous +quotes +TOP_10_COUNT +hurricane +wilma +TOP_10_COUNT +chicago +bulls +TOP_10_COUNT +gun +magazines +TOP_10_COUNT +human +trafficking +TOP_10_COUNT +spiritual +warfare +TOP_10_COUNT +open +source +software +TOP_10_COUNT +miami +dade +college +TOP_10_COUNT +john +wilkes +booth +TOP_10_COUNT +animal +rights +TOP_10_COUNT +italian +translation +TOP_10_COUNT +dexter +michigan +TOP_10_COUNT +japan +airlines +TOP_10_COUNT +columbia +university +TOP_10_COUNT +home +business +TOP_10_COUNT +the +progressive +TOP_10_COUNT +john +wellington +TOP_10_COUNT +low +estrogen +TOP_10_COUNT +ventura +college +TOP_10_COUNT +padre +island +TOP_10_COUNT +heart +disease +TOP_10_COUNT +avon +school +TOP_10_COUNT +glass +works +TOP_10_COUNT +kansas +city +kings +TOP_10_COUNT +business +consultants +TOP_10_COUNT +trans +siberian +orchestra +TOP_10_COUNT +sky +news +TOP_10_COUNT +edith +head +TOP_10_COUNT +the +breakfast +club +TOP_10_COUNT +zip +code +TOP_10_COUNT +true +religion +TOP_10_COUNT +perfume +bottles +TOP_10_COUNT +milan +tennessee +TOP_10_COUNT +roundabout +theatre +TOP_10_COUNT +calvin +klein +TOP_10_COUNT +kidney +transplant +TOP_10_COUNT +civil +war +battlefields +TOP_10_COUNT +food +carts +TOP_10_COUNT +round +table +TOP_10_COUNT +becoming +a +widow +TOP_10_COUNT +worcester +state +college +TOP_10_COUNT +automatic +writing +TOP_10_COUNT +lord +of +the +rings +TOP_10_COUNT +time +for +kids +TOP_10_COUNT +danbury +ct +TOP_10_COUNT +google +satellite +TOP_10_COUNT +consumer +affairs +TOP_10_COUNT +john +donne +TOP_10_COUNT +binghamton +new +york +TOP_10_COUNT +ace +frehley +TOP_10_COUNT +corpus +christi +tx +TOP_10_COUNT +water +filters +TOP_10_COUNT +anderson +hospital +TOP_10_COUNT +antonio +cromartie +TOP_10_COUNT +intramuscular +injections +TOP_10_COUNT +toxic +encephalopathy +TOP_10_COUNT +the +book +of +life +TOP_10_COUNT +the +actors +studio +TOP_10_COUNT +national +book +award +TOP_10_COUNT +david +koresh +TOP_10_COUNT +texas +death +row +TOP_10_COUNT +evening +wear +TOP_10_COUNT +centerville +high +school +TOP_10_COUNT +pocket +pc +TOP_10_COUNT +robert +fuller +TOP_10_COUNT +akron +beacon +TOP_10_COUNT +music +stands +TOP_10_COUNT +the +movement +TOP_10_COUNT +secretary +of +state +TOP_10_COUNT +mercury +insurance +TOP_10_COUNT +philadelphia +phillies +TOP_10_COUNT +time +in +denver +TOP_10_COUNT +farmers +almanac +TOP_10_COUNT +borders +books +TOP_10_COUNT +cheap +hotels +TOP_10_COUNT +chicken +coop +TOP_10_COUNT +tennis +elbow +TOP_10_COUNT +medal +of +honor +TOP_10_COUNT +battle +of +the +bulge +TOP_10_COUNT +american +funds +TOP_10_COUNT +body +painting +TOP_10_COUNT +united +states +constitution +TOP_10_COUNT +john +klein +TOP_10_COUNT +"the who" +uk +TOP_10_COUNT +hsbc +bank +TOP_10_COUNT +game +downloads +TOP_10_COUNT +aishwarya +rai +TOP_10_COUNT +montessori +schools +TOP_10_COUNT +power +rangers +ninja +storm +TOP_10_COUNT +york +photo +TOP_10_COUNT +eastern +mennonite +university +TOP_10_COUNT +georgia +public +broadcasting +TOP_10_COUNT +ancient +egypt +TOP_10_COUNT +fluid +power +TOP_10_COUNT +music +videos +TOP_10_COUNT +zion +national +park +TOP_10_COUNT +elizabeth +vargas +TOP_10_COUNT +french +culinary +institute +TOP_10_COUNT +american +academy +of +child +and +adolescent +psychiatry +TOP_10_COUNT +connecticut +historical +society +TOP_10_COUNT +new +york +times +best +sellers +list +TOP_10_COUNT +world +bank +president +TOP_10_COUNT +good +luck +TOP_10_COUNT +the +garden +of +eden +TOP_10_COUNT +cognitive +impairment +TOP_10_COUNT +microsoft +frontpage +TOP_10_COUNT +oxford +dictionary +TOP_10_COUNT +robert +green +ingersoll +TOP_10_COUNT +us +coast +guard +TOP_10_COUNT +sleep +study +TOP_10_COUNT +freelance +work +TOP_10_COUNT +st +petersburg +high +school +TOP_10_COUNT +ear +ache +TOP_10_COUNT +canadian +real +estate +TOP_10_COUNT +bowel +obstruction +TOP_10_COUNT +color +combinations +TOP_10_COUNT +decorative +windows +TOP_10_COUNT +ellen +degeneres +show +TOP_10_COUNT +griffith +observatory +TOP_10_COUNT +western +herald +TOP_10_COUNT +state +of +louisiana +TOP_10_COUNT +hempstead +new +york +TOP_10_COUNT +critical +care +medicine +TOP_10_COUNT +wisconsin +attorney +general +TOP_10_COUNT +david +lee +roth +TOP_10_COUNT +ugly +people +TOP_10_COUNT +west +palm +beach +florida +TOP_10_COUNT +stone +mountain +TOP_10_COUNT +the +globe +newspaper +TOP_10_COUNT +usb +hub +TOP_10_COUNT +prayer +times +TOP_10_COUNT +elise +neal +TOP_10_COUNT +tv +party +TOP_10_COUNT +foam +mattress +TOP_10_COUNT +missy +elliott +TOP_10_COUNT +napa +auto +parts +TOP_10_COUNT +false +prophets +TOP_10_COUNT +walk +the +line +TOP_10_COUNT +premier +wine +TOP_10_COUNT +canon +powershot +TOP_10_COUNT +law +school +rankings +TOP_10_COUNT +jefferson +davis +high +school +TOP_10_COUNT +little +brown +jug +TOP_10_COUNT +rob +halford +TOP_10_COUNT +chicago +public +schools +TOP_10_COUNT +critical +care +nurse +TOP_10_COUNT +debra +jo +rupp +TOP_10_COUNT +new +england +aquarium +TOP_10_COUNT +hot +springs +south +dakota +TOP_10_COUNT +weather +underground +TOP_10_COUNT +edith +wharton +TOP_10_COUNT +freedom +tower +TOP_10_COUNT +american +south +TOP_10_COUNT +connecticut +post +TOP_10_COUNT +care +a +lot +TOP_10_COUNT +pump +it +up +TOP_10_COUNT +the +english +restoration +TOP_10_COUNT +clothing +optional +TOP_10_COUNT +printer +ink +TOP_10_COUNT +internet +fraud +TOP_10_COUNT +table +lamps +TOP_10_COUNT +reading +museum +TOP_10_COUNT +jamie +murray +TOP_10_COUNT +mood +swings +TOP_10_COUNT +niceville +high +school +TOP_10_COUNT +boulder +city +nevada +TOP_10_COUNT +times +union +TOP_10_COUNT +seal +pictures +TOP_10_COUNT +mercedes +benz +TOP_10_COUNT +omaha +symphony +TOP_10_COUNT +the +news +journal +TOP_10_COUNT +interracial +love +TOP_10_COUNT +jaguar +x +type +TOP_10_COUNT +personal +loan +TOP_10_COUNT +laborers +international +union +of +north +america +TOP_10_COUNT +fatherless +children +TOP_10_COUNT +too +faced +TOP_10_COUNT +law +dictionary +TOP_10_COUNT +health +literacy +TOP_10_COUNT +los +angeles +daily +news +TOP_10_COUNT +montgomery +college +TOP_10_COUNT +national +security +cutter +TOP_10_COUNT +digital +scanning +TOP_10_COUNT +graduate +management +admission +test +TOP_10_COUNT +the +daily +breeze +TOP_10_COUNT +child +support +TOP_10_COUNT +costume +designers +TOP_10_COUNT +most +improved +player +TOP_10_COUNT +camp +claiborne +TOP_10_COUNT +canary +bird +TOP_10_COUNT +shih +tzu +TOP_10_COUNT +xena +warrior +princess +TOP_10_COUNT +blue +ridge +parkway +TOP_10_COUNT +term +life +insurance +TOP_10_COUNT +david +thornton +TOP_10_COUNT +cherry +blossom +TOP_10_COUNT +ford +parts +TOP_10_COUNT +sore +muscles +TOP_10_COUNT +air +mattress +TOP_10_COUNT +who +dares +wins +TOP_10_COUNT +back +surgery +TOP_10_COUNT +sesame +street +TOP_10_COUNT +people +having +sex +TOP_10_COUNT +playa +del +rey +TOP_10_COUNT +mushroom +kingdom +TOP_10_COUNT +cured +of +cancer +TOP_10_COUNT +ford +modeling +agency +TOP_10_COUNT +catholic +answers +TOP_10_COUNT +domain +names +TOP_10_COUNT +hawk +mountain +TOP_10_COUNT +lost +episode +TOP_10_COUNT +tom +welling +TOP_10_COUNT +tallest +trees +in +the +world +TOP_10_COUNT +the +preakness +TOP_10_COUNT +vicenza +italy +TOP_10_COUNT +sarah +fisher +TOP_10_COUNT +elliott +smith +TOP_10_COUNT +helen +of +troy +TOP_10_COUNT +king +kalakaua +TOP_10_COUNT +immigration +to +mexico +TOP_10_COUNT +home +loan +TOP_10_COUNT +david +kim +TOP_10_COUNT +jesus +as +a +child +TOP_10_COUNT +belcourt +castle +TOP_10_COUNT +chicken +noodle +soup +TOP_10_COUNT +milwaukee +newspaper +TOP_10_COUNT +big +boss +man +TOP_10_COUNT +barrett +jackson +TOP_10_COUNT +rolex +watches +TOP_10_COUNT +kenosha +wisconsin +TOP_10_COUNT +bismarck +state +college +TOP_10_COUNT +army +reserve +TOP_10_COUNT +plus +size +clothing +TOP_10_COUNT +the +british +embassy +TOP_10_COUNT +georgian +architecture +TOP_10_COUNT +george +r +brown +convention +center +TOP_10_COUNT +university +of +washington +TOP_10_COUNT +books +on +cd +TOP_10_COUNT +hotel +del +coronado +TOP_10_COUNT +analog +computer +TOP_10_COUNT +merry +christmas +TOP_10_COUNT +ambassador +of +italy +TOP_10_COUNT +wildlife +photography +TOP_10_COUNT +little +cars +TOP_10_COUNT +phone +cases +TOP_10_COUNT +scottsdale +az +TOP_10_COUNT +naked +news +TOP_10_COUNT +justin +timberlake +TOP_10_COUNT +san +francisco +TOP_10_COUNT +third +trimester +TOP_10_COUNT +bankruptcy +laws +TOP_10_COUNT +william +wallace +TOP_10_COUNT +new +york +towns +TOP_10_COUNT +cartoon +network +TOP_10_COUNT +kasota +stone +TOP_10_COUNT +mid +continent +airport +TOP_10_COUNT +flow +meter +TOP_10_COUNT +new +haven +TOP_10_COUNT +abilene +tx +TOP_10_COUNT +movie +theatres +TOP_10_COUNT +new +jersey +police +TOP_10_COUNT +kristanna +loken +TOP_10_COUNT +international +baseball +TOP_10_COUNT +central +community +college +TOP_10_COUNT +bmw +engines +TOP_10_COUNT +naomi +wallace +TOP_10_COUNT +danube +river +TOP_10_COUNT +city +in +iran +TOP_10_COUNT +carolyn +jones +TOP_10_COUNT +long +legs +TOP_10_COUNT +iq +scores +TOP_10_COUNT +little +shop +of +horrors +TOP_10_COUNT +portrait +studio +TOP_10_COUNT +interest +only +TOP_10_COUNT +region +iv +TOP_10_COUNT +all +funds +TOP_10_COUNT +car +stereo +TOP_10_COUNT +warren +county +TOP_10_COUNT +graffiti +art +TOP_10_COUNT +penny +stocks +TOP_10_COUNT +new +york +population +TOP_10_COUNT +jungle +boy +TOP_10_COUNT +kitchen +accessories +TOP_10_COUNT +robert +reed +TOP_10_COUNT +virginia +usa +TOP_10_COUNT +bass +fishing +TOP_10_COUNT +texas +state +legislature +TOP_10_COUNT +jonathan +daniel +TOP_10_COUNT +chicago +teachers +union +TOP_10_COUNT +old +photos +TOP_10_COUNT +personal +chef +TOP_10_COUNT +adobe +buildings +TOP_10_COUNT +bladder +tumor +TOP_10_COUNT +ron +keel +TOP_10_COUNT +general +motors +TOP_10_COUNT +the +oregonian +newspaper +TOP_10_COUNT +the +incredibles +TOP_10_COUNT +university +of +akron +TOP_10_COUNT +developmental +delays +TOP_10_COUNT +trendy +clothes +TOP_10_COUNT +famous +quotes +TOP_10_COUNT +hurricane +wilma +TOP_10_COUNT +chicago +bulls +TOP_10_COUNT +gun +magazines +TOP_10_COUNT +human +trafficking +TOP_10_COUNT +spiritual +warfare +TOP_10_COUNT +open +source +software +TOP_10_COUNT +miami +dade +college +TOP_10_COUNT +john +wilkes +booth +TOP_10_COUNT +animal +rights +TOP_10_COUNT +italian +translation +TOP_10_COUNT +dexter +michigan +TOP_10_COUNT +japan +airlines +TOP_10_COUNT +columbia +university +TOP_10_COUNT +home +business +TOP_10_COUNT +the +progressive +TOP_10_COUNT +john +wellington +TOP_10_COUNT +low +estrogen +TOP_10_COUNT +ventura +college +TOP_10_COUNT +padre +island +TOP_10_COUNT +heart +disease +TOP_10_COUNT +avon +school +TOP_10_COUNT +glass +works +TOP_10_COUNT +kansas +city +kings +TOP_10_COUNT +business +consultants +TOP_10_COUNT +trans +siberian +orchestra +TOP_10_COUNT +sky +news +TOP_10_COUNT +edith +head +TOP_10_COUNT +the +breakfast +club +TOP_10_COUNT +zip +code +TOP_10_COUNT +true +religion +TOP_10_COUNT +perfume +bottles +TOP_10_COUNT +milan +tennessee +TOP_10_COUNT +roundabout +theatre +TOP_10_COUNT +calvin +klein +TOP_10_COUNT +kidney +transplant +TOP_10_COUNT +civil +war +battlefields +TOP_10_COUNT +food +carts +TOP_10_COUNT +round +table +TOP_10_COUNT +becoming +a +widow +TOP_10_COUNT +worcester +state +college +TOP_10_COUNT +automatic +writing +TOP_10_COUNT +lord +of +the +rings +TOP_10_COUNT +time +for +kids +TOP_10_COUNT +danbury +ct +TOP_10_COUNT +google +satellite +TOP_10_COUNT +consumer +affairs +TOP_10_COUNT +john +donne +TOP_10_COUNT +binghamton +new +york +TOP_10_COUNT +ace +frehley +TOP_10_COUNT +corpus +christi +tx +TOP_10_COUNT +water +filters +TOP_10_COUNT +anderson +hospital +TOP_10_COUNT +antonio +cromartie +TOP_10_COUNT +intramuscular +injections +TOP_10_COUNT +toxic +encephalopathy +TOP_10_COUNT +the +book +of +life +TOP_10_COUNT +the +actors +studio +TOP_10_COUNT +national +book +award +TOP_10_COUNT +david +koresh +TOP_10_COUNT +texas +death +row +TOP_10_COUNT +evening +wear +TOP_10_COUNT +centerville +high +school +TOP_10_COUNT +pocket +pc +TOP_10_COUNT +robert +fuller +TOP_10_COUNT +akron +beacon +TOP_10_COUNT +music +stands +TOP_10_COUNT +the +movement +TOP_10_COUNT +secretary +of +state +TOP_10_COUNT +mercury +insurance +TOP_10_COUNT +philadelphia +phillies +TOP_10_COUNT +time +in +denver +TOP_10_COUNT +farmers +almanac +TOP_10_COUNT +borders +books +TOP_10_COUNT +cheap +hotels +TOP_10_COUNT +chicken +coop +TOP_10_COUNT +tennis +elbow +TOP_10_COUNT +medal +of +honor +TOP_10_COUNT +battle +of +the +bulge +TOP_10_COUNT +american +funds +TOP_10_COUNT +body +painting +TOP_10_COUNT +united +states +constitution +TOP_10_COUNT +john +klein +TOP_10_COUNT +"the who" +uk +TOP_10_COUNT +hsbc +bank +TOP_10_COUNT +game +downloads +TOP_10_COUNT +aishwarya +rai +TOP_10_COUNT +montessori +schools +TOP_10_COUNT +power +rangers +ninja +storm +TOP_10_COUNT +york +photo +TOP_10_COUNT +eastern +mennonite +university +TOP_10_COUNT +georgia +public +broadcasting +TOP_10_COUNT +ancient +egypt +TOP_10_COUNT +fluid +power +TOP_10_COUNT +music +videos +TOP_10_COUNT +zion +national +park +TOP_10_COUNT +elizabeth +vargas +TOP_10_COUNT +french +culinary +institute +TOP_10_COUNT +american +academy +of +child +and +adolescent +psychiatry +TOP_10_COUNT +connecticut +historical +society +TOP_10_COUNT +new +york +times +best +sellers +list +TOP_10_COUNT +world +bank +president +TOP_10_COUNT +good +luck +TOP_10_COUNT +the +garden +of +eden +TOP_10_COUNT +cognitive +impairment +TOP_10_COUNT +microsoft +frontpage +TOP_10_COUNT +oxford +dictionary +TOP_10_COUNT +robert +green +ingersoll +TOP_10_COUNT +us +coast +guard +TOP_10_COUNT +sleep +study +TOP_10_COUNT +freelance +work +TOP_10_COUNT +st +petersburg +high +school +TOP_10_COUNT +ear +ache +TOP_10_COUNT +canadian +real +estate +TOP_10_COUNT +bowel +obstruction +TOP_10_COUNT +color +combinations +TOP_10_COUNT +decorative +windows +TOP_10_COUNT +ellen +degeneres +show +TOP_10_COUNT +griffith +observatory +TOP_10_COUNT +western +herald +TOP_10_COUNT +state +of +louisiana +TOP_10_COUNT +hempstead +new +york +TOP_10_COUNT +critical +care +medicine +TOP_10_COUNT +wisconsin +attorney +general +TOP_10_COUNT +david +lee +roth +TOP_10_COUNT +ugly +people +TOP_10_COUNT +west +palm +beach +florida +TOP_10_COUNT +stone +mountain +TOP_10_COUNT +the +globe +newspaper +TOP_10_COUNT +usb +hub +TOP_10_COUNT +prayer +times +TOP_10_COUNT +elise +neal +TOP_10_COUNT +tv +party +TOP_10_COUNT +foam +mattress +TOP_10_COUNT +missy +elliott +TOP_10_COUNT +napa +auto +parts +TOP_10_COUNT +false +prophets +TOP_10_COUNT +walk +the +line +TOP_10_COUNT +premier +wine +TOP_10_COUNT +canon +powershot +TOP_10_COUNT +law +school +rankings +TOP_10_COUNT +jefferson +davis +high +school +TOP_10_COUNT +little +brown +jug +TOP_10_COUNT +rob +halford +TOP_10_COUNT +chicago +public +schools +TOP_10_COUNT +critical +care +nurse +TOP_10_COUNT +debra +jo +rupp +TOP_10_COUNT +new +england +aquarium +TOP_10_COUNT +hot +springs +south +dakota +TOP_10_COUNT +weather +underground +TOP_10_COUNT +edith +wharton +TOP_10_COUNT +freedom +tower +TOP_10_COUNT +american +south +TOP_10_COUNT +connecticut +post +TOP_10_COUNT +care +a +lot +TOP_10_COUNT +pump +it +up +TOP_10_COUNT +the +english +restoration +TOP_10_COUNT +clothing +optional +TOP_10_COUNT +printer +ink +TOP_10_COUNT +internet +fraud +TOP_10_COUNT +table +lamps +TOP_10_COUNT +reading +museum +TOP_10_COUNT +jamie +murray +TOP_10_COUNT +mood +swings +TOP_10_COUNT +niceville +high +school +TOP_10_COUNT +boulder +city +nevada +TOP_10_COUNT +times +union +TOP_10_COUNT +seal +pictures +TOP_10_COUNT +mercedes +benz +TOP_10_COUNT +omaha +symphony +TOP_10_COUNT +the +news +journal +TOP_10_COUNT +interracial +love +TOP_10_COUNT +jaguar +x +type +TOP_10_COUNT +personal +loan +TOP_10_COUNT +laborers +international +union +of +north +america +TOP_10_COUNT +fatherless +children +TOP_10_COUNT +too +faced +TOP_10_COUNT +law +dictionary +TOP_10_COUNT +health +literacy +TOP_10_COUNT +los +angeles +daily +news +TOP_10_COUNT +montgomery +college +TOP_10_COUNT +national +security +cutter +TOP_10_COUNT +digital +scanning +TOP_10_COUNT +graduate +management +admission +test +TOP_10_COUNT +the +daily +breeze +TOP_10_COUNT +child +support +TOP_10_COUNT +costume +designers +TOP_10_COUNT +most +improved +player +TOP_10_COUNT +camp +claiborne +TOP_10_COUNT +canary +bird +TOP_10_COUNT +shih +tzu +TOP_10_COUNT +xena +warrior +princess +TOP_10_COUNT +blue +ridge +parkway +TOP_10_COUNT +term +life +insurance +TOP_10_COUNT +david +thornton +TOP_10_COUNT +cherry +blossom +TOP_10_COUNT +ford +parts +TOP_10_COUNT +sore +muscles +TOP_10_COUNT +air +mattress +TOP_10_COUNT +who +dares +wins +TOP_10_COUNT +back +surgery +TOP_10_COUNT +sesame +street +TOP_10_COUNT +people +having +sex +TOP_10_COUNT +playa +del +rey +TOP_10_COUNT +mushroom +kingdom +TOP_10_COUNT +cured +of +cancer +TOP_10_COUNT +ford +modeling +agency +TOP_10_COUNT +catholic +answers +TOP_10_COUNT +domain +names +TOP_10_COUNT +hawk +mountain +TOP_10_COUNT +lost +episode +TOP_10_COUNT +tom +welling +TOP_10_COUNT +tallest +trees +in +the +world +TOP_10_COUNT +the +preakness +TOP_10_COUNT +vicenza +italy +TOP_10_COUNT +sarah +fisher +TOP_10_COUNT +elliott +smith +TOP_10_COUNT +helen +of +troy +TOP_10_COUNT +king +kalakaua +TOP_10_COUNT +immigration +to +mexico +TOP_10_COUNT +home +loan +TOP_10_COUNT +david +kim +TOP_10_COUNT +jesus +as +a +child +TOP_10_COUNT +belcourt +castle +TOP_10_COUNT +chicken +noodle +soup +TOP_10_COUNT +milwaukee +newspaper +TOP_10_COUNT +big +boss +man +TOP_10_COUNT +barrett +jackson +TOP_10_COUNT +rolex +watches +TOP_10_COUNT +kenosha +wisconsin +TOP_10_COUNT +bismarck +state +college +TOP_10_COUNT +army +reserve +TOP_10_COUNT +plus +size +clothing +TOP_10_COUNT +the +british +embassy +TOP_10_COUNT +georgian +architecture +TOP_10_COUNT +george +r +brown +convention +center +TOP_10_COUNT +university +of +washington +TOP_10_COUNT +books +on +cd +TOP_10_COUNT +hotel +del +coronado +TOP_10_COUNT +analog +computer +TOP_10_COUNT +merry +christmas +TOP_10_COUNT +ambassador +of +italy +TOP_10_COUNT +wildlife +photography +TOP_10_COUNT +little +cars +TOP_10_COUNT +phone +cases +TOP_10_COUNT +scottsdale +az +TOP_10_COUNT +naked +news +TOP_10_COUNT +justin +timberlake +TOP_10_COUNT +san +francisco +TOP_10_COUNT +third +trimester +TOP_10_COUNT +bankruptcy +laws +TOP_10_COUNT +william +wallace +TOP_10_COUNT +new +york +towns +TOP_10_COUNT +cartoon +network +TOP_10_COUNT +kasota +stone +TOP_10_COUNT +mid +continent +airport +TOP_10_COUNT +flow +meter +TOP_10_COUNT +new +haven +TOP_10_COUNT +abilene +tx +TOP_10_COUNT +movie +theatres +TOP_10_COUNT +new +jersey +police +TOP_10_COUNT +kristanna +loken +TOP_10_COUNT +international +baseball +TOP_10_COUNT +central +community +college +TOP_10_COUNT +bmw +engines +TOP_10_COUNT +naomi +wallace +TOP_10_COUNT +danube +river +TOP_10_COUNT +city +in +iran +TOP_10_COUNT +carolyn +jones +TOP_10_COUNT +long +legs +TOP_10_COUNT +iq +scores +TOP_10_COUNT +little +shop +of +horrors +TOP_10_COUNT +portrait +studio +TOP_10_COUNT +interest +only +TOP_10_COUNT +region +iv +TOP_10_COUNT +all +funds +TOP_10_COUNT +car +stereo +TOP_10_COUNT +warren +county +TOP_10_COUNT +graffiti +art +TOP_10_COUNT +penny +stocks +TOP_10_COUNT +new +york +population +TOP_10_COUNT +jungle +boy +TOP_10_COUNT +kitchen +accessories +TOP_10_COUNT +robert +reed +TOP_10_COUNT +virginia +usa +TOP_10_COUNT +bass +fishing +TOP_10_COUNT +texas +state +legislature +TOP_10_COUNT +jonathan +daniel +TOP_10_COUNT +chicago +teachers +union +TOP_10_COUNT +old +photos +TOP_10_COUNT +personal +chef +TOP_10_COUNT +adobe +buildings +TOP_10_COUNT +bladder +tumor +TOP_10_COUNT +ron +keel +TOP_10_COUNT +general +motors +TOP_10_COUNT +the +oregonian +newspaper +TOP_10_COUNT +the +incredibles +TOP_10_COUNT +university +of +akron +TOP_10_COUNT +developmental +delays +TOP_10_COUNT +trendy +clothes +TOP_10_COUNT +famous +quotes +TOP_10_COUNT +hurricane +wilma +TOP_10_COUNT +chicago +bulls +TOP_10_COUNT +gun +magazines +TOP_10_COUNT +human +trafficking +TOP_10_COUNT +spiritual +warfare +TOP_10_COUNT +open +source +software +TOP_10_COUNT +miami +dade +college +TOP_10_COUNT +john +wilkes +booth +TOP_10_COUNT +animal +rights +TOP_10_COUNT +italian +translation +TOP_10_COUNT +dexter +michigan +TOP_10_COUNT +japan +airlines +TOP_10_COUNT +columbia +university +TOP_10_COUNT +home +business +TOP_10_COUNT +the +progressive +TOP_10_COUNT +john +wellington +TOP_10_COUNT +low +estrogen +TOP_10_COUNT +ventura +college +TOP_10_COUNT +padre +island +TOP_10_COUNT +heart +disease +TOP_10_COUNT +avon +school +TOP_10_COUNT +glass +works +TOP_10_COUNT +kansas +city +kings +TOP_10_COUNT +business +consultants +TOP_10_COUNT +trans +siberian +orchestra +TOP_10_COUNT +sky +news +TOP_10_COUNT +edith +head +TOP_10_COUNT +the +breakfast +club +TOP_10_COUNT +zip +code +TOP_10_COUNT +true +religion +TOP_10_COUNT +perfume +bottles +TOP_10_COUNT +milan +tennessee +TOP_10_COUNT +roundabout +theatre +TOP_10_COUNT +calvin +klein +TOP_10_COUNT +kidney +transplant +TOP_10_COUNT +civil +war +battlefields +TOP_10_COUNT +food +carts +TOP_10_COUNT +round +table +TOP_10_COUNT +becoming +a +widow +TOP_10_COUNT +worcester +state +college +TOP_10_COUNT +automatic +writing +TOP_10_COUNT +lord +of +the +rings +TOP_10_COUNT +time +for +kids +TOP_10_COUNT +danbury +ct +TOP_10_COUNT +google +satellite +TOP_10_COUNT +consumer +affairs +TOP_10_COUNT +john +donne +TOP_10_COUNT +binghamton +new +york +TOP_10_COUNT +ace +frehley +TOP_10_COUNT +corpus +christi +tx +TOP_10_COUNT +water +filters +TOP_10_COUNT +anderson +hospital +TOP_10_COUNT +antonio +cromartie +TOP_10_COUNT +intramuscular +injections +TOP_10_COUNT +toxic +encephalopathy +TOP_10_COUNT +the +book +of +life +TOP_10_COUNT +the +actors +studio +TOP_10_COUNT +national +book +award +TOP_10_COUNT +david +koresh +TOP_10_COUNT +texas +death +row +TOP_10_COUNT +evening +wear +TOP_10_COUNT +centerville +high +school +TOP_10_COUNT +pocket +pc +TOP_10_COUNT +robert +fuller +TOP_10_COUNT +akron +beacon +TOP_10_COUNT +music +stands +TOP_10_COUNT +the +movement +TOP_10_COUNT +secretary +of +state +TOP_10_COUNT +mercury +insurance +TOP_10_COUNT +philadelphia +phillies +TOP_10_COUNT +time +in +denver +TOP_10_COUNT +farmers +almanac +TOP_10_COUNT +borders +books +TOP_10_COUNT +cheap +hotels +TOP_10_COUNT +chicken +coop +TOP_10_COUNT +tennis +elbow +TOP_10_COUNT +medal +of +honor +TOP_10_COUNT +battle +of +the +bulge +TOP_10_COUNT +american +funds +TOP_10_COUNT +body +painting +TOP_10_COUNT +united +states +constitution +TOP_10_COUNT +john +klein +TOP_10_COUNT +"the who" +uk +TOP_10_COUNT +hsbc +bank +TOP_10_COUNT +game +downloads +TOP_10_COUNT +aishwarya +rai +TOP_10_COUNT +montessori +schools +TOP_10_COUNT +power +rangers +ninja +storm +TOP_10_COUNT +york +photo +TOP_10_COUNT +eastern +mennonite +university +TOP_10_COUNT +georgia +public +broadcasting +TOP_10_COUNT +ancient +egypt +TOP_10_COUNT +fluid +power +TOP_10_COUNT +music +videos +TOP_10_COUNT +zion +national +park +TOP_10_COUNT +elizabeth +vargas +TOP_10_COUNT +french +culinary +institute +TOP_10_COUNT +american +academy +of +child +and +adolescent +psychiatry +TOP_10_COUNT +connecticut +historical +society +TOP_10_COUNT +new +york +times +best +sellers +list +TOP_10_COUNT +world +bank +president +TOP_10_COUNT +good +luck +TOP_10_COUNT +the +garden +of +eden +TOP_10_COUNT +cognitive +impairment +TOP_10_COUNT +microsoft +frontpage +TOP_10_COUNT +oxford +dictionary +TOP_10_COUNT +robert +green +ingersoll +TOP_10_COUNT +us +coast +guard +TOP_10_COUNT +sleep +study +TOP_10_COUNT +freelance +work +TOP_10_COUNT +st +petersburg +high +school +TOP_10_COUNT +ear +ache +TOP_10_COUNT +canadian +real +estate +TOP_10_COUNT +bowel +obstruction +TOP_10_COUNT +color +combinations +TOP_10_COUNT +decorative +windows +TOP_10_COUNT +ellen +degeneres +show +TOP_10_COUNT +griffith +observatory +TOP_10_COUNT +western +herald +TOP_10_COUNT +state +of +louisiana +TOP_10_COUNT +hempstead +new +york +TOP_10_COUNT +critical +care +medicine +TOP_10_COUNT +wisconsin +attorney +general +TOP_10_COUNT +david +lee +roth +TOP_10_COUNT +ugly +people +TOP_10_COUNT +west +palm +beach +florida +TOP_10_COUNT +stone +mountain +TOP_10_COUNT +the +globe +newspaper +TOP_10_COUNT +usb +hub +TOP_10_COUNT +prayer +times +TOP_10_COUNT +elise +neal +TOP_10_COUNT +tv +party +TOP_10_COUNT +foam +mattress +TOP_10_COUNT +missy +elliott +TOP_10_COUNT +napa +auto +parts +TOP_10_COUNT +false +prophets +TOP_10_COUNT +walk +the +line +TOP_10_COUNT +premier +wine +TOP_10_COUNT +canon +powershot +TOP_10_COUNT +law +school +rankings +TOP_10_COUNT +jefferson +davis +high +school +TOP_10_COUNT +little +brown +jug +TOP_10_COUNT +rob +halford +TOP_10_COUNT +chicago +public +schools +TOP_10_COUNT +critical +care +nurse +TOP_10_COUNT +debra +jo +rupp +TOP_10_COUNT +new +england +aquarium +TOP_10_COUNT +hot +springs +south +dakota +TOP_10_COUNT +weather +underground +TOP_10_COUNT +edith +wharton +TOP_10_COUNT +freedom +tower +TOP_10_COUNT +american +south +TOP_10_COUNT +connecticut +post +TOP_10_COUNT +care +a +lot +TOP_10_COUNT +pump +it +up +TOP_10_COUNT +the +english +restoration +TOP_10_COUNT +clothing +optional +TOP_10_COUNT +printer +ink +TOP_10_COUNT +internet +fraud +TOP_10_COUNT +table +lamps +TOP_10_COUNT +reading +museum +TOP_10_COUNT +jamie +murray +TOP_10_COUNT +mood +swings +TOP_10_COUNT +niceville +high +school diff --git a/commands.txt b/commands.txt new file mode 100644 index 00000000000..eec9ec4f5ce --- /dev/null +++ b/commands.txt @@ -0,0 +1,10807 @@ +TOP_10 philadelphia phillies +TOP_10 hurricane wilma +TOP_10 sarah fisher +TOP_10 +boulder +city +nevada +TOP_10 "ugly people" +TOP_10 +times +union +TOP_10 +seal +pictures +TOP_10 +mercedes +benz +TOP_10 car stereo +TOP_10 +omaha +symphony +TOP_10 +the +news +journal +TOP_10 elise neal +TOP_10 +interracial +love +TOP_10 canadian real estate +TOP_10 "personal loan" +TOP_10 barrett jackson +TOP_10 +jaguar +x +type +TOP_10 +personal +loan +TOP_10 +laborers +international +union +of +north +america +TOP_10 +fatherless +children +TOP_10 "tv party" +TOP_10 york photo +TOP_10 "sleep study" +TOP_10 italian translation +TOP_10 developmental delays +TOP_10 +too +faced +TOP_10 "eastern mennonite university" +TOP_10 +law +dictionary +TOP_10 "reading museum" +TOP_10 los angeles daily news +TOP_10 music stands +TOP_10 +health +literacy +TOP_10 +los +angeles +daily +news +TOP_10 "the news journal" +TOP_10 +montgomery +college +TOP_10 +national +security +cutter +TOP_10 freedom tower +TOP_10 "david thornton" +TOP_10 "mood swings" +TOP_10 san francisco +TOP_10 false prophets +TOP_10 "west palm beach florida" +TOP_10 +digital +scanning +TOP_10 "all funds" +TOP_10 +graduate +management +admission +test +TOP_10 central community college +TOP_10 +the +daily +breeze +TOP_10 civil war battlefields +TOP_10 "bismarck state college" +TOP_10 +child +support +TOP_10 +costume +designers +TOP_10 william wallace +TOP_10 calvin klein +TOP_10 "little shop of horrors" +TOP_10 "elizabeth vargas" +TOP_10 +most +improved +player +TOP_10 "naked news" +TOP_10 "boulder city nevada" +TOP_10 "kenosha wisconsin" +TOP_10 hot springs south dakota +TOP_10 "cartoon network" +TOP_10 vicenza italy +TOP_10 +camp +claiborne +TOP_10 +canary +bird +TOP_10 +shih +tzu +TOP_10 +xena +warrior +princess +TOP_10 +blue +ridge +parkway +TOP_10 "roundabout theatre" +TOP_10 +term +life +insurance +TOP_10 +david +thornton +TOP_10 "american south" +TOP_10 "the globe newspaper" +TOP_10 "battle of the bulge" +TOP_10 new york population +TOP_10 "heart disease" +TOP_10 griffith observatory +TOP_10 american south +TOP_10 john klein +TOP_10 +cherry +blossom +TOP_10 "world bank president" +TOP_10 child support +TOP_10 "big boss man" +TOP_10 "stone mountain" +TOP_10 reading museum +TOP_10 +ford +parts +TOP_10 cognitive impairment +TOP_10 new york times best sellers list +TOP_10 "care a lot" +TOP_10 "hotel del coronado" +TOP_10 consumer affairs +TOP_10 "good luck" +TOP_10 "new england aquarium" +TOP_10 +sore +muscles +TOP_10 +air +mattress +TOP_10 body painting +TOP_10 "the progressive" +TOP_10 +who +dares +wins +TOP_10 the progressive +TOP_10 "western herald" +TOP_10 kristanna loken +TOP_10 mercury insurance +TOP_10 +back +surgery +TOP_10 "wisconsin attorney general" +TOP_10 bmw engines +TOP_10 +sesame +street +TOP_10 "google satellite" +TOP_10 +people +having +sex +TOP_10 health literacy +TOP_10 "water filters" +TOP_10 +playa +del +rey +TOP_10 +mushroom +kingdom +TOP_10 region iv +TOP_10 +cured +of +cancer +TOP_10 +ford +modeling +agency +TOP_10 +catholic +answers +TOP_10 anderson hospital +TOP_10 time for kids +TOP_10 +domain +names +TOP_10 "graduate management admission test" +TOP_10 "movie theatres" +TOP_10 "the incredibles" +TOP_10 "spiritual warfare" +TOP_10 chicago bulls +TOP_10 "camp claiborne" +TOP_10 +hawk +mountain +TOP_10 "tom welling" +TOP_10 "kasota stone" +TOP_10 akron beacon +TOP_10 belcourt castle +TOP_10 low estrogen +TOP_10 "air mattress" +TOP_10 tallest trees in the world +TOP_10 +lost +episode +TOP_10 chicken noodle soup +TOP_10 "new jersey police" +TOP_10 roundabout theatre +TOP_10 jesus as a child +TOP_10 university of washington +TOP_10 +tom +welling +TOP_10 +tallest +trees +in +the +world +TOP_10 "gun magazines" +TOP_10 bankruptcy laws +TOP_10 "edith head" +TOP_10 "barrett jackson" +TOP_10 "false prophets" +TOP_10 japan airlines +TOP_10 +the +preakness +TOP_10 st petersburg high school +TOP_10 +vicenza +italy +TOP_10 "the garden of eden" +TOP_10 "french culinary institute" +TOP_10 battle of the bulge +TOP_10 "merry christmas" +TOP_10 +sarah +fisher +TOP_10 "elise neal" +TOP_10 digital scanning +TOP_10 food carts +TOP_10 "home loan" +TOP_10 +elliott +smith +TOP_10 john wilkes booth +TOP_10 lost episode +TOP_10 bowel obstruction +TOP_10 +helen +of +troy +TOP_10 "who dares wins" +TOP_10 bismarck state college +TOP_10 premier wine +TOP_10 tennis elbow +TOP_10 "griffith observatory" +TOP_10 +king +kalakaua +TOP_10 "ford parts" +TOP_10 +immigration +to +mexico +TOP_10 the daily breeze +TOP_10 +home +loan +TOP_10 "third trimester" +TOP_10 hsbc bank +TOP_10 +david +kim +TOP_10 napa auto parts +TOP_10 +jesus +as +a +child +TOP_10 +belcourt +castle +TOP_10 ellen degeneres show +TOP_10 "usb hub" +TOP_10 +chicken +noodle +soup +TOP_10 the book of life +TOP_10 the actors studio +TOP_10 chicken coop +TOP_10 +milwaukee +newspaper +TOP_10 "ear ache" +TOP_10 "jaguar x type" +TOP_10 +big +boss +man +TOP_10 secretary of state +TOP_10 +barrett +jackson +TOP_10 debra jo rupp +TOP_10 law school rankings +TOP_10 zip code +TOP_10 "scottsdale az" +TOP_10 "jesus as a child" +TOP_10 +rolex +watches +TOP_10 kenosha wisconsin +TOP_10 +kenosha +wisconsin +TOP_10 "oxford dictionary" +TOP_10 chicago public schools +TOP_10 +bismarck +state +college +TOP_10 "belcourt castle" +TOP_10 +army +reserve +TOP_10 +plus +size +clothing +TOP_10 "mushroom kingdom" +TOP_10 "army reserve" +TOP_10 +the +british +embassy +TOP_10 "analog computer" +TOP_10 famous quotes +TOP_10 +georgian +architecture +TOP_10 georgian architecture +TOP_10 "the english restoration" +TOP_10 +george +r +brown +convention +center +TOP_10 +university +of +washington +TOP_10 "connecticut historical society" +TOP_10 +books +on +cd +TOP_10 +hotel +del +coronado +TOP_10 +analog +computer +TOP_10 "kansas city kings" +TOP_10 "little cars" +TOP_10 the garden of eden +TOP_10 "chicago teachers union" +TOP_10 "national book award" +TOP_10 clothing optional +TOP_10 +merry +christmas +TOP_10 plus size clothing +TOP_10 +ambassador +of +italy +TOP_10 +wildlife +photography +TOP_10 tv party +TOP_10 "danube river" +TOP_10 "the actors studio" +TOP_10 "digital scanning" +TOP_10 montessori schools +TOP_10 +little +cars +TOP_10 "abilene tx" +TOP_10 "xena warrior princess" +TOP_10 stone mountain +TOP_10 +phone +cases +TOP_10 graffiti art +TOP_10 +scottsdale +az +TOP_10 "international baseball" +TOP_10 +naked +news +TOP_10 +justin +timberlake +TOP_10 ace frehley +TOP_10 +san +francisco +TOP_10 "rob halford" +TOP_10 united states constitution +TOP_10 "mid continent airport" +TOP_10 new haven +TOP_10 "blue ridge parkway" +TOP_10 "automatic writing" +TOP_10 +third +trimester +TOP_10 "ellen degeneres show" +TOP_10 +bankruptcy +laws +TOP_10 jonathan daniel +TOP_10 +william +wallace +TOP_10 +new +york +towns +TOP_10 +cartoon +network +TOP_10 +kasota +stone +TOP_10 gun magazines +TOP_10 +mid +continent +airport +TOP_10 "weather underground" +TOP_10 analog computer +TOP_10 +flow +meter +TOP_10 national book award +TOP_10 connecticut post +TOP_10 "premier wine" +TOP_10 +new +haven +TOP_10 "body painting" +TOP_10 +abilene +tx +TOP_10 "san francisco" +TOP_10 +movie +theatres +TOP_10 "perfume bottles" +TOP_10 +new +jersey +police +TOP_10 +kristanna +loken +TOP_10 +international +baseball +TOP_10 flow meter +TOP_10 +central +community +college +TOP_10 +bmw +engines +TOP_10 ventura college +TOP_10 "table lamps" +TOP_10 +naomi +wallace +TOP_10 +danube +river +TOP_10 +city +in +iran +TOP_10 "kristanna loken" +TOP_10 +carolyn +jones +TOP_10 human trafficking +TOP_10 edith wharton +TOP_10 kansas city kings +TOP_10 "david koresh" +TOP_10 robert fuller +TOP_10 +long +legs +TOP_10 naomi wallace +TOP_10 +iq +scores +TOP_10 "time for kids" +TOP_10 "japan airlines" +TOP_10 +little +shop +of +horrors +TOP_10 table lamps +TOP_10 "glass works" +TOP_10 +portrait +studio +TOP_10 +interest +only +TOP_10 "child support" +TOP_10 +region +iv +TOP_10 +all +funds +TOP_10 "term life insurance" +TOP_10 eastern mennonite university +TOP_10 spiritual warfare +TOP_10 "cured of cancer" +TOP_10 "civil war battlefields" +TOP_10 abilene tx +TOP_10 "canon powershot" +TOP_10 +car +stereo +TOP_10 "david lee roth" +TOP_10 "intramuscular injections" +TOP_10 elizabeth vargas +TOP_10 +warren +county +TOP_10 +graffiti +art +TOP_10 "kidney transplant" +TOP_10 "round table" +TOP_10 "dexter michigan" +TOP_10 new england aquarium +TOP_10 "connecticut post" +TOP_10 +penny +stocks +TOP_10 +new +york +population +TOP_10 +jungle +boy +TOP_10 "iq scores" +TOP_10 +kitchen +accessories +TOP_10 "laborers international union of north america" +TOP_10 +robert +reed +TOP_10 +virginia +usa +TOP_10 good luck +TOP_10 +bass +fishing +TOP_10 "elliott smith" +TOP_10 prayer times +TOP_10 "mercury insurance" +TOP_10 "jungle boy" +TOP_10 "printer ink" +TOP_10 milwaukee newspaper +TOP_10 missy elliott +TOP_10 ancient egypt +TOP_10 +texas +state +legislature +TOP_10 +jonathan +daniel +TOP_10 "anderson hospital" +TOP_10 "trans siberian orchestra" +TOP_10 +chicago +teachers +union +TOP_10 portrait studio +TOP_10 +old +photos +TOP_10 "robert green ingersoll" +TOP_10 +personal +chef +TOP_10 time in denver +TOP_10 "kitchen accessories" +TOP_10 +adobe +buildings +TOP_10 "george r brown convention center" +TOP_10 kitchen accessories +TOP_10 +bladder +tumor +TOP_10 "low estrogen" +TOP_10 "microsoft frontpage" +TOP_10 hempstead new york +TOP_10 color combinations +TOP_10 +ron +keel +TOP_10 antonio cromartie +TOP_10 "robert fuller" +TOP_10 +general +motors +TOP_10 +the +oregonian +newspaper +TOP_10 +the +incredibles +TOP_10 "too faced" +TOP_10 +university +of +akron +TOP_10 +developmental +delays +TOP_10 +trendy +clothes +TOP_10 +famous +quotes +TOP_10 elliott smith +TOP_10 +hurricane +wilma +TOP_10 the oregonian newspaper +TOP_10 "borders books" +TOP_10 +chicago +bulls +TOP_10 the +TOP_10 trendy clothes +TOP_10 +gun +magazines +TOP_10 "justin timberlake" +TOP_10 +human +trafficking +TOP_10 +spiritual +warfare +TOP_10 care a lot +TOP_10 playa del rey +TOP_10 "the book of life" +TOP_10 little cars +TOP_10 "centerville high school" +TOP_10 "georgia public broadcasting" +TOP_10 bass fishing +TOP_10 "human trafficking" +TOP_10 +open +source +software +TOP_10 "missy elliott" +TOP_10 dexter michigan +TOP_10 boulder city nevada +TOP_10 +miami +dade +college +TOP_10 critical care medicine +TOP_10 +john +wilkes +booth +TOP_10 "pocket pc" +TOP_10 +animal +rights +TOP_10 "playa del rey" +TOP_10 "cheap hotels" +TOP_10 +italian +translation +TOP_10 "plus size clothing" +TOP_10 +dexter +michigan +TOP_10 niceville high school +TOP_10 +japan +airlines +TOP_10 +columbia +university +TOP_10 lord of the rings +TOP_10 robert reed +TOP_10 +home +business +TOP_10 "law dictionary" +TOP_10 "hurricane wilma" +TOP_10 freelance work +TOP_10 new jersey police +TOP_10 +the +progressive +TOP_10 david kim +TOP_10 "ace frehley" +TOP_10 +john +wellington +TOP_10 "sore muscles" +TOP_10 +low +estrogen +TOP_10 "music stands" +TOP_10 +ventura +college +TOP_10 +padre +island +TOP_10 "fluid power" +TOP_10 the news journal +TOP_10 +heart +disease +TOP_10 business consultants +TOP_10 little shop of horrors +TOP_10 "ventura college" +TOP_10 +avon +school +TOP_10 "developmental delays" +TOP_10 "pump it up" +TOP_10 jamie murray +TOP_10 +glass +works +TOP_10 "new york times best sellers list" +TOP_10 "john wellington" +TOP_10 the preakness +TOP_10 +kansas +city +kings +TOP_10 "hawk mountain" +TOP_10 hotel del coronado +TOP_10 microsoft frontpage +TOP_10 danube river +TOP_10 interracial love +TOP_10 "little brown jug" +TOP_10 "sesame street" +TOP_10 +business +consultants +TOP_10 "national security cutter" +TOP_10 +trans +siberian +orchestra +TOP_10 omaha symphony +TOP_10 +sky +news +TOP_10 "philadelphia phillies" +TOP_10 +edith +head +TOP_10 automatic writing +TOP_10 +the +breakfast +club +TOP_10 "new york population" +TOP_10 +zip +code +TOP_10 +true +religion +TOP_10 robert green ingersoll +TOP_10 "jefferson davis high school" +TOP_10 texas death row +TOP_10 bladder tumor +TOP_10 +perfume +bottles +TOP_10 "antonio cromartie" +TOP_10 "costume designers" +TOP_10 mood swings +TOP_10 +milan +tennessee +TOP_10 personal chef +TOP_10 +roundabout +theatre +TOP_10 justin timberlake +TOP_10 +calvin +klein +TOP_10 naked news +TOP_10 usb hub +TOP_10 "back surgery" +TOP_10 carolyn jones +TOP_10 "montgomery college" +TOP_10 +kidney +transplant +TOP_10 walk the line +TOP_10 +civil +war +battlefields +TOP_10 "interracial love" +TOP_10 "foam mattress" +TOP_10 +food +carts +TOP_10 "aishwarya rai" +TOP_10 +round +table +TOP_10 +becoming +a +widow +TOP_10 term life insurance +TOP_10 +worcester +state +college +TOP_10 +automatic +writing +TOP_10 "evening wear" +TOP_10 +lord +of +the +rings +TOP_10 +time +for +kids +TOP_10 +danbury +ct +TOP_10 +google +satellite +TOP_10 +consumer +affairs +TOP_10 +john +donne +TOP_10 +binghamton +new +york +TOP_10 "chicken noodle soup" +TOP_10 "tennis elbow" +TOP_10 john donne +TOP_10 third trimester +TOP_10 montgomery college +TOP_10 "freedom tower" +TOP_10 +ace +frehley +TOP_10 wisconsin attorney general +TOP_10 +corpus +christi +tx +TOP_10 trans siberian orchestra +TOP_10 "catholic answers" +TOP_10 "lost episode" +TOP_10 +water +filters +TOP_10 "bass fishing" +TOP_10 +anderson +hospital +TOP_10 books on cd +TOP_10 the english restoration +TOP_10 +antonio +cromartie +TOP_10 game downloads +TOP_10 +intramuscular +injections +TOP_10 +toxic +encephalopathy +TOP_10 "books on cd" +TOP_10 fluid power +TOP_10 +the +book +of +life +TOP_10 "state of louisiana" +TOP_10 true religion +TOP_10 "york photo" +TOP_10 "decorative windows" +TOP_10 adobe buildings +TOP_10 +the +actors +studio +TOP_10 "business consultants" +TOP_10 oxford dictionary +TOP_10 most improved player +TOP_10 "st petersburg high school" +TOP_10 centerville high school +TOP_10 "bankruptcy laws" +TOP_10 +national +book +award +TOP_10 +david +koresh +TOP_10 jaguar x type +TOP_10 david koresh +TOP_10 "hempstead new york" +TOP_10 "color combinations" +TOP_10 +texas +death +row +TOP_10 "ford modeling agency" +TOP_10 weather underground +TOP_10 intramuscular injections +TOP_10 animal rights +TOP_10 +evening +wear +TOP_10 glass works +TOP_10 "the british embassy" +TOP_10 google satellite +TOP_10 "food carts" +TOP_10 +centerville +high +school +TOP_10 "bladder tumor" +TOP_10 +pocket +pc +TOP_10 open source software +TOP_10 +robert +fuller +TOP_10 law dictionary +TOP_10 "time in denver" +TOP_10 sleep study +TOP_10 camp claiborne +TOP_10 ron keel +TOP_10 home loan +TOP_10 "clothing optional" +TOP_10 "critical care medicine" +TOP_10 virginia usa +TOP_10 worcester state college +TOP_10 evening wear +TOP_10 fatherless children +TOP_10 "wildlife photography" +TOP_10 +akron +beacon +TOP_10 +music +stands +TOP_10 "university of akron" +TOP_10 "akron beacon" +TOP_10 "domain names" +TOP_10 +the +movement +TOP_10 back surgery +TOP_10 ambassador of italy +TOP_10 "secretary of state" +TOP_10 shih tzu +TOP_10 "american academy of child and adolescent psychiatry" +TOP_10 +secretary +of +state +TOP_10 "sarah fisher" +TOP_10 "canadian real estate" +TOP_10 mushroom kingdom +TOP_10 kidney transplant +TOP_10 "the movement" +TOP_10 "corpus christi tx" +TOP_10 +mercury +insurance +TOP_10 +philadelphia +phillies +TOP_10 +time +in +denver +TOP_10 "flow meter" +TOP_10 texas state legislature +TOP_10 "home business" +TOP_10 "debra jo rupp" +TOP_10 internet fraud +TOP_10 heart disease +TOP_10 "bowel obstruction" +TOP_10 "los angeles daily news" +TOP_10 binghamton new york +TOP_10 jefferson davis high school +TOP_10 "cherry blossom" +TOP_10 aishwarya rai +TOP_10 +farmers +almanac +TOP_10 the incredibles +TOP_10 +borders +books +TOP_10 "naomi wallace" +TOP_10 +cheap +hotels +TOP_10 "open source software" +TOP_10 +chicken +coop +TOP_10 "trendy clothes" +TOP_10 +tennis +elbow +TOP_10 cartoon network +TOP_10 seal pictures +TOP_10 "fatherless children" +TOP_10 +medal +of +honor +TOP_10 +battle +of +the +bulge +TOP_10 times union +TOP_10 +american +funds +TOP_10 "the breakfast club" +TOP_10 edith head +TOP_10 interest only +TOP_10 "danbury ct" +TOP_10 "car stereo" +TOP_10 air mattress +TOP_10 "mercedes benz" +TOP_10 +body +painting +TOP_10 "ambassador of italy" +TOP_10 +united +states +constitution +TOP_10 corpus christi tx +TOP_10 +john +klein +TOP_10 pump it up +TOP_10 big boss man +TOP_10 "farmers almanac" +TOP_10 +"the who" +uk +TOP_10 power rangers ninja storm +TOP_10 "personal chef" +TOP_10 "walk the line" +TOP_10 +hsbc +bank +TOP_10 +game +downloads +TOP_10 "milan tennessee" +TOP_10 david thornton +TOP_10 merry christmas +TOP_10 "people having sex" +TOP_10 "law school rankings" +TOP_10 "chicago public schools" +TOP_10 "american funds" +TOP_10 army reserve +TOP_10 new york towns +TOP_10 international baseball +TOP_10 "texas death row" +TOP_10 "medal of honor" +TOP_10 "most improved player" +TOP_10 "penny stocks" +TOP_10 +aishwarya +rai +TOP_10 sesame street +TOP_10 "canary bird" +TOP_10 +montessori +schools +TOP_10 old photos +TOP_10 +power +rangers +ninja +storm +TOP_10 water filters +TOP_10 "true religion" +TOP_10 +york +photo +TOP_10 "hot springs south dakota" +TOP_10 "new york towns" +TOP_10 avon school +TOP_10 "prayer times" +TOP_10 +eastern +mennonite +university +TOP_10 +georgia +public +broadcasting +TOP_10 +ancient +egypt +TOP_10 personal loan +TOP_10 laborers international union of north america +TOP_10 +fluid +power +TOP_10 the globe newspaper +TOP_10 +music +videos +TOP_10 +zion +national +park +TOP_10 columbia university +TOP_10 "new haven" +TOP_10 "padre island" +TOP_10 "region iv" +TOP_10 helen of troy +TOP_10 +elizabeth +vargas +TOP_10 "university of washington" +TOP_10 +french +culinary +institute +TOP_10 +american +academy +of +child +and +adolescent +psychiatry +TOP_10 foam mattress +TOP_10 "virginia usa" +TOP_10 +connecticut +historical +society +TOP_10 borders books +TOP_10 +new +york +times +best +sellers +list +TOP_10 mercedes benz +TOP_10 "niceville high school" +TOP_10 +world +bank +president +TOP_10 +good +luck +TOP_10 rob halford +TOP_10 kasota stone +TOP_10 "adobe buildings" +TOP_10 rolex watches +TOP_10 the british embassy +TOP_10 "jamie murray" +TOP_10 +the +garden +of +eden +TOP_10 perfume bottles +TOP_10 city in iran +TOP_10 "phone cases" +TOP_10 king kalakaua +TOP_10 "chicken coop" +TOP_10 "portrait studio" +TOP_10 +cognitive +impairment +TOP_10 "interest only" +TOP_10 "georgian architecture" +TOP_10 +microsoft +frontpage +TOP_10 +oxford +dictionary +TOP_10 too faced +TOP_10 little brown jug +TOP_10 world bank president +TOP_10 +robert +green +ingersoll +TOP_10 +us +coast +guard +TOP_10 hawk mountain +TOP_10 phone cases +TOP_10 +sleep +study +TOP_10 +freelance +work +TOP_10 medal of honor +TOP_10 mid continent airport +TOP_10 +st +petersburg +high +school +TOP_10 +ear +ache +TOP_10 jungle boy +TOP_10 home business +TOP_10 +canadian +real +estate +TOP_10 +bowel +obstruction +TOP_10 +color +combinations +TOP_10 "montessori schools" +TOP_10 +decorative +windows +TOP_10 "milwaukee newspaper" +TOP_10 immigration to mexico +TOP_10 +ellen +degeneres +show +TOP_10 +griffith +observatory +TOP_10 university of akron +TOP_10 +western +herald +TOP_10 "chicago bulls" +TOP_10 +state +of +louisiana +TOP_10 +hempstead +new +york +TOP_10 american academy of child and adolescent psychiatry +TOP_10 +critical +care +medicine +TOP_10 american funds +TOP_10 "italian translation" +TOP_10 +wisconsin +attorney +general +TOP_10 ford modeling agency +TOP_10 ear ache +TOP_10 georgia public broadcasting +TOP_10 +david +lee +roth +TOP_10 +ugly +people +TOP_10 "general motors" +TOP_10 "long legs" +TOP_10 george r brown convention center +TOP_10 "critical care nurse" +TOP_10 +west +palm +beach +florida +TOP_10 "freelance work" +TOP_10 "city in iran" +TOP_10 "power rangers ninja storm" +TOP_10 +stone +mountain +TOP_10 "tallest trees in the world" +TOP_10 +the +globe +newspaper +TOP_10 "jonathan daniel" +TOP_10 warren county +TOP_10 milan tennessee +TOP_10 +usb +hub +TOP_10 "internet fraud" +TOP_10 +prayer +times +TOP_10 "the daily breeze" +TOP_10 xena warrior princess +TOP_10 "omaha symphony" +TOP_10 "napa auto parts" +TOP_10 ford parts +TOP_10 west palm beach florida +TOP_10 people having sex +TOP_10 national security cutter +TOP_10 iq scores +TOP_10 "vicenza italy" +TOP_10 canon powershot +TOP_10 +elise +neal +TOP_10 "texas state legislature" +TOP_10 "avon school" +TOP_10 +tv +party +TOP_10 the breakfast club +TOP_10 "john klein" +TOP_10 "miami dade college" +TOP_10 "binghamton new york" +TOP_10 +foam +mattress +TOP_10 +missy +elliott +TOP_10 "carolyn jones" +TOP_10 "immigration to mexico" +TOP_10 domain names +TOP_10 +napa +auto +parts +TOP_10 all funds +TOP_10 "times union" +TOP_10 "shih tzu" +TOP_10 printer ink +TOP_10 round table +TOP_10 +false +prophets +TOP_10 +walk +the +line +TOP_10 "william wallace" +TOP_10 "old photos" +TOP_10 canary bird +TOP_10 +premier +wine +TOP_10 "lord of the rings" +TOP_10 "robert reed" +TOP_10 "animal rights" +TOP_10 "famous quotes" +TOP_10 "hsbc bank" +TOP_10 cherry blossom +TOP_10 "worcester state college" +TOP_10 becoming a widow +TOP_10 chicago teachers union +TOP_10 "king kalakaua" +TOP_10 "zip code" +TOP_10 "bmw engines" +TOP_10 "the preakness" +TOP_10 padre island +TOP_10 "cognitive impairment" +TOP_10 +canon +powershot +TOP_10 pocket pc +TOP_10 "edith wharton" +TOP_10 "david kim" +TOP_10 wildlife photography +TOP_10 tom welling +TOP_10 miami dade college +TOP_10 decorative windows +TOP_10 costume designers +TOP_10 +law +school +rankings +TOP_10 +jefferson +davis +high +school +TOP_10 farmers almanac +TOP_10 john wellington +TOP_10 +little +brown +jug +TOP_10 +rob +halford +TOP_10 penny stocks +TOP_10 +chicago +public +schools +TOP_10 +critical +care +nurse +TOP_10 "john donne" +TOP_10 +debra +jo +rupp +TOP_10 +new +england +aquarium +TOP_10 movie theatres +TOP_10 +hot +springs +south +dakota +TOP_10 western herald +TOP_10 "music videos" +TOP_10 +weather +underground +TOP_10 "rolex watches" +TOP_10 sky news +TOP_10 danbury ct +TOP_10 "central community college" +TOP_10 ugly people +TOP_10 +edith +wharton +TOP_10 "toxic encephalopathy" +TOP_10 "warren county" +TOP_10 zion national park +TOP_10 +freedom +tower +TOP_10 long legs +TOP_10 "consumer affairs" +TOP_10 sore muscles +TOP_10 scottsdale az +TOP_10 "columbia university" +TOP_10 +american +south +TOP_10 +connecticut +post +TOP_10 connecticut historical society +TOP_10 cured of cancer +TOP_10 +care +a +lot +TOP_10 +pump +it +up +TOP_10 "john wilkes booth" +TOP_10 "calvin klein" +TOP_10 "game downloads" +TOP_10 critical care nurse +TOP_10 +the +english +restoration +TOP_10 "united states constitution" +TOP_10 +clothing +optional +TOP_10 +printer +ink +TOP_10 "sky news" +TOP_10 "the oregonian newspaper" +TOP_10 "seal pictures" +TOP_10 "zion national park" +TOP_10 "becoming a widow" +TOP_10 general motors +TOP_10 the movement +TOP_10 "ron keel" +TOP_10 graduate management admission test +TOP_10 state of louisiana +TOP_10 +internet +fraud +TOP_10 +table +lamps +TOP_10 french culinary institute +TOP_10 us coast guard +TOP_10 +reading +museum +TOP_10 "us coast guard" +TOP_10 "ancient egypt" +TOP_10 cheap hotels +TOP_10 +jamie +murray +TOP_10 +mood +swings +TOP_10 blue ridge parkway +TOP_10 music videos +TOP_10 "helen of troy" +TOP_10 david lee roth +TOP_10 toxic encephalopathy +TOP_10 "graffiti art" +TOP_10 catholic answers +TOP_10 who dares wins +TOP_10 "health literacy" +TOP_10 +niceville +high +school +- Run #1 of 3 +TOP_10 philadelphia phillies +TOP_10 hurricane wilma +TOP_10 sarah fisher +TOP_10 +boulder +city +nevada +TOP_10 "ugly people" +TOP_10 +times +union +TOP_10 +seal +pictures +TOP_10 +mercedes +benz +TOP_10 car stereo +TOP_10 +omaha +symphony +TOP_10 +the +news +journal +TOP_10 elise neal +TOP_10 +interracial +love +TOP_10 canadian real estate +TOP_10 "personal loan" +TOP_10 barrett jackson +TOP_10 +jaguar +x +type +TOP_10 +personal +loan +TOP_10 +laborers +international +union +of +north +america +TOP_10 +fatherless +children +TOP_10 "tv party" +TOP_10 york photo +TOP_10 "sleep study" +TOP_10 italian translation +TOP_10 developmental delays +TOP_10 +too +faced +TOP_10 "eastern mennonite university" +TOP_10 +law +dictionary +TOP_10 "reading museum" +TOP_10 los angeles daily news +TOP_10 music stands +TOP_10 +health +literacy +TOP_10 +los +angeles +daily +news +TOP_10 "the news journal" +TOP_10 +montgomery +college +TOP_10 +national +security +cutter +TOP_10 freedom tower +TOP_10 "david thornton" +TOP_10 "mood swings" +TOP_10 san francisco +TOP_10 false prophets +TOP_10 "west palm beach florida" +TOP_10 +digital +scanning +TOP_10 "all funds" +TOP_10 +graduate +management +admission +test +TOP_10 central community college +TOP_10 +the +daily +breeze +TOP_10 civil war battlefields +TOP_10 "bismarck state college" +TOP_10 +child +support +TOP_10 +costume +designers +TOP_10 william wallace +TOP_10 calvin klein +TOP_10 "little shop of horrors" +TOP_10 "elizabeth vargas" +TOP_10 +most +improved +player +TOP_10 "naked news" +TOP_10 "boulder city nevada" +TOP_10 "kenosha wisconsin" +TOP_10 hot springs south dakota +TOP_10 "cartoon network" +TOP_10 vicenza italy +TOP_10 +camp +claiborne +TOP_10 +canary +bird +TOP_10 +shih +tzu +TOP_10 +xena +warrior +princess +TOP_10 +blue +ridge +parkway +TOP_10 "roundabout theatre" +TOP_10 +term +life +insurance +TOP_10 +david +thornton +TOP_10 "american south" +TOP_10 "the globe newspaper" +TOP_10 "battle of the bulge" +TOP_10 new york population +TOP_10 "heart disease" +TOP_10 griffith observatory +TOP_10 american south +TOP_10 john klein +TOP_10 +cherry +blossom +TOP_10 "world bank president" +TOP_10 child support +TOP_10 "big boss man" +TOP_10 "stone mountain" +TOP_10 reading museum +TOP_10 +ford +parts +TOP_10 cognitive impairment +TOP_10 new york times best sellers list +TOP_10 "care a lot" +TOP_10 "hotel del coronado" +TOP_10 consumer affairs +TOP_10 "good luck" +TOP_10 "new england aquarium" +TOP_10 +sore +muscles +TOP_10 +air +mattress +TOP_10 body painting +TOP_10 "the progressive" +TOP_10 +who +dares +wins +TOP_10 the progressive +TOP_10 "western herald" +TOP_10 kristanna loken +TOP_10 mercury insurance +TOP_10 +back +surgery +TOP_10 "wisconsin attorney general" +TOP_10 bmw engines +TOP_10 +sesame +street +TOP_10 "google satellite" +TOP_10 +people +having +sex +TOP_10 health literacy +TOP_10 "water filters" +TOP_10 +playa +del +rey +TOP_10 +mushroom +kingdom +TOP_10 region iv +TOP_10 +cured +of +cancer +TOP_10 +ford +modeling +agency +TOP_10 +catholic +answers +TOP_10 anderson hospital +TOP_10 time for kids +TOP_10 +domain +names +TOP_10 "graduate management admission test" +TOP_10 "movie theatres" +TOP_10 "the incredibles" +TOP_10 "spiritual warfare" +TOP_10 chicago bulls +TOP_10 "camp claiborne" +TOP_10 +hawk +mountain +TOP_10 "tom welling" +TOP_10 "kasota stone" +TOP_10 akron beacon +TOP_10 belcourt castle +TOP_10 low estrogen +TOP_10 "air mattress" +TOP_10 tallest trees in the world +TOP_10 +lost +episode +TOP_10 chicken noodle soup +TOP_10 "new jersey police" +TOP_10 roundabout theatre +TOP_10 jesus as a child +TOP_10 university of washington +TOP_10 +tom +welling +TOP_10 +tallest +trees +in +the +world +TOP_10 "gun magazines" +TOP_10 bankruptcy laws +TOP_10 "edith head" +TOP_10 "barrett jackson" +TOP_10 "false prophets" +TOP_10 japan airlines +TOP_10 +the +preakness +TOP_10 st petersburg high school +TOP_10 +vicenza +italy +TOP_10 "the garden of eden" +TOP_10 "french culinary institute" +TOP_10 battle of the bulge +TOP_10 "merry christmas" +TOP_10 +sarah +fisher +TOP_10 "elise neal" +TOP_10 digital scanning +TOP_10 food carts +TOP_10 "home loan" +TOP_10 +elliott +smith +TOP_10 john wilkes booth +TOP_10 lost episode +TOP_10 bowel obstruction +TOP_10 +helen +of +troy +TOP_10 "who dares wins" +TOP_10 bismarck state college +TOP_10 premier wine +TOP_10 tennis elbow +TOP_10 "griffith observatory" +TOP_10 +king +kalakaua +TOP_10 "ford parts" +TOP_10 +immigration +to +mexico +TOP_10 the daily breeze +TOP_10 +home +loan +TOP_10 "third trimester" +TOP_10 hsbc bank +TOP_10 +david +kim +TOP_10 napa auto parts +TOP_10 +jesus +as +a +child +TOP_10 +belcourt +castle +TOP_10 ellen degeneres show +TOP_10 "usb hub" +TOP_10 +chicken +noodle +soup +TOP_10 the book of life +TOP_10 the actors studio +TOP_10 chicken coop +TOP_10 +milwaukee +newspaper +TOP_10 "ear ache" +TOP_10 "jaguar x type" +TOP_10 +big +boss +man +TOP_10 secretary of state +TOP_10 +barrett +jackson +TOP_10 debra jo rupp +TOP_10 law school rankings +TOP_10 zip code +TOP_10 "scottsdale az" +TOP_10 "jesus as a child" +TOP_10 +rolex +watches +TOP_10 kenosha wisconsin +TOP_10 +kenosha +wisconsin +TOP_10 "oxford dictionary" +TOP_10 chicago public schools +TOP_10 +bismarck +state +college +TOP_10 "belcourt castle" +TOP_10 +army +reserve +TOP_10 +plus +size +clothing +TOP_10 "mushroom kingdom" +TOP_10 "army reserve" +TOP_10 +the +british +embassy +TOP_10 "analog computer" +TOP_10 famous quotes +TOP_10 +georgian +architecture +TOP_10 georgian architecture +TOP_10 "the english restoration" +TOP_10 +george +r +brown +convention +center +TOP_10 +university +of +washington +TOP_10 "connecticut historical society" +TOP_10 +books +on +cd +TOP_10 +hotel +del +coronado +TOP_10 +analog +computer +TOP_10 "kansas city kings" +TOP_10 "little cars" +TOP_10 the garden of eden +TOP_10 "chicago teachers union" +TOP_10 "national book award" +TOP_10 clothing optional +TOP_10 +merry +christmas +TOP_10 plus size clothing +TOP_10 +ambassador +of +italy +TOP_10 +wildlife +photography +TOP_10 tv party +TOP_10 "danube river" +TOP_10 "the actors studio" +TOP_10 "digital scanning" +TOP_10 montessori schools +TOP_10 +little +cars +TOP_10 "abilene tx" +TOP_10 "xena warrior princess" +TOP_10 stone mountain +TOP_10 +phone +cases +TOP_10 graffiti art +TOP_10 +scottsdale +az +TOP_10 "international baseball" +TOP_10 +naked +news +TOP_10 +justin +timberlake +TOP_10 ace frehley +TOP_10 +san +francisco +TOP_10 "rob halford" +TOP_10 united states constitution +TOP_10 "mid continent airport" +TOP_10 new haven +TOP_10 "blue ridge parkway" +TOP_10 "automatic writing" +TOP_10 +third +trimester +TOP_10 "ellen degeneres show" +TOP_10 +bankruptcy +laws +TOP_10 jonathan daniel +TOP_10 +william +wallace +TOP_10 +new +york +towns +TOP_10 +cartoon +network +TOP_10 +kasota +stone +TOP_10 gun magazines +TOP_10 +mid +continent +airport +TOP_10 "weather underground" +TOP_10 analog computer +TOP_10 +flow +meter +TOP_10 national book award +TOP_10 connecticut post +TOP_10 "premier wine" +TOP_10 +new +haven +TOP_10 "body painting" +TOP_10 +abilene +tx +TOP_10 "san francisco" +TOP_10 +movie +theatres +TOP_10 "perfume bottles" +TOP_10 +new +jersey +police +TOP_10 +kristanna +loken +TOP_10 +international +baseball +TOP_10 flow meter +TOP_10 +central +community +college +TOP_10 +bmw +engines +TOP_10 ventura college +TOP_10 "table lamps" +TOP_10 +naomi +wallace +TOP_10 +danube +river +TOP_10 +city +in +iran +TOP_10 "kristanna loken" +TOP_10 +carolyn +jones +TOP_10 human trafficking +TOP_10 edith wharton +TOP_10 kansas city kings +TOP_10 "david koresh" +TOP_10 robert fuller +TOP_10 +long +legs +TOP_10 naomi wallace +TOP_10 +iq +scores +TOP_10 "time for kids" +TOP_10 "japan airlines" +TOP_10 +little +shop +of +horrors +TOP_10 table lamps +TOP_10 "glass works" +TOP_10 +portrait +studio +TOP_10 +interest +only +TOP_10 "child support" +TOP_10 +region +iv +TOP_10 +all +funds +TOP_10 "term life insurance" +TOP_10 eastern mennonite university +TOP_10 spiritual warfare +TOP_10 "cured of cancer" +TOP_10 "civil war battlefields" +TOP_10 abilene tx +TOP_10 "canon powershot" +TOP_10 +car +stereo +TOP_10 "david lee roth" +TOP_10 "intramuscular injections" +TOP_10 elizabeth vargas +TOP_10 +warren +county +TOP_10 +graffiti +art +TOP_10 "kidney transplant" +TOP_10 "round table" +TOP_10 "dexter michigan" +TOP_10 new england aquarium +TOP_10 "connecticut post" +TOP_10 +penny +stocks +TOP_10 +new +york +population +TOP_10 +jungle +boy +TOP_10 "iq scores" +TOP_10 +kitchen +accessories +TOP_10 "laborers international union of north america" +TOP_10 +robert +reed +TOP_10 +virginia +usa +TOP_10 good luck +TOP_10 +bass +fishing +TOP_10 "elliott smith" +TOP_10 prayer times +TOP_10 "mercury insurance" +TOP_10 "jungle boy" +TOP_10 "printer ink" +TOP_10 milwaukee newspaper +TOP_10 missy elliott +TOP_10 ancient egypt +TOP_10 +texas +state +legislature +TOP_10 +jonathan +daniel +TOP_10 "anderson hospital" +TOP_10 "trans siberian orchestra" +TOP_10 +chicago +teachers +union +TOP_10 portrait studio +TOP_10 +old +photos +TOP_10 "robert green ingersoll" +TOP_10 +personal +chef +TOP_10 time in denver +TOP_10 "kitchen accessories" +TOP_10 +adobe +buildings +TOP_10 "george r brown convention center" +TOP_10 kitchen accessories +TOP_10 +bladder +tumor +TOP_10 "low estrogen" +TOP_10 "microsoft frontpage" +TOP_10 hempstead new york +TOP_10 color combinations +TOP_10 +ron +keel +TOP_10 antonio cromartie +TOP_10 "robert fuller" +TOP_10 +general +motors +TOP_10 +the +oregonian +newspaper +TOP_10 +the +incredibles +TOP_10 "too faced" +TOP_10 +university +of +akron +TOP_10 +developmental +delays +TOP_10 +trendy +clothes +TOP_10 +famous +quotes +TOP_10 elliott smith +TOP_10 +hurricane +wilma +TOP_10 the oregonian newspaper +TOP_10 "borders books" +TOP_10 +chicago +bulls +TOP_10 the +TOP_10 trendy clothes +TOP_10 +gun +magazines +TOP_10 "justin timberlake" +TOP_10 +human +trafficking +TOP_10 +spiritual +warfare +TOP_10 care a lot +TOP_10 playa del rey +TOP_10 "the book of life" +TOP_10 little cars +TOP_10 "centerville high school" +TOP_10 "georgia public broadcasting" +TOP_10 bass fishing +TOP_10 "human trafficking" +TOP_10 +open +source +software +TOP_10 "missy elliott" +TOP_10 dexter michigan +TOP_10 boulder city nevada +TOP_10 +miami +dade +college +TOP_10 critical care medicine +TOP_10 +john +wilkes +booth +TOP_10 "pocket pc" +TOP_10 +animal +rights +TOP_10 "playa del rey" +TOP_10 "cheap hotels" +TOP_10 +italian +translation +TOP_10 "plus size clothing" +TOP_10 +dexter +michigan +TOP_10 niceville high school +TOP_10 +japan +airlines +TOP_10 +columbia +university +TOP_10 lord of the rings +TOP_10 robert reed +TOP_10 +home +business +TOP_10 "law dictionary" +TOP_10 "hurricane wilma" +TOP_10 freelance work +TOP_10 new jersey police +TOP_10 +the +progressive +TOP_10 david kim +TOP_10 "ace frehley" +TOP_10 +john +wellington +TOP_10 "sore muscles" +TOP_10 +low +estrogen +TOP_10 "music stands" +TOP_10 +ventura +college +TOP_10 +padre +island +TOP_10 "fluid power" +TOP_10 the news journal +TOP_10 +heart +disease +TOP_10 business consultants +TOP_10 little shop of horrors +TOP_10 "ventura college" +TOP_10 +avon +school +TOP_10 "developmental delays" +TOP_10 "pump it up" +TOP_10 jamie murray +TOP_10 +glass +works +TOP_10 "new york times best sellers list" +TOP_10 "john wellington" +TOP_10 the preakness +TOP_10 +kansas +city +kings +TOP_10 "hawk mountain" +TOP_10 hotel del coronado +TOP_10 microsoft frontpage +TOP_10 danube river +TOP_10 interracial love +TOP_10 "little brown jug" +TOP_10 "sesame street" +TOP_10 +business +consultants +TOP_10 "national security cutter" +TOP_10 +trans +siberian +orchestra +TOP_10 omaha symphony +TOP_10 +sky +news +TOP_10 "philadelphia phillies" +TOP_10 +edith +head +TOP_10 automatic writing +TOP_10 +the +breakfast +club +TOP_10 "new york population" +TOP_10 +zip +code +TOP_10 +true +religion +TOP_10 robert green ingersoll +TOP_10 "jefferson davis high school" +TOP_10 texas death row +TOP_10 bladder tumor +TOP_10 +perfume +bottles +TOP_10 "antonio cromartie" +TOP_10 "costume designers" +TOP_10 mood swings +TOP_10 +milan +tennessee +TOP_10 personal chef +TOP_10 +roundabout +theatre +TOP_10 justin timberlake +TOP_10 +calvin +klein +TOP_10 naked news +TOP_10 usb hub +TOP_10 "back surgery" +TOP_10 carolyn jones +TOP_10 "montgomery college" +TOP_10 +kidney +transplant +TOP_10 walk the line +TOP_10 +civil +war +battlefields +TOP_10 "interracial love" +TOP_10 "foam mattress" +TOP_10 +food +carts +TOP_10 "aishwarya rai" +TOP_10 +round +table +TOP_10 +becoming +a +widow +TOP_10 term life insurance +TOP_10 +worcester +state +college +TOP_10 +automatic +writing +TOP_10 "evening wear" +TOP_10 +lord +of +the +rings +TOP_10 +time +for +kids +TOP_10 +danbury +ct +TOP_10 +google +satellite +TOP_10 +consumer +affairs +TOP_10 +john +donne +TOP_10 +binghamton +new +york +TOP_10 "chicken noodle soup" +TOP_10 "tennis elbow" +TOP_10 john donne +TOP_10 third trimester +TOP_10 montgomery college +TOP_10 "freedom tower" +TOP_10 +ace +frehley +TOP_10 wisconsin attorney general +TOP_10 +corpus +christi +tx +TOP_10 trans siberian orchestra +TOP_10 "catholic answers" +TOP_10 "lost episode" +TOP_10 +water +filters +TOP_10 "bass fishing" +TOP_10 +anderson +hospital +TOP_10 books on cd +TOP_10 the english restoration +TOP_10 +antonio +cromartie +TOP_10 game downloads +TOP_10 +intramuscular +injections +TOP_10 +toxic +encephalopathy +TOP_10 "books on cd" +TOP_10 fluid power +TOP_10 +the +book +of +life +TOP_10 "state of louisiana" +TOP_10 true religion +TOP_10 "york photo" +TOP_10 "decorative windows" +TOP_10 adobe buildings +TOP_10 +the +actors +studio +TOP_10 "business consultants" +TOP_10 oxford dictionary +TOP_10 most improved player +TOP_10 "st petersburg high school" +TOP_10 centerville high school +TOP_10 "bankruptcy laws" +TOP_10 +national +book +award +TOP_10 +david +koresh +TOP_10 jaguar x type +TOP_10 david koresh +TOP_10 "hempstead new york" +TOP_10 "color combinations" +TOP_10 +texas +death +row +TOP_10 "ford modeling agency" +TOP_10 weather underground +TOP_10 intramuscular injections +TOP_10 animal rights +TOP_10 +evening +wear +TOP_10 glass works +TOP_10 "the british embassy" +TOP_10 google satellite +TOP_10 "food carts" +TOP_10 +centerville +high +school +TOP_10 "bladder tumor" +TOP_10 +pocket +pc +TOP_10 open source software +TOP_10 +robert +fuller +TOP_10 law dictionary +TOP_10 "time in denver" +TOP_10 sleep study +TOP_10 camp claiborne +TOP_10 ron keel +TOP_10 home loan +TOP_10 "clothing optional" +TOP_10 "critical care medicine" +TOP_10 virginia usa +TOP_10 worcester state college +TOP_10 evening wear +TOP_10 fatherless children +TOP_10 "wildlife photography" +TOP_10 +akron +beacon +TOP_10 +music +stands +TOP_10 "university of akron" +TOP_10 "akron beacon" +TOP_10 "domain names" +TOP_10 +the +movement +TOP_10 back surgery +TOP_10 ambassador of italy +TOP_10 "secretary of state" +TOP_10 shih tzu +TOP_10 "american academy of child and adolescent psychiatry" +TOP_10 +secretary +of +state +TOP_10 "sarah fisher" +TOP_10 "canadian real estate" +TOP_10 mushroom kingdom +TOP_10 kidney transplant +TOP_10 "the movement" +TOP_10 "corpus christi tx" +TOP_10 +mercury +insurance +TOP_10 +philadelphia +phillies +TOP_10 +time +in +denver +TOP_10 "flow meter" +TOP_10 texas state legislature +TOP_10 "home business" +TOP_10 "debra jo rupp" +TOP_10 internet fraud +TOP_10 heart disease +TOP_10 "bowel obstruction" +TOP_10 "los angeles daily news" +TOP_10 binghamton new york +TOP_10 jefferson davis high school +TOP_10 "cherry blossom" +TOP_10 aishwarya rai +TOP_10 +farmers +almanac +TOP_10 the incredibles +TOP_10 +borders +books +TOP_10 "naomi wallace" +TOP_10 +cheap +hotels +TOP_10 "open source software" +TOP_10 +chicken +coop +TOP_10 "trendy clothes" +TOP_10 +tennis +elbow +TOP_10 cartoon network +TOP_10 seal pictures +TOP_10 "fatherless children" +TOP_10 +medal +of +honor +TOP_10 +battle +of +the +bulge +TOP_10 times union +TOP_10 +american +funds +TOP_10 "the breakfast club" +TOP_10 edith head +TOP_10 interest only +TOP_10 "danbury ct" +TOP_10 "car stereo" +TOP_10 air mattress +TOP_10 "mercedes benz" +TOP_10 +body +painting +TOP_10 "ambassador of italy" +TOP_10 +united +states +constitution +TOP_10 corpus christi tx +TOP_10 +john +klein +TOP_10 pump it up +TOP_10 big boss man +TOP_10 "farmers almanac" +TOP_10 +"the who" +uk +TOP_10 power rangers ninja storm +TOP_10 "personal chef" +TOP_10 "walk the line" +TOP_10 +hsbc +bank +TOP_10 +game +downloads +TOP_10 "milan tennessee" +TOP_10 david thornton +TOP_10 merry christmas +TOP_10 "people having sex" +TOP_10 "law school rankings" +TOP_10 "chicago public schools" +TOP_10 "american funds" +TOP_10 army reserve +TOP_10 new york towns +TOP_10 international baseball +TOP_10 "texas death row" +TOP_10 "medal of honor" +TOP_10 "most improved player" +TOP_10 "penny stocks" +TOP_10 +aishwarya +rai +TOP_10 sesame street +TOP_10 "canary bird" +TOP_10 +montessori +schools +TOP_10 old photos +TOP_10 +power +rangers +ninja +storm +TOP_10 water filters +TOP_10 "true religion" +TOP_10 +york +photo +TOP_10 "hot springs south dakota" +TOP_10 "new york towns" +TOP_10 avon school +TOP_10 "prayer times" +TOP_10 +eastern +mennonite +university +TOP_10 +georgia +public +broadcasting +TOP_10 +ancient +egypt +TOP_10 personal loan +TOP_10 laborers international union of north america +TOP_10 +fluid +power +TOP_10 the globe newspaper +TOP_10 +music +videos +TOP_10 +zion +national +park +TOP_10 columbia university +TOP_10 "new haven" +TOP_10 "padre island" +TOP_10 "region iv" +TOP_10 helen of troy +TOP_10 +elizabeth +vargas +TOP_10 "university of washington" +TOP_10 +french +culinary +institute +TOP_10 +american +academy +of +child +and +adolescent +psychiatry +TOP_10 foam mattress +TOP_10 "virginia usa" +TOP_10 +connecticut +historical +society +TOP_10 borders books +TOP_10 +new +york +times +best +sellers +list +TOP_10 mercedes benz +TOP_10 "niceville high school" +TOP_10 +world +bank +president +TOP_10 +good +luck +TOP_10 rob halford +TOP_10 kasota stone +TOP_10 "adobe buildings" +TOP_10 rolex watches +TOP_10 the british embassy +TOP_10 "jamie murray" +TOP_10 +the +garden +of +eden +TOP_10 perfume bottles +TOP_10 city in iran +TOP_10 "phone cases" +TOP_10 king kalakaua +TOP_10 "chicken coop" +TOP_10 "portrait studio" +TOP_10 +cognitive +impairment +TOP_10 "interest only" +TOP_10 "georgian architecture" +TOP_10 +microsoft +frontpage +TOP_10 +oxford +dictionary +TOP_10 too faced +TOP_10 little brown jug +TOP_10 world bank president +TOP_10 +robert +green +ingersoll +TOP_10 +us +coast +guard +TOP_10 hawk mountain +TOP_10 phone cases +TOP_10 +sleep +study +TOP_10 +freelance +work +TOP_10 medal of honor +TOP_10 mid continent airport +TOP_10 +st +petersburg +high +school +TOP_10 +ear +ache +TOP_10 jungle boy +TOP_10 home business +TOP_10 +canadian +real +estate +TOP_10 +bowel +obstruction +TOP_10 +color +combinations +TOP_10 "montessori schools" +TOP_10 +decorative +windows +TOP_10 "milwaukee newspaper" +TOP_10 immigration to mexico +TOP_10 +ellen +degeneres +show +TOP_10 +griffith +observatory +TOP_10 university of akron +TOP_10 +western +herald +TOP_10 "chicago bulls" +TOP_10 +state +of +louisiana +TOP_10 +hempstead +new +york +TOP_10 american academy of child and adolescent psychiatry +TOP_10 +critical +care +medicine +TOP_10 american funds +TOP_10 "italian translation" +TOP_10 +wisconsin +attorney +general +TOP_10 ford modeling agency +TOP_10 ear ache +TOP_10 georgia public broadcasting +TOP_10 +david +lee +roth +TOP_10 +ugly +people +TOP_10 "general motors" +TOP_10 "long legs" +TOP_10 george r brown convention center +TOP_10 "critical care nurse" +TOP_10 +west +palm +beach +florida +TOP_10 "freelance work" +TOP_10 "city in iran" +TOP_10 "power rangers ninja storm" +TOP_10 +stone +mountain +TOP_10 "tallest trees in the world" +TOP_10 +the +globe +newspaper +TOP_10 "jonathan daniel" +TOP_10 warren county +TOP_10 milan tennessee +TOP_10 +usb +hub +TOP_10 "internet fraud" +TOP_10 +prayer +times +TOP_10 "the daily breeze" +TOP_10 xena warrior princess +TOP_10 "omaha symphony" +TOP_10 "napa auto parts" +TOP_10 ford parts +TOP_10 west palm beach florida +TOP_10 people having sex +TOP_10 national security cutter +TOP_10 iq scores +TOP_10 "vicenza italy" +TOP_10 canon powershot +TOP_10 +elise +neal +TOP_10 "texas state legislature" +TOP_10 "avon school" +TOP_10 +tv +party +TOP_10 the breakfast club +TOP_10 "john klein" +TOP_10 "miami dade college" +TOP_10 "binghamton new york" +TOP_10 +foam +mattress +TOP_10 +missy +elliott +TOP_10 "carolyn jones" +TOP_10 "immigration to mexico" +TOP_10 domain names +TOP_10 +napa +auto +parts +TOP_10 all funds +TOP_10 "times union" +TOP_10 "shih tzu" +TOP_10 printer ink +TOP_10 round table +TOP_10 +false +prophets +TOP_10 +walk +the +line +TOP_10 "william wallace" +TOP_10 "old photos" +TOP_10 canary bird +TOP_10 +premier +wine +TOP_10 "lord of the rings" +TOP_10 "robert reed" +TOP_10 "animal rights" +TOP_10 "famous quotes" +TOP_10 "hsbc bank" +TOP_10 cherry blossom +TOP_10 "worcester state college" +TOP_10 becoming a widow +TOP_10 chicago teachers union +TOP_10 "king kalakaua" +TOP_10 "zip code" +TOP_10 "bmw engines" +TOP_10 "the preakness" +TOP_10 padre island +TOP_10 "cognitive impairment" +TOP_10 +canon +powershot +TOP_10 pocket pc +TOP_10 "edith wharton" +TOP_10 "david kim" +TOP_10 wildlife photography +TOP_10 tom welling +TOP_10 miami dade college +TOP_10 decorative windows +TOP_10 costume designers +TOP_10 +law +school +rankings +TOP_10 +jefferson +davis +high +school +TOP_10 farmers almanac +TOP_10 john wellington +TOP_10 +little +brown +jug +TOP_10 +rob +halford +TOP_10 penny stocks +TOP_10 +chicago +public +schools +TOP_10 +critical +care +nurse +TOP_10 "john donne" +TOP_10 +debra +jo +rupp +TOP_10 +new +england +aquarium +TOP_10 movie theatres +TOP_10 +hot +springs +south +dakota +TOP_10 western herald +TOP_10 "music videos" +TOP_10 +weather +underground +TOP_10 "rolex watches" +TOP_10 sky news +TOP_10 danbury ct +TOP_10 "central community college" +TOP_10 ugly people +TOP_10 +edith +wharton +TOP_10 "toxic encephalopathy" +TOP_10 "warren county" +TOP_10 zion national park +TOP_10 +freedom +tower +TOP_10 long legs +TOP_10 "consumer affairs" +TOP_10 sore muscles +TOP_10 scottsdale az +TOP_10 "columbia university" +TOP_10 +american +south +TOP_10 +connecticut +post +TOP_10 connecticut historical society +TOP_10 cured of cancer +TOP_10 +care +a +lot +TOP_10 +pump +it +up +TOP_10 "john wilkes booth" +TOP_10 "calvin klein" +TOP_10 "game downloads" +TOP_10 critical care nurse +TOP_10 +the +english +restoration +TOP_10 "united states constitution" +TOP_10 +clothing +optional +TOP_10 +printer +ink +TOP_10 "sky news" +TOP_10 "the oregonian newspaper" +TOP_10 "seal pictures" +TOP_10 "zion national park" +TOP_10 "becoming a widow" +TOP_10 general motors +TOP_10 the movement +TOP_10 "ron keel" +TOP_10 graduate management admission test +TOP_10 state of louisiana +TOP_10 +internet +fraud +TOP_10 +table +lamps +TOP_10 french culinary institute +TOP_10 us coast guard +TOP_10 +reading +museum +TOP_10 "us coast guard" +TOP_10 "ancient egypt" +TOP_10 cheap hotels +TOP_10 +jamie +murray +TOP_10 +mood +swings +TOP_10 blue ridge parkway +TOP_10 music videos +TOP_10 "helen of troy" +TOP_10 david lee roth +TOP_10 toxic encephalopathy +TOP_10 "graffiti art" +TOP_10 catholic answers +TOP_10 who dares wins +TOP_10 "health literacy" +TOP_10 +niceville +high +school +- Run #2 of 3 +TOP_10 philadelphia phillies +TOP_10 hurricane wilma +TOP_10 sarah fisher +TOP_10 +boulder +city +nevada +TOP_10 "ugly people" +TOP_10 +times +union +TOP_10 +seal +pictures +TOP_10 +mercedes +benz +TOP_10 car stereo +TOP_10 +omaha +symphony +TOP_10 +the +news +journal +TOP_10 elise neal +TOP_10 +interracial +love +TOP_10 canadian real estate +TOP_10 "personal loan" +TOP_10 barrett jackson +TOP_10 +jaguar +x +type +TOP_10 +personal +loan +TOP_10 +laborers +international +union +of +north +america +TOP_10 +fatherless +children +TOP_10 "tv party" +TOP_10 york photo +TOP_10 "sleep study" +TOP_10 italian translation +TOP_10 developmental delays +TOP_10 +too +faced +TOP_10 "eastern mennonite university" +TOP_10 +law +dictionary +TOP_10 "reading museum" +TOP_10 los angeles daily news +TOP_10 music stands +TOP_10 +health +literacy +TOP_10 +los +angeles +daily +news +TOP_10 "the news journal" +TOP_10 +montgomery +college +TOP_10 +national +security +cutter +TOP_10 freedom tower +TOP_10 "david thornton" +TOP_10 "mood swings" +TOP_10 san francisco +TOP_10 false prophets +TOP_10 "west palm beach florida" +TOP_10 +digital +scanning +TOP_10 "all funds" +TOP_10 +graduate +management +admission +test +TOP_10 central community college +TOP_10 +the +daily +breeze +TOP_10 civil war battlefields +TOP_10 "bismarck state college" +TOP_10 +child +support +TOP_10 +costume +designers +TOP_10 william wallace +TOP_10 calvin klein +TOP_10 "little shop of horrors" +TOP_10 "elizabeth vargas" +TOP_10 +most +improved +player +TOP_10 "naked news" +TOP_10 "boulder city nevada" +TOP_10 "kenosha wisconsin" +TOP_10 hot springs south dakota +TOP_10 "cartoon network" +TOP_10 vicenza italy +TOP_10 +camp +claiborne +TOP_10 +canary +bird +TOP_10 +shih +tzu +TOP_10 +xena +warrior +princess +TOP_10 +blue +ridge +parkway +TOP_10 "roundabout theatre" +TOP_10 +term +life +insurance +TOP_10 +david +thornton +TOP_10 "american south" +TOP_10 "the globe newspaper" +TOP_10 "battle of the bulge" +TOP_10 new york population +TOP_10 "heart disease" +TOP_10 griffith observatory +TOP_10 american south +TOP_10 john klein +TOP_10 +cherry +blossom +TOP_10 "world bank president" +TOP_10 child support +TOP_10 "big boss man" +TOP_10 "stone mountain" +TOP_10 reading museum +TOP_10 +ford +parts +TOP_10 cognitive impairment +TOP_10 new york times best sellers list +TOP_10 "care a lot" +TOP_10 "hotel del coronado" +TOP_10 consumer affairs +TOP_10 "good luck" +TOP_10 "new england aquarium" +TOP_10 +sore +muscles +TOP_10 +air +mattress +TOP_10 body painting +TOP_10 "the progressive" +TOP_10 +who +dares +wins +TOP_10 the progressive +TOP_10 "western herald" +TOP_10 kristanna loken +TOP_10 mercury insurance +TOP_10 +back +surgery +TOP_10 "wisconsin attorney general" +TOP_10 bmw engines +TOP_10 +sesame +street +TOP_10 "google satellite" +TOP_10 +people +having +sex +TOP_10 health literacy +TOP_10 "water filters" +TOP_10 +playa +del +rey +TOP_10 +mushroom +kingdom +TOP_10 region iv +TOP_10 +cured +of +cancer +TOP_10 +ford +modeling +agency +TOP_10 +catholic +answers +TOP_10 anderson hospital +TOP_10 time for kids +TOP_10 +domain +names +TOP_10 "graduate management admission test" +TOP_10 "movie theatres" +TOP_10 "the incredibles" +TOP_10 "spiritual warfare" +TOP_10 chicago bulls +TOP_10 "camp claiborne" +TOP_10 +hawk +mountain +TOP_10 "tom welling" +TOP_10 "kasota stone" +TOP_10 akron beacon +TOP_10 belcourt castle +TOP_10 low estrogen +TOP_10 "air mattress" +TOP_10 tallest trees in the world +TOP_10 +lost +episode +TOP_10 chicken noodle soup +TOP_10 "new jersey police" +TOP_10 roundabout theatre +TOP_10 jesus as a child +TOP_10 university of washington +TOP_10 +tom +welling +TOP_10 +tallest +trees +in +the +world +TOP_10 "gun magazines" +TOP_10 bankruptcy laws +TOP_10 "edith head" +TOP_10 "barrett jackson" +TOP_10 "false prophets" +TOP_10 japan airlines +TOP_10 +the +preakness +TOP_10 st petersburg high school +TOP_10 +vicenza +italy +TOP_10 "the garden of eden" +TOP_10 "french culinary institute" +TOP_10 battle of the bulge +TOP_10 "merry christmas" +TOP_10 +sarah +fisher +TOP_10 "elise neal" +TOP_10 digital scanning +TOP_10 food carts +TOP_10 "home loan" +TOP_10 +elliott +smith +TOP_10 john wilkes booth +TOP_10 lost episode +TOP_10 bowel obstruction +TOP_10 +helen +of +troy +TOP_10 "who dares wins" +TOP_10 bismarck state college +TOP_10 premier wine +TOP_10 tennis elbow +TOP_10 "griffith observatory" +TOP_10 +king +kalakaua +TOP_10 "ford parts" +TOP_10 +immigration +to +mexico +TOP_10 the daily breeze +TOP_10 +home +loan +TOP_10 "third trimester" +TOP_10 hsbc bank +TOP_10 +david +kim +TOP_10 napa auto parts +TOP_10 +jesus +as +a +child +TOP_10 +belcourt +castle +TOP_10 ellen degeneres show +TOP_10 "usb hub" +TOP_10 +chicken +noodle +soup +TOP_10 the book of life +TOP_10 the actors studio +TOP_10 chicken coop +TOP_10 +milwaukee +newspaper +TOP_10 "ear ache" +TOP_10 "jaguar x type" +TOP_10 +big +boss +man +TOP_10 secretary of state +TOP_10 +barrett +jackson +TOP_10 debra jo rupp +TOP_10 law school rankings +TOP_10 zip code +TOP_10 "scottsdale az" +TOP_10 "jesus as a child" +TOP_10 +rolex +watches +TOP_10 kenosha wisconsin +TOP_10 +kenosha +wisconsin +TOP_10 "oxford dictionary" +TOP_10 chicago public schools +TOP_10 +bismarck +state +college +TOP_10 "belcourt castle" +TOP_10 +army +reserve +TOP_10 +plus +size +clothing +TOP_10 "mushroom kingdom" +TOP_10 "army reserve" +TOP_10 +the +british +embassy +TOP_10 "analog computer" +TOP_10 famous quotes +TOP_10 +georgian +architecture +TOP_10 georgian architecture +TOP_10 "the english restoration" +TOP_10 +george +r +brown +convention +center +TOP_10 +university +of +washington +TOP_10 "connecticut historical society" +TOP_10 +books +on +cd +TOP_10 +hotel +del +coronado +TOP_10 +analog +computer +TOP_10 "kansas city kings" +TOP_10 "little cars" +TOP_10 the garden of eden +TOP_10 "chicago teachers union" +TOP_10 "national book award" +TOP_10 clothing optional +TOP_10 +merry +christmas +TOP_10 plus size clothing +TOP_10 +ambassador +of +italy +TOP_10 +wildlife +photography +TOP_10 tv party +TOP_10 "danube river" +TOP_10 "the actors studio" +TOP_10 "digital scanning" +TOP_10 montessori schools +TOP_10 +little +cars +TOP_10 "abilene tx" +TOP_10 "xena warrior princess" +TOP_10 stone mountain +TOP_10 +phone +cases +TOP_10 graffiti art +TOP_10 +scottsdale +az +TOP_10 "international baseball" +TOP_10 +naked +news +TOP_10 +justin +timberlake +TOP_10 ace frehley +TOP_10 +san +francisco +TOP_10 "rob halford" +TOP_10 united states constitution +TOP_10 "mid continent airport" +TOP_10 new haven +TOP_10 "blue ridge parkway" +TOP_10 "automatic writing" +TOP_10 +third +trimester +TOP_10 "ellen degeneres show" +TOP_10 +bankruptcy +laws +TOP_10 jonathan daniel +TOP_10 +william +wallace +TOP_10 +new +york +towns +TOP_10 +cartoon +network +TOP_10 +kasota +stone +TOP_10 gun magazines +TOP_10 +mid +continent +airport +TOP_10 "weather underground" +TOP_10 analog computer +TOP_10 +flow +meter +TOP_10 national book award +TOP_10 connecticut post +TOP_10 "premier wine" +TOP_10 +new +haven +TOP_10 "body painting" +TOP_10 +abilene +tx +TOP_10 "san francisco" +TOP_10 +movie +theatres +TOP_10 "perfume bottles" +TOP_10 +new +jersey +police +TOP_10 +kristanna +loken +TOP_10 +international +baseball +TOP_10 flow meter +TOP_10 +central +community +college +TOP_10 +bmw +engines +TOP_10 ventura college +TOP_10 "table lamps" +TOP_10 +naomi +wallace +TOP_10 +danube +river +TOP_10 +city +in +iran +TOP_10 "kristanna loken" +TOP_10 +carolyn +jones +TOP_10 human trafficking +TOP_10 edith wharton +TOP_10 kansas city kings +TOP_10 "david koresh" +TOP_10 robert fuller +TOP_10 +long +legs +TOP_10 naomi wallace +TOP_10 +iq +scores +TOP_10 "time for kids" +TOP_10 "japan airlines" +TOP_10 +little +shop +of +horrors +TOP_10 table lamps +TOP_10 "glass works" +TOP_10 +portrait +studio +TOP_10 +interest +only +TOP_10 "child support" +TOP_10 +region +iv +TOP_10 +all +funds +TOP_10 "term life insurance" +TOP_10 eastern mennonite university +TOP_10 spiritual warfare +TOP_10 "cured of cancer" +TOP_10 "civil war battlefields" +TOP_10 abilene tx +TOP_10 "canon powershot" +TOP_10 +car +stereo +TOP_10 "david lee roth" +TOP_10 "intramuscular injections" +TOP_10 elizabeth vargas +TOP_10 +warren +county +TOP_10 +graffiti +art +TOP_10 "kidney transplant" +TOP_10 "round table" +TOP_10 "dexter michigan" +TOP_10 new england aquarium +TOP_10 "connecticut post" +TOP_10 +penny +stocks +TOP_10 +new +york +population +TOP_10 +jungle +boy +TOP_10 "iq scores" +TOP_10 +kitchen +accessories +TOP_10 "laborers international union of north america" +TOP_10 +robert +reed +TOP_10 +virginia +usa +TOP_10 good luck +TOP_10 +bass +fishing +TOP_10 "elliott smith" +TOP_10 prayer times +TOP_10 "mercury insurance" +TOP_10 "jungle boy" +TOP_10 "printer ink" +TOP_10 milwaukee newspaper +TOP_10 missy elliott +TOP_10 ancient egypt +TOP_10 +texas +state +legislature +TOP_10 +jonathan +daniel +TOP_10 "anderson hospital" +TOP_10 "trans siberian orchestra" +TOP_10 +chicago +teachers +union +TOP_10 portrait studio +TOP_10 +old +photos +TOP_10 "robert green ingersoll" +TOP_10 +personal +chef +TOP_10 time in denver +TOP_10 "kitchen accessories" +TOP_10 +adobe +buildings +TOP_10 "george r brown convention center" +TOP_10 kitchen accessories +TOP_10 +bladder +tumor +TOP_10 "low estrogen" +TOP_10 "microsoft frontpage" +TOP_10 hempstead new york +TOP_10 color combinations +TOP_10 +ron +keel +TOP_10 antonio cromartie +TOP_10 "robert fuller" +TOP_10 +general +motors +TOP_10 +the +oregonian +newspaper +TOP_10 +the +incredibles +TOP_10 "too faced" +TOP_10 +university +of +akron +TOP_10 +developmental +delays +TOP_10 +trendy +clothes +TOP_10 +famous +quotes +TOP_10 elliott smith +TOP_10 +hurricane +wilma +TOP_10 the oregonian newspaper +TOP_10 "borders books" +TOP_10 +chicago +bulls +TOP_10 the +TOP_10 trendy clothes +TOP_10 +gun +magazines +TOP_10 "justin timberlake" +TOP_10 +human +trafficking +TOP_10 +spiritual +warfare +TOP_10 care a lot +TOP_10 playa del rey +TOP_10 "the book of life" +TOP_10 little cars +TOP_10 "centerville high school" +TOP_10 "georgia public broadcasting" +TOP_10 bass fishing +TOP_10 "human trafficking" +TOP_10 +open +source +software +TOP_10 "missy elliott" +TOP_10 dexter michigan +TOP_10 boulder city nevada +TOP_10 +miami +dade +college +TOP_10 critical care medicine +TOP_10 +john +wilkes +booth +TOP_10 "pocket pc" +TOP_10 +animal +rights +TOP_10 "playa del rey" +TOP_10 "cheap hotels" +TOP_10 +italian +translation +TOP_10 "plus size clothing" +TOP_10 +dexter +michigan +TOP_10 niceville high school +TOP_10 +japan +airlines +TOP_10 +columbia +university +TOP_10 lord of the rings +TOP_10 robert reed +TOP_10 +home +business +TOP_10 "law dictionary" +TOP_10 "hurricane wilma" +TOP_10 freelance work +TOP_10 new jersey police +TOP_10 +the +progressive +TOP_10 david kim +TOP_10 "ace frehley" +TOP_10 +john +wellington +TOP_10 "sore muscles" +TOP_10 +low +estrogen +TOP_10 "music stands" +TOP_10 +ventura +college +TOP_10 +padre +island +TOP_10 "fluid power" +TOP_10 the news journal +TOP_10 +heart +disease +TOP_10 business consultants +TOP_10 little shop of horrors +TOP_10 "ventura college" +TOP_10 +avon +school +TOP_10 "developmental delays" +TOP_10 "pump it up" +TOP_10 jamie murray +TOP_10 +glass +works +TOP_10 "new york times best sellers list" +TOP_10 "john wellington" +TOP_10 the preakness +TOP_10 +kansas +city +kings +TOP_10 "hawk mountain" +TOP_10 hotel del coronado +TOP_10 microsoft frontpage +TOP_10 danube river +TOP_10 interracial love +TOP_10 "little brown jug" +TOP_10 "sesame street" +TOP_10 +business +consultants +TOP_10 "national security cutter" +TOP_10 +trans +siberian +orchestra +TOP_10 omaha symphony +TOP_10 +sky +news +TOP_10 "philadelphia phillies" +TOP_10 +edith +head +TOP_10 automatic writing +TOP_10 +the +breakfast +club +TOP_10 "new york population" +TOP_10 +zip +code +TOP_10 +true +religion +TOP_10 robert green ingersoll +TOP_10 "jefferson davis high school" +TOP_10 texas death row +TOP_10 bladder tumor +TOP_10 +perfume +bottles +TOP_10 "antonio cromartie" +TOP_10 "costume designers" +TOP_10 mood swings +TOP_10 +milan +tennessee +TOP_10 personal chef +TOP_10 +roundabout +theatre +TOP_10 justin timberlake +TOP_10 +calvin +klein +TOP_10 naked news +TOP_10 usb hub +TOP_10 "back surgery" +TOP_10 carolyn jones +TOP_10 "montgomery college" +TOP_10 +kidney +transplant +TOP_10 walk the line +TOP_10 +civil +war +battlefields +TOP_10 "interracial love" +TOP_10 "foam mattress" +TOP_10 +food +carts +TOP_10 "aishwarya rai" +TOP_10 +round +table +TOP_10 +becoming +a +widow +TOP_10 term life insurance +TOP_10 +worcester +state +college +TOP_10 +automatic +writing +TOP_10 "evening wear" +TOP_10 +lord +of +the +rings +TOP_10 +time +for +kids +TOP_10 +danbury +ct +TOP_10 +google +satellite +TOP_10 +consumer +affairs +TOP_10 +john +donne +TOP_10 +binghamton +new +york +TOP_10 "chicken noodle soup" +TOP_10 "tennis elbow" +TOP_10 john donne +TOP_10 third trimester +TOP_10 montgomery college +TOP_10 "freedom tower" +TOP_10 +ace +frehley +TOP_10 wisconsin attorney general +TOP_10 +corpus +christi +tx +TOP_10 trans siberian orchestra +TOP_10 "catholic answers" +TOP_10 "lost episode" +TOP_10 +water +filters +TOP_10 "bass fishing" +TOP_10 +anderson +hospital +TOP_10 books on cd +TOP_10 the english restoration +TOP_10 +antonio +cromartie +TOP_10 game downloads +TOP_10 +intramuscular +injections +TOP_10 +toxic +encephalopathy +TOP_10 "books on cd" +TOP_10 fluid power +TOP_10 +the +book +of +life +TOP_10 "state of louisiana" +TOP_10 true religion +TOP_10 "york photo" +TOP_10 "decorative windows" +TOP_10 adobe buildings +TOP_10 +the +actors +studio +TOP_10 "business consultants" +TOP_10 oxford dictionary +TOP_10 most improved player +TOP_10 "st petersburg high school" +TOP_10 centerville high school +TOP_10 "bankruptcy laws" +TOP_10 +national +book +award +TOP_10 +david +koresh +TOP_10 jaguar x type +TOP_10 david koresh +TOP_10 "hempstead new york" +TOP_10 "color combinations" +TOP_10 +texas +death +row +TOP_10 "ford modeling agency" +TOP_10 weather underground +TOP_10 intramuscular injections +TOP_10 animal rights +TOP_10 +evening +wear +TOP_10 glass works +TOP_10 "the british embassy" +TOP_10 google satellite +TOP_10 "food carts" +TOP_10 +centerville +high +school +TOP_10 "bladder tumor" +TOP_10 +pocket +pc +TOP_10 open source software +TOP_10 +robert +fuller +TOP_10 law dictionary +TOP_10 "time in denver" +TOP_10 sleep study +TOP_10 camp claiborne +TOP_10 ron keel +TOP_10 home loan +TOP_10 "clothing optional" +TOP_10 "critical care medicine" +TOP_10 virginia usa +TOP_10 worcester state college +TOP_10 evening wear +TOP_10 fatherless children +TOP_10 "wildlife photography" +TOP_10 +akron +beacon +TOP_10 +music +stands +TOP_10 "university of akron" +TOP_10 "akron beacon" +TOP_10 "domain names" +TOP_10 +the +movement +TOP_10 back surgery +TOP_10 ambassador of italy +TOP_10 "secretary of state" +TOP_10 shih tzu +TOP_10 "american academy of child and adolescent psychiatry" +TOP_10 +secretary +of +state +TOP_10 "sarah fisher" +TOP_10 "canadian real estate" +TOP_10 mushroom kingdom +TOP_10 kidney transplant +TOP_10 "the movement" +TOP_10 "corpus christi tx" +TOP_10 +mercury +insurance +TOP_10 +philadelphia +phillies +TOP_10 +time +in +denver +TOP_10 "flow meter" +TOP_10 texas state legislature +TOP_10 "home business" +TOP_10 "debra jo rupp" +TOP_10 internet fraud +TOP_10 heart disease +TOP_10 "bowel obstruction" +TOP_10 "los angeles daily news" +TOP_10 binghamton new york +TOP_10 jefferson davis high school +TOP_10 "cherry blossom" +TOP_10 aishwarya rai +TOP_10 +farmers +almanac +TOP_10 the incredibles +TOP_10 +borders +books +TOP_10 "naomi wallace" +TOP_10 +cheap +hotels +TOP_10 "open source software" +TOP_10 +chicken +coop +TOP_10 "trendy clothes" +TOP_10 +tennis +elbow +TOP_10 cartoon network +TOP_10 seal pictures +TOP_10 "fatherless children" +TOP_10 +medal +of +honor +TOP_10 +battle +of +the +bulge +TOP_10 times union +TOP_10 +american +funds +TOP_10 "the breakfast club" +TOP_10 edith head +TOP_10 interest only +TOP_10 "danbury ct" +TOP_10 "car stereo" +TOP_10 air mattress +TOP_10 "mercedes benz" +TOP_10 +body +painting +TOP_10 "ambassador of italy" +TOP_10 +united +states +constitution +TOP_10 corpus christi tx +TOP_10 +john +klein +TOP_10 pump it up +TOP_10 big boss man +TOP_10 "farmers almanac" +TOP_10 +"the who" +uk +TOP_10 power rangers ninja storm +TOP_10 "personal chef" +TOP_10 "walk the line" +TOP_10 +hsbc +bank +TOP_10 +game +downloads +TOP_10 "milan tennessee" +TOP_10 david thornton +TOP_10 merry christmas +TOP_10 "people having sex" +TOP_10 "law school rankings" +TOP_10 "chicago public schools" +TOP_10 "american funds" +TOP_10 army reserve +TOP_10 new york towns +TOP_10 international baseball +TOP_10 "texas death row" +TOP_10 "medal of honor" +TOP_10 "most improved player" +TOP_10 "penny stocks" +TOP_10 +aishwarya +rai +TOP_10 sesame street +TOP_10 "canary bird" +TOP_10 +montessori +schools +TOP_10 old photos +TOP_10 +power +rangers +ninja +storm +TOP_10 water filters +TOP_10 "true religion" +TOP_10 +york +photo +TOP_10 "hot springs south dakota" +TOP_10 "new york towns" +TOP_10 avon school +TOP_10 "prayer times" +TOP_10 +eastern +mennonite +university +TOP_10 +georgia +public +broadcasting +TOP_10 +ancient +egypt +TOP_10 personal loan +TOP_10 laborers international union of north america +TOP_10 +fluid +power +TOP_10 the globe newspaper +TOP_10 +music +videos +TOP_10 +zion +national +park +TOP_10 columbia university +TOP_10 "new haven" +TOP_10 "padre island" +TOP_10 "region iv" +TOP_10 helen of troy +TOP_10 +elizabeth +vargas +TOP_10 "university of washington" +TOP_10 +french +culinary +institute +TOP_10 +american +academy +of +child +and +adolescent +psychiatry +TOP_10 foam mattress +TOP_10 "virginia usa" +TOP_10 +connecticut +historical +society +TOP_10 borders books +TOP_10 +new +york +times +best +sellers +list +TOP_10 mercedes benz +TOP_10 "niceville high school" +TOP_10 +world +bank +president +TOP_10 +good +luck +TOP_10 rob halford +TOP_10 kasota stone +TOP_10 "adobe buildings" +TOP_10 rolex watches +TOP_10 the british embassy +TOP_10 "jamie murray" +TOP_10 +the +garden +of +eden +TOP_10 perfume bottles +TOP_10 city in iran +TOP_10 "phone cases" +TOP_10 king kalakaua +TOP_10 "chicken coop" +TOP_10 "portrait studio" +TOP_10 +cognitive +impairment +TOP_10 "interest only" +TOP_10 "georgian architecture" +TOP_10 +microsoft +frontpage +TOP_10 +oxford +dictionary +TOP_10 too faced +TOP_10 little brown jug +TOP_10 world bank president +TOP_10 +robert +green +ingersoll +TOP_10 +us +coast +guard +TOP_10 hawk mountain +TOP_10 phone cases +TOP_10 +sleep +study +TOP_10 +freelance +work +TOP_10 medal of honor +TOP_10 mid continent airport +TOP_10 +st +petersburg +high +school +TOP_10 +ear +ache +TOP_10 jungle boy +TOP_10 home business +TOP_10 +canadian +real +estate +TOP_10 +bowel +obstruction +TOP_10 +color +combinations +TOP_10 "montessori schools" +TOP_10 +decorative +windows +TOP_10 "milwaukee newspaper" +TOP_10 immigration to mexico +TOP_10 +ellen +degeneres +show +TOP_10 +griffith +observatory +TOP_10 university of akron +TOP_10 +western +herald +TOP_10 "chicago bulls" +TOP_10 +state +of +louisiana +TOP_10 +hempstead +new +york +TOP_10 american academy of child and adolescent psychiatry +TOP_10 +critical +care +medicine +TOP_10 american funds +TOP_10 "italian translation" +TOP_10 +wisconsin +attorney +general +TOP_10 ford modeling agency +TOP_10 ear ache +TOP_10 georgia public broadcasting +TOP_10 +david +lee +roth +TOP_10 +ugly +people +TOP_10 "general motors" +TOP_10 "long legs" +TOP_10 george r brown convention center +TOP_10 "critical care nurse" +TOP_10 +west +palm +beach +florida +TOP_10 "freelance work" +TOP_10 "city in iran" +TOP_10 "power rangers ninja storm" +TOP_10 +stone +mountain +TOP_10 "tallest trees in the world" +TOP_10 +the +globe +newspaper +TOP_10 "jonathan daniel" +TOP_10 warren county +TOP_10 milan tennessee +TOP_10 +usb +hub +TOP_10 "internet fraud" +TOP_10 +prayer +times +TOP_10 "the daily breeze" +TOP_10 xena warrior princess +TOP_10 "omaha symphony" +TOP_10 "napa auto parts" +TOP_10 ford parts +TOP_10 west palm beach florida +TOP_10 people having sex +TOP_10 national security cutter +TOP_10 iq scores +TOP_10 "vicenza italy" +TOP_10 canon powershot +TOP_10 +elise +neal +TOP_10 "texas state legislature" +TOP_10 "avon school" +TOP_10 +tv +party +TOP_10 the breakfast club +TOP_10 "john klein" +TOP_10 "miami dade college" +TOP_10 "binghamton new york" +TOP_10 +foam +mattress +TOP_10 +missy +elliott +TOP_10 "carolyn jones" +TOP_10 "immigration to mexico" +TOP_10 domain names +TOP_10 +napa +auto +parts +TOP_10 all funds +TOP_10 "times union" +TOP_10 "shih tzu" +TOP_10 printer ink +TOP_10 round table +TOP_10 +false +prophets +TOP_10 +walk +the +line +TOP_10 "william wallace" +TOP_10 "old photos" +TOP_10 canary bird +TOP_10 +premier +wine +TOP_10 "lord of the rings" +TOP_10 "robert reed" +TOP_10 "animal rights" +TOP_10 "famous quotes" +TOP_10 "hsbc bank" +TOP_10 cherry blossom +TOP_10 "worcester state college" +TOP_10 becoming a widow +TOP_10 chicago teachers union +TOP_10 "king kalakaua" +TOP_10 "zip code" +TOP_10 "bmw engines" +TOP_10 "the preakness" +TOP_10 padre island +TOP_10 "cognitive impairment" +TOP_10 +canon +powershot +TOP_10 pocket pc +TOP_10 "edith wharton" +TOP_10 "david kim" +TOP_10 wildlife photography +TOP_10 tom welling +TOP_10 miami dade college +TOP_10 decorative windows +TOP_10 costume designers +TOP_10 +law +school +rankings +TOP_10 +jefferson +davis +high +school +TOP_10 farmers almanac +TOP_10 john wellington +TOP_10 +little +brown +jug +TOP_10 +rob +halford +TOP_10 penny stocks +TOP_10 +chicago +public +schools +TOP_10 +critical +care +nurse +TOP_10 "john donne" +TOP_10 +debra +jo +rupp +TOP_10 +new +england +aquarium +TOP_10 movie theatres +TOP_10 +hot +springs +south +dakota +TOP_10 western herald +TOP_10 "music videos" +TOP_10 +weather +underground +TOP_10 "rolex watches" +TOP_10 sky news +TOP_10 danbury ct +TOP_10 "central community college" +TOP_10 ugly people +TOP_10 +edith +wharton +TOP_10 "toxic encephalopathy" +TOP_10 "warren county" +TOP_10 zion national park +TOP_10 +freedom +tower +TOP_10 long legs +TOP_10 "consumer affairs" +TOP_10 sore muscles +TOP_10 scottsdale az +TOP_10 "columbia university" +TOP_10 +american +south +TOP_10 +connecticut +post +TOP_10 connecticut historical society +TOP_10 cured of cancer +TOP_10 +care +a +lot +TOP_10 +pump +it +up +TOP_10 "john wilkes booth" +TOP_10 "calvin klein" +TOP_10 "game downloads" +TOP_10 critical care nurse +TOP_10 +the +english +restoration +TOP_10 "united states constitution" +TOP_10 +clothing +optional +TOP_10 +printer +ink +TOP_10 "sky news" +TOP_10 "the oregonian newspaper" +TOP_10 "seal pictures" +TOP_10 "zion national park" +TOP_10 "becoming a widow" +TOP_10 general motors +TOP_10 the movement +TOP_10 "ron keel" +TOP_10 graduate management admission test +TOP_10 state of louisiana +TOP_10 +internet +fraud +TOP_10 +table +lamps +TOP_10 french culinary institute +TOP_10 us coast guard +TOP_10 +reading +museum +TOP_10 "us coast guard" +TOP_10 "ancient egypt" +TOP_10 cheap hotels +TOP_10 +jamie +murray +TOP_10 +mood +swings +TOP_10 blue ridge parkway +TOP_10 music videos +TOP_10 "helen of troy" +TOP_10 david lee roth +TOP_10 toxic encephalopathy +TOP_10 "graffiti art" +TOP_10 catholic answers +TOP_10 who dares wins +TOP_10 "health literacy" +TOP_10 +niceville +high +school +- Run #3 of 3 +TOP_10 philadelphia phillies +TOP_10 hurricane wilma +TOP_10 sarah fisher +TOP_10 +boulder +city +nevada +TOP_10 "ugly people" +TOP_10 +times +union +TOP_10 +seal +pictures +TOP_10 +mercedes +benz +TOP_10 car stereo +TOP_10 +omaha +symphony +TOP_10 +the +news +journal +TOP_10 elise neal +TOP_10 +interracial +love +TOP_10 canadian real estate +TOP_10 "personal loan" +TOP_10 barrett jackson +TOP_10 +jaguar +x +type +TOP_10 +personal +loan +TOP_10 +laborers +international +union +of +north +america +TOP_10 +fatherless +children +TOP_10 "tv party" +TOP_10 york photo +TOP_10 "sleep study" +TOP_10 italian translation +TOP_10 developmental delays +TOP_10 +too +faced +TOP_10 "eastern mennonite university" +TOP_10 +law +dictionary +TOP_10 "reading museum" +TOP_10 los angeles daily news +TOP_10 music stands +TOP_10 +health +literacy +TOP_10 +los +angeles +daily +news +TOP_10 "the news journal" +TOP_10 +montgomery +college +TOP_10 +national +security +cutter +TOP_10 freedom tower +TOP_10 "david thornton" +TOP_10 "mood swings" +TOP_10 san francisco +TOP_10 false prophets +TOP_10 "west palm beach florida" +TOP_10 +digital +scanning +TOP_10 "all funds" +TOP_10 +graduate +management +admission +test +TOP_10 central community college +TOP_10 +the +daily +breeze +TOP_10 civil war battlefields +TOP_10 "bismarck state college" +TOP_10 +child +support +TOP_10 +costume +designers +TOP_10 william wallace +TOP_10 calvin klein +TOP_10 "little shop of horrors" +TOP_10 "elizabeth vargas" +TOP_10 +most +improved +player +TOP_10 "naked news" +TOP_10 "boulder city nevada" +TOP_10 "kenosha wisconsin" +TOP_10 hot springs south dakota +TOP_10 "cartoon network" +TOP_10 vicenza italy +TOP_10 +camp +claiborne +TOP_10 +canary +bird +TOP_10 +shih +tzu +TOP_10 +xena +warrior +princess +TOP_10 +blue +ridge +parkway +TOP_10 "roundabout theatre" +TOP_10 +term +life +insurance +TOP_10 +david +thornton +TOP_10 "american south" +TOP_10 "the globe newspaper" +TOP_10 "battle of the bulge" +TOP_10 new york population +TOP_10 "heart disease" +TOP_10 griffith observatory +TOP_10 american south +TOP_10 john klein +TOP_10 +cherry +blossom +TOP_10 "world bank president" +TOP_10 child support +TOP_10 "big boss man" +TOP_10 "stone mountain" +TOP_10 reading museum +TOP_10 +ford +parts +TOP_10 cognitive impairment +TOP_10 new york times best sellers list +TOP_10 "care a lot" +TOP_10 "hotel del coronado" +TOP_10 consumer affairs +TOP_10 "good luck" +TOP_10 "new england aquarium" +TOP_10 +sore +muscles +TOP_10 +air +mattress +TOP_10 body painting +TOP_10 "the progressive" +TOP_10 +who +dares +wins +TOP_10 the progressive +TOP_10 "western herald" +TOP_10 kristanna loken +TOP_10 mercury insurance +TOP_10 +back +surgery +TOP_10 "wisconsin attorney general" +TOP_10 bmw engines +TOP_10 +sesame +street +TOP_10 "google satellite" +TOP_10 +people +having +sex +TOP_10 health literacy +TOP_10 "water filters" +TOP_10 +playa +del +rey +TOP_10 +mushroom +kingdom +TOP_10 region iv +TOP_10 +cured +of +cancer +TOP_10 +ford +modeling +agency +TOP_10 +catholic +answers +TOP_10 anderson hospital +TOP_10 time for kids +TOP_10 +domain +names +TOP_10 "graduate management admission test" +TOP_10 "movie theatres" +TOP_10 "the incredibles" +TOP_10 "spiritual warfare" +TOP_10 chicago bulls +TOP_10 "camp claiborne" +TOP_10 +hawk +mountain +TOP_10 "tom welling" +TOP_10 "kasota stone" +TOP_10 akron beacon +TOP_10 belcourt castle +TOP_10 low estrogen +TOP_10 "air mattress" +TOP_10 tallest trees in the world +TOP_10 +lost +episode +TOP_10 chicken noodle soup +TOP_10 "new jersey police" +TOP_10 roundabout theatre +TOP_10 jesus as a child +TOP_10 university of washington +TOP_10 +tom +welling +TOP_10 +tallest +trees +in +the +world +TOP_10 "gun magazines" +TOP_10 bankruptcy laws +TOP_10 "edith head" +TOP_10 "barrett jackson" +TOP_10 "false prophets" +TOP_10 japan airlines +TOP_10 +the +preakness +TOP_10 st petersburg high school +TOP_10 +vicenza +italy +TOP_10 "the garden of eden" +TOP_10 "french culinary institute" +TOP_10 battle of the bulge +TOP_10 "merry christmas" +TOP_10 +sarah +fisher +TOP_10 "elise neal" +TOP_10 digital scanning +TOP_10 food carts +TOP_10 "home loan" +TOP_10 +elliott +smith +TOP_10 john wilkes booth +TOP_10 lost episode +TOP_10 bowel obstruction +TOP_10 +helen +of +troy +TOP_10 "who dares wins" +TOP_10 bismarck state college +TOP_10 premier wine +TOP_10 tennis elbow +TOP_10 "griffith observatory" +TOP_10 +king +kalakaua +TOP_10 "ford parts" +TOP_10 +immigration +to +mexico +TOP_10 the daily breeze +TOP_10 +home +loan +TOP_10 "third trimester" +TOP_10 hsbc bank +TOP_10 +david +kim +TOP_10 napa auto parts +TOP_10 +jesus +as +a +child +TOP_10 +belcourt +castle +TOP_10 ellen degeneres show +TOP_10 "usb hub" +TOP_10 +chicken +noodle +soup +TOP_10 the book of life +TOP_10 the actors studio +TOP_10 chicken coop +TOP_10 +milwaukee +newspaper +TOP_10 "ear ache" +TOP_10 "jaguar x type" +TOP_10 +big +boss +man +TOP_10 secretary of state +TOP_10 +barrett +jackson +TOP_10 debra jo rupp +TOP_10 law school rankings +TOP_10 zip code +TOP_10 "scottsdale az" +TOP_10 "jesus as a child" +TOP_10 +rolex +watches +TOP_10 kenosha wisconsin +TOP_10 +kenosha +wisconsin +TOP_10 "oxford dictionary" +TOP_10 chicago public schools +TOP_10 +bismarck +state +college +TOP_10 "belcourt castle" +TOP_10 +army +reserve +TOP_10 +plus +size +clothing +TOP_10 "mushroom kingdom" +TOP_10 "army reserve" +TOP_10 +the +british +embassy +TOP_10 "analog computer" +TOP_10 famous quotes +TOP_10 +georgian +architecture +TOP_10 georgian architecture +TOP_10 "the english restoration" +TOP_10 +george +r +brown +convention +center +TOP_10 +university +of +washington +TOP_10 "connecticut historical society" +TOP_10 +books +on +cd +TOP_10 +hotel +del +coronado +TOP_10 +analog +computer +TOP_10 "kansas city kings" +TOP_10 "little cars" +TOP_10 the garden of eden +TOP_10 "chicago teachers union" +TOP_10 "national book award" +TOP_10 clothing optional +TOP_10 +merry +christmas +TOP_10 plus size clothing +TOP_10 +ambassador +of +italy +TOP_10 +wildlife +photography +TOP_10 tv party +TOP_10 "danube river" +TOP_10 "the actors studio" +TOP_10 "digital scanning" +TOP_10 montessori schools +TOP_10 +little +cars +TOP_10 "abilene tx" +TOP_10 "xena warrior princess" +TOP_10 stone mountain +TOP_10 +phone +cases +TOP_10 graffiti art +TOP_10 +scottsdale +az +TOP_10 "international baseball" +TOP_10 +naked +news +TOP_10 +justin +timberlake +TOP_10 ace frehley +TOP_10 +san +francisco +TOP_10 "rob halford" +TOP_10 united states constitution +TOP_10 "mid continent airport" +TOP_10 new haven +TOP_10 "blue ridge parkway" +TOP_10 "automatic writing" +TOP_10 +third +trimester +TOP_10 "ellen degeneres show" +TOP_10 +bankruptcy +laws +TOP_10 jonathan daniel +TOP_10 +william +wallace +TOP_10 +new +york +towns +TOP_10 +cartoon +network +TOP_10 +kasota +stone +TOP_10 gun magazines +TOP_10 +mid +continent +airport +TOP_10 "weather underground" +TOP_10 analog computer +TOP_10 +flow +meter +TOP_10 national book award +TOP_10 connecticut post +TOP_10 "premier wine" +TOP_10 +new +haven +TOP_10 "body painting" +TOP_10 +abilene +tx +TOP_10 "san francisco" +TOP_10 +movie +theatres +TOP_10 "perfume bottles" +TOP_10 +new +jersey +police +TOP_10 +kristanna +loken +TOP_10 +international +baseball +TOP_10 flow meter +TOP_10 +central +community +college +TOP_10 +bmw +engines +TOP_10 ventura college +TOP_10 "table lamps" +TOP_10 +naomi +wallace +TOP_10 +danube +river +TOP_10 +city +in +iran +TOP_10 "kristanna loken" +TOP_10 +carolyn +jones +TOP_10 human trafficking +TOP_10 edith wharton +TOP_10 kansas city kings +TOP_10 "david koresh" +TOP_10 robert fuller +TOP_10 +long +legs +TOP_10 naomi wallace +TOP_10 +iq +scores +TOP_10 "time for kids" +TOP_10 "japan airlines" +TOP_10 +little +shop +of +horrors +TOP_10 table lamps +TOP_10 "glass works" +TOP_10 +portrait +studio +TOP_10 +interest +only +TOP_10 "child support" +TOP_10 +region +iv +TOP_10 +all +funds +TOP_10 "term life insurance" +TOP_10 eastern mennonite university +TOP_10 spiritual warfare +TOP_10 "cured of cancer" +TOP_10 "civil war battlefields" +TOP_10 abilene tx +TOP_10 "canon powershot" +TOP_10 +car +stereo +TOP_10 "david lee roth" +TOP_10 "intramuscular injections" +TOP_10 elizabeth vargas +TOP_10 +warren +county +TOP_10 +graffiti +art +TOP_10 "kidney transplant" +TOP_10 "round table" +TOP_10 "dexter michigan" +TOP_10 new england aquarium +TOP_10 "connecticut post" +TOP_10 +penny +stocks +TOP_10 +new +york +population +TOP_10 +jungle +boy +TOP_10 "iq scores" +TOP_10 +kitchen +accessories +TOP_10 "laborers international union of north america" +TOP_10 +robert +reed +TOP_10 +virginia +usa +TOP_10 good luck +TOP_10 +bass +fishing +TOP_10 "elliott smith" +TOP_10 prayer times +TOP_10 "mercury insurance" +TOP_10 "jungle boy" +TOP_10 "printer ink" +TOP_10 milwaukee newspaper +TOP_10 missy elliott +TOP_10 ancient egypt +TOP_10 +texas +state +legislature +TOP_10 +jonathan +daniel +TOP_10 "anderson hospital" +TOP_10 "trans siberian orchestra" +TOP_10 +chicago +teachers +union +TOP_10 portrait studio +TOP_10 +old +photos +TOP_10 "robert green ingersoll" +TOP_10 +personal +chef +TOP_10 time in denver +TOP_10 "kitchen accessories" +TOP_10 +adobe +buildings +TOP_10 "george r brown convention center" +TOP_10 kitchen accessories +TOP_10 +bladder +tumor +TOP_10 "low estrogen" +TOP_10 "microsoft frontpage" +TOP_10 hempstead new york +TOP_10 color combinations +TOP_10 +ron +keel +TOP_10 antonio cromartie +TOP_10 "robert fuller" +TOP_10 +general +motors +TOP_10 +the +oregonian +newspaper +TOP_10 +the +incredibles +TOP_10 "too faced" +TOP_10 +university +of +akron +TOP_10 +developmental +delays +TOP_10 +trendy +clothes +TOP_10 +famous +quotes +TOP_10 elliott smith +TOP_10 +hurricane +wilma +TOP_10 the oregonian newspaper +TOP_10 "borders books" +TOP_10 +chicago +bulls +TOP_10 the +TOP_10 trendy clothes +TOP_10 +gun +magazines +TOP_10 "justin timberlake" +TOP_10 +human +trafficking +TOP_10 +spiritual +warfare +TOP_10 care a lot +TOP_10 playa del rey +TOP_10 "the book of life" +TOP_10 little cars +TOP_10 "centerville high school" +TOP_10 "georgia public broadcasting" +TOP_10 bass fishing +TOP_10 "human trafficking" +TOP_10 +open +source +software +TOP_10 "missy elliott" +TOP_10 dexter michigan +TOP_10 boulder city nevada +TOP_10 +miami +dade +college +TOP_10 critical care medicine +TOP_10 +john +wilkes +booth +TOP_10 "pocket pc" +TOP_10 +animal +rights +TOP_10 "playa del rey" +TOP_10 "cheap hotels" +TOP_10 +italian +translation +TOP_10 "plus size clothing" +TOP_10 +dexter +michigan +TOP_10 niceville high school +TOP_10 +japan +airlines +TOP_10 +columbia +university +TOP_10 lord of the rings +TOP_10 robert reed +TOP_10 +home +business +TOP_10 "law dictionary" +TOP_10 "hurricane wilma" +TOP_10 freelance work +TOP_10 new jersey police +TOP_10 +the +progressive +TOP_10 david kim +TOP_10 "ace frehley" +TOP_10 +john +wellington +TOP_10 "sore muscles" +TOP_10 +low +estrogen +TOP_10 "music stands" +TOP_10 +ventura +college +TOP_10 +padre +island +TOP_10 "fluid power" +TOP_10 the news journal +TOP_10 +heart +disease +TOP_10 business consultants +TOP_10 little shop of horrors +TOP_10 "ventura college" +TOP_10 +avon +school +TOP_10 "developmental delays" +TOP_10 "pump it up" +TOP_10 jamie murray +TOP_10 +glass +works +TOP_10 "new york times best sellers list" +TOP_10 "john wellington" +TOP_10 the preakness +TOP_10 +kansas +city +kings +TOP_10 "hawk mountain" +TOP_10 hotel del coronado +TOP_10 microsoft frontpage +TOP_10 danube river +TOP_10 interracial love +TOP_10 "little brown jug" +TOP_10 "sesame street" +TOP_10 +business +consultants +TOP_10 "national security cutter" +TOP_10 +trans +siberian +orchestra +TOP_10 omaha symphony +TOP_10 +sky +news +TOP_10 "philadelphia phillies" +TOP_10 +edith +head +TOP_10 automatic writing +TOP_10 +the +breakfast +club +TOP_10 "new york population" +TOP_10 +zip +code +TOP_10 +true +religion +TOP_10 robert green ingersoll +TOP_10 "jefferson davis high school" +TOP_10 texas death row +TOP_10 bladder tumor +TOP_10 +perfume +bottles +TOP_10 "antonio cromartie" +TOP_10 "costume designers" +TOP_10 mood swings +TOP_10 +milan +tennessee +TOP_10 personal chef +TOP_10 +roundabout +theatre +TOP_10 justin timberlake +TOP_10 +calvin +klein +TOP_10 naked news +TOP_10 usb hub +TOP_10 "back surgery" +TOP_10 carolyn jones +TOP_10 "montgomery college" +TOP_10 +kidney +transplant +TOP_10 walk the line +TOP_10 +civil +war +battlefields +TOP_10 "interracial love" +TOP_10 "foam mattress" +TOP_10 +food +carts +TOP_10 "aishwarya rai" +TOP_10 +round +table +TOP_10 +becoming +a +widow +TOP_10 term life insurance +TOP_10 +worcester +state +college +TOP_10 +automatic +writing +TOP_10 "evening wear" +TOP_10 +lord +of +the +rings +TOP_10 +time +for +kids +TOP_10 +danbury +ct +TOP_10 +google +satellite +TOP_10 +consumer +affairs +TOP_10 +john +donne +TOP_10 +binghamton +new +york +TOP_10 "chicken noodle soup" +TOP_10 "tennis elbow" +TOP_10 john donne +TOP_10 third trimester +TOP_10 montgomery college +TOP_10 "freedom tower" +TOP_10 +ace +frehley +TOP_10 wisconsin attorney general +TOP_10 +corpus +christi +tx +TOP_10 trans siberian orchestra +TOP_10 "catholic answers" +TOP_10 "lost episode" +TOP_10 +water +filters +TOP_10 "bass fishing" +TOP_10 +anderson +hospital +TOP_10 books on cd +TOP_10 the english restoration +TOP_10 +antonio +cromartie +TOP_10 game downloads +TOP_10 +intramuscular +injections +TOP_10 +toxic +encephalopathy +TOP_10 "books on cd" +TOP_10 fluid power +TOP_10 +the +book +of +life +TOP_10 "state of louisiana" +TOP_10 true religion +TOP_10 "york photo" +TOP_10 "decorative windows" +TOP_10 adobe buildings +TOP_10 +the +actors +studio +TOP_10 "business consultants" +TOP_10 oxford dictionary +TOP_10 most improved player +TOP_10 "st petersburg high school" +TOP_10 centerville high school +TOP_10 "bankruptcy laws" +TOP_10 +national +book +award +TOP_10 +david +koresh +TOP_10 jaguar x type +TOP_10 david koresh +TOP_10 "hempstead new york" +TOP_10 "color combinations" +TOP_10 +texas +death +row +TOP_10 "ford modeling agency" +TOP_10 weather underground +TOP_10 intramuscular injections +TOP_10 animal rights +TOP_10 +evening +wear +TOP_10 glass works +TOP_10 "the british embassy" +TOP_10 google satellite +TOP_10 "food carts" +TOP_10 +centerville +high +school +TOP_10 "bladder tumor" +TOP_10 +pocket +pc +TOP_10 open source software +TOP_10 +robert +fuller +TOP_10 law dictionary +TOP_10 "time in denver" +TOP_10 sleep study +TOP_10 camp claiborne +TOP_10 ron keel +TOP_10 home loan +TOP_10 "clothing optional" +TOP_10 "critical care medicine" +TOP_10 virginia usa +TOP_10 worcester state college +TOP_10 evening wear +TOP_10 fatherless children +TOP_10 "wildlife photography" +TOP_10 +akron +beacon +TOP_10 +music +stands +TOP_10 "university of akron" +TOP_10 "akron beacon" +TOP_10 "domain names" +TOP_10 +the +movement +TOP_10 back surgery +TOP_10 ambassador of italy +TOP_10 "secretary of state" +TOP_10 shih tzu +TOP_10 "american academy of child and adolescent psychiatry" +TOP_10 +secretary +of +state +TOP_10 "sarah fisher" +TOP_10 "canadian real estate" +TOP_10 mushroom kingdom +TOP_10 kidney transplant +TOP_10 "the movement" +TOP_10 "corpus christi tx" +TOP_10 +mercury +insurance +TOP_10 +philadelphia +phillies +TOP_10 +time +in +denver +TOP_10 "flow meter" +TOP_10 texas state legislature +TOP_10 "home business" +TOP_10 "debra jo rupp" +TOP_10 internet fraud +TOP_10 heart disease +TOP_10 "bowel obstruction" +TOP_10 "los angeles daily news" +TOP_10 binghamton new york +TOP_10 jefferson davis high school +TOP_10 "cherry blossom" +TOP_10 aishwarya rai +TOP_10 +farmers +almanac +TOP_10 the incredibles +TOP_10 +borders +books +TOP_10 "naomi wallace" +TOP_10 +cheap +hotels +TOP_10 "open source software" +TOP_10 +chicken +coop +TOP_10 "trendy clothes" +TOP_10 +tennis +elbow +TOP_10 cartoon network +TOP_10 seal pictures +TOP_10 "fatherless children" +TOP_10 +medal +of +honor +TOP_10 +battle +of +the +bulge +TOP_10 times union +TOP_10 +american +funds +TOP_10 "the breakfast club" +TOP_10 edith head +TOP_10 interest only +TOP_10 "danbury ct" +TOP_10 "car stereo" +TOP_10 air mattress +TOP_10 "mercedes benz" +TOP_10 +body +painting +TOP_10 "ambassador of italy" +TOP_10 +united +states +constitution +TOP_10 corpus christi tx +TOP_10 +john +klein +TOP_10 pump it up +TOP_10 big boss man +TOP_10 "farmers almanac" +TOP_10 +"the who" +uk +TOP_10 power rangers ninja storm +TOP_10 "personal chef" +TOP_10 "walk the line" +TOP_10 +hsbc +bank +TOP_10 +game +downloads +TOP_10 "milan tennessee" +TOP_10 david thornton +TOP_10 merry christmas +TOP_10 "people having sex" +TOP_10 "law school rankings" +TOP_10 "chicago public schools" +TOP_10 "american funds" +TOP_10 army reserve +TOP_10 new york towns +TOP_10 international baseball +TOP_10 "texas death row" +TOP_10 "medal of honor" +TOP_10 "most improved player" +TOP_10 "penny stocks" +TOP_10 +aishwarya +rai +TOP_10 sesame street +TOP_10 "canary bird" +TOP_10 +montessori +schools +TOP_10 old photos +TOP_10 +power +rangers +ninja +storm +TOP_10 water filters +TOP_10 "true religion" +TOP_10 +york +photo +TOP_10 "hot springs south dakota" +TOP_10 "new york towns" +TOP_10 avon school +TOP_10 "prayer times" +TOP_10 +eastern +mennonite +university +TOP_10 +georgia +public +broadcasting +TOP_10 +ancient +egypt +TOP_10 personal loan +TOP_10 laborers international union of north america +TOP_10 +fluid +power +TOP_10 the globe newspaper +TOP_10 +music +videos +TOP_10 +zion +national +park +TOP_10 columbia university +TOP_10 "new haven" +TOP_10 "padre island" +TOP_10 "region iv" +TOP_10 helen of troy +TOP_10 +elizabeth +vargas +TOP_10 "university of washington" +TOP_10 +french +culinary +institute +TOP_10 +american +academy +of +child +and +adolescent +psychiatry +TOP_10 foam mattress +TOP_10 "virginia usa" +TOP_10 +connecticut +historical +society +TOP_10 borders books +TOP_10 +new +york +times +best +sellers +list +TOP_10 mercedes benz +TOP_10 "niceville high school" +TOP_10 +world +bank +president +TOP_10 +good +luck +TOP_10 rob halford +TOP_10 kasota stone +TOP_10 "adobe buildings" +TOP_10 rolex watches +TOP_10 the british embassy +TOP_10 "jamie murray" +TOP_10 +the +garden +of +eden +TOP_10 perfume bottles +TOP_10 city in iran +TOP_10 "phone cases" +TOP_10 king kalakaua +TOP_10 "chicken coop" +TOP_10 "portrait studio" +TOP_10 +cognitive +impairment +TOP_10 "interest only" +TOP_10 "georgian architecture" +TOP_10 +microsoft +frontpage +TOP_10 +oxford +dictionary +TOP_10 too faced +TOP_10 little brown jug +TOP_10 world bank president +TOP_10 +robert +green +ingersoll +TOP_10 +us +coast +guard +TOP_10 hawk mountain +TOP_10 phone cases +TOP_10 +sleep +study +TOP_10 +freelance +work +TOP_10 medal of honor +TOP_10 mid continent airport +TOP_10 +st +petersburg +high +school +TOP_10 +ear +ache +TOP_10 jungle boy +TOP_10 home business +TOP_10 +canadian +real +estate +TOP_10 +bowel +obstruction +TOP_10 +color +combinations +TOP_10 "montessori schools" +TOP_10 +decorative +windows +TOP_10 "milwaukee newspaper" +TOP_10 immigration to mexico +TOP_10 +ellen +degeneres +show +TOP_10 +griffith +observatory +TOP_10 university of akron +TOP_10 +western +herald +TOP_10 "chicago bulls" +TOP_10 +state +of +louisiana +TOP_10 +hempstead +new +york +TOP_10 american academy of child and adolescent psychiatry +TOP_10 +critical +care +medicine +TOP_10 american funds +TOP_10 "italian translation" +TOP_10 +wisconsin +attorney +general +TOP_10 ford modeling agency +TOP_10 ear ache +TOP_10 georgia public broadcasting +TOP_10 +david +lee +roth +TOP_10 +ugly +people +TOP_10 "general motors" +TOP_10 "long legs" +TOP_10 george r brown convention center +TOP_10 "critical care nurse" +TOP_10 +west +palm +beach +florida +TOP_10 "freelance work" +TOP_10 "city in iran" +TOP_10 "power rangers ninja storm" +TOP_10 +stone +mountain +TOP_10 "tallest trees in the world" +TOP_10 +the +globe +newspaper +TOP_10 "jonathan daniel" +TOP_10 warren county +TOP_10 milan tennessee +TOP_10 +usb +hub +TOP_10 "internet fraud" +TOP_10 +prayer +times +TOP_10 "the daily breeze" +TOP_10 xena warrior princess +TOP_10 "omaha symphony" +TOP_10 "napa auto parts" +TOP_10 ford parts +TOP_10 west palm beach florida +TOP_10 people having sex +TOP_10 national security cutter +TOP_10 iq scores +TOP_10 "vicenza italy" +TOP_10 canon powershot +TOP_10 +elise +neal +TOP_10 "texas state legislature" +TOP_10 "avon school" +TOP_10 +tv +party +TOP_10 the breakfast club +TOP_10 "john klein" +TOP_10 "miami dade college" +TOP_10 "binghamton new york" +TOP_10 +foam +mattress +TOP_10 +missy +elliott +TOP_10 "carolyn jones" +TOP_10 "immigration to mexico" +TOP_10 domain names +TOP_10 +napa +auto +parts +TOP_10 all funds +TOP_10 "times union" +TOP_10 "shih tzu" +TOP_10 printer ink +TOP_10 round table +TOP_10 +false +prophets +TOP_10 +walk +the +line +TOP_10 "william wallace" +TOP_10 "old photos" +TOP_10 canary bird +TOP_10 +premier +wine +TOP_10 "lord of the rings" +TOP_10 "robert reed" +TOP_10 "animal rights" +TOP_10 "famous quotes" +TOP_10 "hsbc bank" +TOP_10 cherry blossom +TOP_10 "worcester state college" +TOP_10 becoming a widow +TOP_10 chicago teachers union +TOP_10 "king kalakaua" +TOP_10 "zip code" +TOP_10 "bmw engines" +TOP_10 "the preakness" +TOP_10 padre island +TOP_10 "cognitive impairment" +TOP_10 +canon +powershot +TOP_10 pocket pc +TOP_10 "edith wharton" +TOP_10 "david kim" +TOP_10 wildlife photography +TOP_10 tom welling +TOP_10 miami dade college +TOP_10 decorative windows +TOP_10 costume designers +TOP_10 +law +school +rankings +TOP_10 +jefferson +davis +high +school +TOP_10 farmers almanac +TOP_10 john wellington +TOP_10 +little +brown +jug +TOP_10 +rob +halford +TOP_10 penny stocks +TOP_10 +chicago +public +schools +TOP_10 +critical +care +nurse +TOP_10 "john donne" +TOP_10 +debra +jo +rupp +TOP_10 +new +england +aquarium +TOP_10 movie theatres +TOP_10 +hot +springs +south +dakota +TOP_10 western herald +TOP_10 "music videos" +TOP_10 +weather +underground +TOP_10 "rolex watches" +TOP_10 sky news +TOP_10 danbury ct +TOP_10 "central community college" +TOP_10 ugly people +TOP_10 +edith +wharton +TOP_10 "toxic encephalopathy" +TOP_10 "warren county" +TOP_10 zion national park +TOP_10 +freedom +tower +TOP_10 long legs +TOP_10 "consumer affairs" +TOP_10 sore muscles +TOP_10 scottsdale az +TOP_10 "columbia university" +TOP_10 +american +south +TOP_10 +connecticut +post +TOP_10 connecticut historical society +TOP_10 cured of cancer +TOP_10 +care +a +lot +TOP_10 +pump +it +up +TOP_10 "john wilkes booth" +TOP_10 "calvin klein" +TOP_10 "game downloads" +TOP_10 critical care nurse +TOP_10 +the +english +restoration +TOP_10 "united states constitution" +TOP_10 +clothing +optional +TOP_10 +printer +ink +TOP_10 "sky news" +TOP_10 "the oregonian newspaper" +TOP_10 "seal pictures" +TOP_10 "zion national park" +TOP_10 "becoming a widow" +TOP_10 general motors +TOP_10 the movement +TOP_10 "ron keel" +TOP_10 graduate management admission test +TOP_10 state of louisiana +TOP_10 +internet +fraud +TOP_10 +table +lamps +TOP_10 french culinary institute +TOP_10 us coast guard +TOP_10 +reading +museum +TOP_10 "us coast guard" +TOP_10 "ancient egypt" +TOP_10 cheap hotels +TOP_10 +jamie +murray +TOP_10 +mood +swings +TOP_10 blue ridge parkway +TOP_10 music videos +TOP_10 "helen of troy" +TOP_10 david lee roth +TOP_10 toxic encephalopathy +TOP_10 "graffiti art" +TOP_10 catholic answers +TOP_10 who dares wins +TOP_10 "health literacy" +TOP_10 +niceville +high +school +dict_keys(['simd_linear_search']) +====================== +BENCHMARKING simd_linear_search TOP_10_COUNT +/home/fulmicoton/git/search-benchmark-game/engines/simd_linear_search +--- Warming up ... +TOP_10_COUNT philadelphia phillies +TOP_10_COUNT hurricane wilma +TOP_10_COUNT sarah fisher +TOP_10_COUNT +boulder +city +nevada +TOP_10_COUNT "ugly people" +TOP_10_COUNT +times +union +TOP_10_COUNT +seal +pictures +TOP_10_COUNT +mercedes +benz +TOP_10_COUNT car stereo +TOP_10_COUNT +omaha +symphony +TOP_10_COUNT +the +news +journal +TOP_10_COUNT elise neal +TOP_10_COUNT +interracial +love +TOP_10_COUNT canadian real estate +TOP_10_COUNT "personal loan" +TOP_10_COUNT barrett jackson +TOP_10_COUNT +jaguar +x +type +TOP_10_COUNT +personal +loan +TOP_10_COUNT +laborers +international +union +of +north +america +TOP_10_COUNT +fatherless +children +TOP_10_COUNT "tv party" +TOP_10_COUNT york photo +TOP_10_COUNT "sleep study" +TOP_10_COUNT italian translation +TOP_10_COUNT developmental delays +TOP_10_COUNT +too +faced +TOP_10_COUNT "eastern mennonite university" +TOP_10_COUNT +law +dictionary +TOP_10_COUNT "reading museum" +TOP_10_COUNT los angeles daily news +TOP_10_COUNT music stands +TOP_10_COUNT +health +literacy +TOP_10_COUNT +los +angeles +daily +news +TOP_10_COUNT "the news journal" +TOP_10_COUNT +montgomery +college +TOP_10_COUNT +national +security +cutter +TOP_10_COUNT freedom tower +TOP_10_COUNT "david thornton" +TOP_10_COUNT "mood swings" +TOP_10_COUNT san francisco +TOP_10_COUNT false prophets +TOP_10_COUNT "west palm beach florida" +TOP_10_COUNT +digital +scanning +TOP_10_COUNT "all funds" +TOP_10_COUNT +graduate +management +admission +test +TOP_10_COUNT central community college +TOP_10_COUNT +the +daily +breeze +TOP_10_COUNT civil war battlefields +TOP_10_COUNT "bismarck state college" +TOP_10_COUNT +child +support +TOP_10_COUNT +costume +designers +TOP_10_COUNT william wallace +TOP_10_COUNT calvin klein +TOP_10_COUNT "little shop of horrors" +TOP_10_COUNT "elizabeth vargas" +TOP_10_COUNT +most +improved +player +TOP_10_COUNT "naked news" +TOP_10_COUNT "boulder city nevada" +TOP_10_COUNT "kenosha wisconsin" +TOP_10_COUNT hot springs south dakota +TOP_10_COUNT "cartoon network" +TOP_10_COUNT vicenza italy +TOP_10_COUNT +camp +claiborne +TOP_10_COUNT +canary +bird +TOP_10_COUNT +shih +tzu +TOP_10_COUNT +xena +warrior +princess +TOP_10_COUNT +blue +ridge +parkway +TOP_10_COUNT "roundabout theatre" +TOP_10_COUNT +term +life +insurance +TOP_10_COUNT +david +thornton +TOP_10_COUNT "american south" +TOP_10_COUNT "the globe newspaper" +TOP_10_COUNT "battle of the bulge" +TOP_10_COUNT new york population +TOP_10_COUNT "heart disease" +TOP_10_COUNT griffith observatory +TOP_10_COUNT american south +TOP_10_COUNT john klein +TOP_10_COUNT +cherry +blossom +TOP_10_COUNT "world bank president" +TOP_10_COUNT child support +TOP_10_COUNT "big boss man" +TOP_10_COUNT "stone mountain" +TOP_10_COUNT reading museum +TOP_10_COUNT +ford +parts +TOP_10_COUNT cognitive impairment +TOP_10_COUNT new york times best sellers list +TOP_10_COUNT "care a lot" +TOP_10_COUNT "hotel del coronado" +TOP_10_COUNT consumer affairs +TOP_10_COUNT "good luck" +TOP_10_COUNT "new england aquarium" +TOP_10_COUNT +sore +muscles +TOP_10_COUNT +air +mattress +TOP_10_COUNT body painting +TOP_10_COUNT "the progressive" +TOP_10_COUNT +who +dares +wins +TOP_10_COUNT the progressive +TOP_10_COUNT "western herald" +TOP_10_COUNT kristanna loken +TOP_10_COUNT mercury insurance +TOP_10_COUNT +back +surgery +TOP_10_COUNT "wisconsin attorney general" +TOP_10_COUNT bmw engines +TOP_10_COUNT +sesame +street +TOP_10_COUNT "google satellite" +TOP_10_COUNT +people +having +sex +TOP_10_COUNT health literacy +TOP_10_COUNT "water filters" +TOP_10_COUNT +playa +del +rey +TOP_10_COUNT +mushroom +kingdom +TOP_10_COUNT region iv +TOP_10_COUNT +cured +of +cancer +TOP_10_COUNT +ford +modeling +agency +TOP_10_COUNT +catholic +answers +TOP_10_COUNT anderson hospital +TOP_10_COUNT time for kids +TOP_10_COUNT +domain +names +TOP_10_COUNT "graduate management admission test" +TOP_10_COUNT "movie theatres" +TOP_10_COUNT "the incredibles" +TOP_10_COUNT "spiritual warfare" +TOP_10_COUNT chicago bulls +TOP_10_COUNT "camp claiborne" +TOP_10_COUNT +hawk +mountain +TOP_10_COUNT "tom welling" +TOP_10_COUNT "kasota stone" +TOP_10_COUNT akron beacon +TOP_10_COUNT belcourt castle +TOP_10_COUNT low estrogen +TOP_10_COUNT "air mattress" +TOP_10_COUNT tallest trees in the world +TOP_10_COUNT +lost +episode +TOP_10_COUNT chicken noodle soup +TOP_10_COUNT "new jersey police" +TOP_10_COUNT roundabout theatre +TOP_10_COUNT jesus as a child +TOP_10_COUNT university of washington +TOP_10_COUNT +tom +welling +TOP_10_COUNT +tallest +trees +in +the +world +TOP_10_COUNT "gun magazines" +TOP_10_COUNT bankruptcy laws +TOP_10_COUNT "edith head" +TOP_10_COUNT "barrett jackson" +TOP_10_COUNT "false prophets" +TOP_10_COUNT japan airlines +TOP_10_COUNT +the +preakness +TOP_10_COUNT st petersburg high school +TOP_10_COUNT +vicenza +italy +TOP_10_COUNT "the garden of eden" +TOP_10_COUNT "french culinary institute" +TOP_10_COUNT battle of the bulge +TOP_10_COUNT "merry christmas" +TOP_10_COUNT +sarah +fisher +TOP_10_COUNT "elise neal" +TOP_10_COUNT digital scanning +TOP_10_COUNT food carts +TOP_10_COUNT "home loan" +TOP_10_COUNT +elliott +smith +TOP_10_COUNT john wilkes booth +TOP_10_COUNT lost episode +TOP_10_COUNT bowel obstruction +TOP_10_COUNT +helen +of +troy +TOP_10_COUNT "who dares wins" +TOP_10_COUNT bismarck state college +TOP_10_COUNT premier wine +TOP_10_COUNT tennis elbow +TOP_10_COUNT "griffith observatory" +TOP_10_COUNT +king +kalakaua +TOP_10_COUNT "ford parts" +TOP_10_COUNT +immigration +to +mexico +TOP_10_COUNT the daily breeze +TOP_10_COUNT +home +loan +TOP_10_COUNT "third trimester" +TOP_10_COUNT hsbc bank +TOP_10_COUNT +david +kim +TOP_10_COUNT napa auto parts +TOP_10_COUNT +jesus +as +a +child +TOP_10_COUNT +belcourt +castle +TOP_10_COUNT ellen degeneres show +TOP_10_COUNT "usb hub" +TOP_10_COUNT +chicken +noodle +soup +TOP_10_COUNT the book of life +TOP_10_COUNT the actors studio +TOP_10_COUNT chicken coop +TOP_10_COUNT +milwaukee +newspaper +TOP_10_COUNT "ear ache" +TOP_10_COUNT "jaguar x type" +TOP_10_COUNT +big +boss +man +TOP_10_COUNT secretary of state +TOP_10_COUNT +barrett +jackson +TOP_10_COUNT debra jo rupp +TOP_10_COUNT law school rankings +TOP_10_COUNT zip code +TOP_10_COUNT "scottsdale az" +TOP_10_COUNT "jesus as a child" +TOP_10_COUNT +rolex +watches +TOP_10_COUNT kenosha wisconsin +TOP_10_COUNT +kenosha +wisconsin +TOP_10_COUNT "oxford dictionary" +TOP_10_COUNT chicago public schools +TOP_10_COUNT +bismarck +state +college +TOP_10_COUNT "belcourt castle" +TOP_10_COUNT +army +reserve +TOP_10_COUNT +plus +size +clothing +TOP_10_COUNT "mushroom kingdom" +TOP_10_COUNT "army reserve" +TOP_10_COUNT +the +british +embassy +TOP_10_COUNT "analog computer" +TOP_10_COUNT famous quotes +TOP_10_COUNT +georgian +architecture +TOP_10_COUNT georgian architecture +TOP_10_COUNT "the english restoration" +TOP_10_COUNT +george +r +brown +convention +center +TOP_10_COUNT +university +of +washington +TOP_10_COUNT "connecticut historical society" +TOP_10_COUNT +books +on +cd +TOP_10_COUNT +hotel +del +coronado +TOP_10_COUNT +analog +computer +TOP_10_COUNT "kansas city kings" +TOP_10_COUNT "little cars" +TOP_10_COUNT the garden of eden +TOP_10_COUNT "chicago teachers union" +TOP_10_COUNT "national book award" +TOP_10_COUNT clothing optional +TOP_10_COUNT +merry +christmas +TOP_10_COUNT plus size clothing +TOP_10_COUNT +ambassador +of +italy +TOP_10_COUNT +wildlife +photography +TOP_10_COUNT tv party +TOP_10_COUNT "danube river" +TOP_10_COUNT "the actors studio" +TOP_10_COUNT "digital scanning" +TOP_10_COUNT montessori schools +TOP_10_COUNT +little +cars +TOP_10_COUNT "abilene tx" +TOP_10_COUNT "xena warrior princess" +TOP_10_COUNT stone mountain +TOP_10_COUNT +phone +cases +TOP_10_COUNT graffiti art +TOP_10_COUNT +scottsdale +az +TOP_10_COUNT "international baseball" +TOP_10_COUNT +naked +news +TOP_10_COUNT +justin +timberlake +TOP_10_COUNT ace frehley +TOP_10_COUNT +san +francisco +TOP_10_COUNT "rob halford" +TOP_10_COUNT united states constitution +TOP_10_COUNT "mid continent airport" +TOP_10_COUNT new haven +TOP_10_COUNT "blue ridge parkway" +TOP_10_COUNT "automatic writing" +TOP_10_COUNT +third +trimester +TOP_10_COUNT "ellen degeneres show" +TOP_10_COUNT +bankruptcy +laws +TOP_10_COUNT jonathan daniel +TOP_10_COUNT +william +wallace +TOP_10_COUNT +new +york +towns +TOP_10_COUNT +cartoon +network +TOP_10_COUNT +kasota +stone +TOP_10_COUNT gun magazines +TOP_10_COUNT +mid +continent +airport +TOP_10_COUNT "weather underground" +TOP_10_COUNT analog computer +TOP_10_COUNT +flow +meter +TOP_10_COUNT national book award +TOP_10_COUNT connecticut post +TOP_10_COUNT "premier wine" +TOP_10_COUNT +new +haven +TOP_10_COUNT "body painting" +TOP_10_COUNT +abilene +tx +TOP_10_COUNT "san francisco" +TOP_10_COUNT +movie +theatres +TOP_10_COUNT "perfume bottles" +TOP_10_COUNT +new +jersey +police +TOP_10_COUNT +kristanna +loken +TOP_10_COUNT +international +baseball +TOP_10_COUNT flow meter +TOP_10_COUNT +central +community +college +TOP_10_COUNT +bmw +engines +TOP_10_COUNT ventura college +TOP_10_COUNT "table lamps" +TOP_10_COUNT +naomi +wallace +TOP_10_COUNT +danube +river +TOP_10_COUNT +city +in +iran +TOP_10_COUNT "kristanna loken" +TOP_10_COUNT +carolyn +jones +TOP_10_COUNT human trafficking +TOP_10_COUNT edith wharton +TOP_10_COUNT kansas city kings +TOP_10_COUNT "david koresh" +TOP_10_COUNT robert fuller +TOP_10_COUNT +long +legs +TOP_10_COUNT naomi wallace +TOP_10_COUNT +iq +scores +TOP_10_COUNT "time for kids" +TOP_10_COUNT "japan airlines" +TOP_10_COUNT +little +shop +of +horrors +TOP_10_COUNT table lamps +TOP_10_COUNT "glass works" +TOP_10_COUNT +portrait +studio +TOP_10_COUNT +interest +only +TOP_10_COUNT "child support" +TOP_10_COUNT +region +iv +TOP_10_COUNT +all +funds +TOP_10_COUNT "term life insurance" +TOP_10_COUNT eastern mennonite university +TOP_10_COUNT spiritual warfare +TOP_10_COUNT "cured of cancer" +TOP_10_COUNT "civil war battlefields" +TOP_10_COUNT abilene tx +TOP_10_COUNT "canon powershot" +TOP_10_COUNT +car +stereo +TOP_10_COUNT "david lee roth" +TOP_10_COUNT "intramuscular injections" +TOP_10_COUNT elizabeth vargas +TOP_10_COUNT +warren +county +TOP_10_COUNT +graffiti +art +TOP_10_COUNT "kidney transplant" +TOP_10_COUNT "round table" +TOP_10_COUNT "dexter michigan" +TOP_10_COUNT new england aquarium +TOP_10_COUNT "connecticut post" +TOP_10_COUNT +penny +stocks +TOP_10_COUNT +new +york +population +TOP_10_COUNT +jungle +boy +TOP_10_COUNT "iq scores" +TOP_10_COUNT +kitchen +accessories +TOP_10_COUNT "laborers international union of north america" +TOP_10_COUNT +robert +reed +TOP_10_COUNT +virginia +usa +TOP_10_COUNT good luck +TOP_10_COUNT +bass +fishing +TOP_10_COUNT "elliott smith" +TOP_10_COUNT prayer times +TOP_10_COUNT "mercury insurance" +TOP_10_COUNT "jungle boy" +TOP_10_COUNT "printer ink" +TOP_10_COUNT milwaukee newspaper +TOP_10_COUNT missy elliott +TOP_10_COUNT ancient egypt +TOP_10_COUNT +texas +state +legislature +TOP_10_COUNT +jonathan +daniel +TOP_10_COUNT "anderson hospital" +TOP_10_COUNT "trans siberian orchestra" +TOP_10_COUNT +chicago +teachers +union +TOP_10_COUNT portrait studio +TOP_10_COUNT +old +photos +TOP_10_COUNT "robert green ingersoll" +TOP_10_COUNT +personal +chef +TOP_10_COUNT time in denver +TOP_10_COUNT "kitchen accessories" +TOP_10_COUNT +adobe +buildings +TOP_10_COUNT "george r brown convention center" +TOP_10_COUNT kitchen accessories +TOP_10_COUNT +bladder +tumor +TOP_10_COUNT "low estrogen" +TOP_10_COUNT "microsoft frontpage" +TOP_10_COUNT hempstead new york +TOP_10_COUNT color combinations +TOP_10_COUNT +ron +keel +TOP_10_COUNT antonio cromartie +TOP_10_COUNT "robert fuller" +TOP_10_COUNT +general +motors +TOP_10_COUNT +the +oregonian +newspaper +TOP_10_COUNT +the +incredibles +TOP_10_COUNT "too faced" +TOP_10_COUNT +university +of +akron +TOP_10_COUNT +developmental +delays +TOP_10_COUNT +trendy +clothes +TOP_10_COUNT +famous +quotes +TOP_10_COUNT elliott smith +TOP_10_COUNT +hurricane +wilma +TOP_10_COUNT the oregonian newspaper +TOP_10_COUNT "borders books" +TOP_10_COUNT +chicago +bulls +TOP_10_COUNT the +TOP_10_COUNT trendy clothes +TOP_10_COUNT +gun +magazines +TOP_10_COUNT "justin timberlake" +TOP_10_COUNT +human +trafficking +TOP_10_COUNT +spiritual +warfare +TOP_10_COUNT care a lot +TOP_10_COUNT playa del rey +TOP_10_COUNT "the book of life" +TOP_10_COUNT little cars +TOP_10_COUNT "centerville high school" +TOP_10_COUNT "georgia public broadcasting" +TOP_10_COUNT bass fishing +TOP_10_COUNT "human trafficking" +TOP_10_COUNT +open +source +software +TOP_10_COUNT "missy elliott" +TOP_10_COUNT dexter michigan +TOP_10_COUNT boulder city nevada +TOP_10_COUNT +miami +dade +college +TOP_10_COUNT critical care medicine +TOP_10_COUNT +john +wilkes +booth +TOP_10_COUNT "pocket pc" +TOP_10_COUNT +animal +rights +TOP_10_COUNT "playa del rey" +TOP_10_COUNT "cheap hotels" +TOP_10_COUNT +italian +translation +TOP_10_COUNT "plus size clothing" +TOP_10_COUNT +dexter +michigan +TOP_10_COUNT niceville high school +TOP_10_COUNT +japan +airlines +TOP_10_COUNT +columbia +university +TOP_10_COUNT lord of the rings +TOP_10_COUNT robert reed +TOP_10_COUNT +home +business +TOP_10_COUNT "law dictionary" +TOP_10_COUNT "hurricane wilma" +TOP_10_COUNT freelance work +TOP_10_COUNT new jersey police +TOP_10_COUNT +the +progressive +TOP_10_COUNT david kim +TOP_10_COUNT "ace frehley" +TOP_10_COUNT +john +wellington +TOP_10_COUNT "sore muscles" +TOP_10_COUNT +low +estrogen +TOP_10_COUNT "music stands" +TOP_10_COUNT +ventura +college +TOP_10_COUNT +padre +island +TOP_10_COUNT "fluid power" +TOP_10_COUNT the news journal +TOP_10_COUNT +heart +disease +TOP_10_COUNT business consultants +TOP_10_COUNT little shop of horrors +TOP_10_COUNT "ventura college" +TOP_10_COUNT +avon +school +TOP_10_COUNT "developmental delays" +TOP_10_COUNT "pump it up" +TOP_10_COUNT jamie murray +TOP_10_COUNT +glass +works +TOP_10_COUNT "new york times best sellers list" +TOP_10_COUNT "john wellington" +TOP_10_COUNT the preakness +TOP_10_COUNT +kansas +city +kings +TOP_10_COUNT "hawk mountain" +TOP_10_COUNT hotel del coronado +TOP_10_COUNT microsoft frontpage +TOP_10_COUNT danube river +TOP_10_COUNT interracial love +TOP_10_COUNT "little brown jug" +TOP_10_COUNT "sesame street" +TOP_10_COUNT +business +consultants +TOP_10_COUNT "national security cutter" +TOP_10_COUNT +trans +siberian +orchestra +TOP_10_COUNT omaha symphony +TOP_10_COUNT +sky +news +TOP_10_COUNT "philadelphia phillies" +TOP_10_COUNT +edith +head +TOP_10_COUNT automatic writing +TOP_10_COUNT +the +breakfast +club +TOP_10_COUNT "new york population" +TOP_10_COUNT +zip +code +TOP_10_COUNT +true +religion +TOP_10_COUNT robert green ingersoll +TOP_10_COUNT "jefferson davis high school" +TOP_10_COUNT texas death row +TOP_10_COUNT bladder tumor +TOP_10_COUNT +perfume +bottles +TOP_10_COUNT "antonio cromartie" +TOP_10_COUNT "costume designers" +TOP_10_COUNT mood swings +TOP_10_COUNT +milan +tennessee +TOP_10_COUNT personal chef +TOP_10_COUNT +roundabout +theatre +TOP_10_COUNT justin timberlake +TOP_10_COUNT +calvin +klein +TOP_10_COUNT naked news +TOP_10_COUNT usb hub +TOP_10_COUNT "back surgery" +TOP_10_COUNT carolyn jones +TOP_10_COUNT "montgomery college" +TOP_10_COUNT +kidney +transplant +TOP_10_COUNT walk the line +TOP_10_COUNT +civil +war +battlefields +TOP_10_COUNT "interracial love" +TOP_10_COUNT "foam mattress" +TOP_10_COUNT +food +carts +TOP_10_COUNT "aishwarya rai" +TOP_10_COUNT +round +table +TOP_10_COUNT +becoming +a +widow +TOP_10_COUNT term life insurance +TOP_10_COUNT +worcester +state +college +TOP_10_COUNT +automatic +writing +TOP_10_COUNT "evening wear" +TOP_10_COUNT +lord +of +the +rings +TOP_10_COUNT +time +for +kids +TOP_10_COUNT +danbury +ct +TOP_10_COUNT +google +satellite +TOP_10_COUNT +consumer +affairs +TOP_10_COUNT +john +donne +TOP_10_COUNT +binghamton +new +york +TOP_10_COUNT "chicken noodle soup" +TOP_10_COUNT "tennis elbow" +TOP_10_COUNT john donne +TOP_10_COUNT third trimester +TOP_10_COUNT montgomery college +TOP_10_COUNT "freedom tower" +TOP_10_COUNT +ace +frehley +TOP_10_COUNT wisconsin attorney general +TOP_10_COUNT +corpus +christi +tx +TOP_10_COUNT trans siberian orchestra +TOP_10_COUNT "catholic answers" +TOP_10_COUNT "lost episode" +TOP_10_COUNT +water +filters +TOP_10_COUNT "bass fishing" +TOP_10_COUNT +anderson +hospital +TOP_10_COUNT books on cd +TOP_10_COUNT the english restoration +TOP_10_COUNT +antonio +cromartie +TOP_10_COUNT game downloads +TOP_10_COUNT +intramuscular +injections +TOP_10_COUNT +toxic +encephalopathy +TOP_10_COUNT "books on cd" +TOP_10_COUNT fluid power +TOP_10_COUNT +the +book +of +life +TOP_10_COUNT "state of louisiana" +TOP_10_COUNT true religion +TOP_10_COUNT "york photo" +TOP_10_COUNT "decorative windows" +TOP_10_COUNT adobe buildings +TOP_10_COUNT +the +actors +studio +TOP_10_COUNT "business consultants" +TOP_10_COUNT oxford dictionary +TOP_10_COUNT most improved player +TOP_10_COUNT "st petersburg high school" +TOP_10_COUNT centerville high school +TOP_10_COUNT "bankruptcy laws" +TOP_10_COUNT +national +book +award +TOP_10_COUNT +david +koresh +TOP_10_COUNT jaguar x type +TOP_10_COUNT david koresh +TOP_10_COUNT "hempstead new york" +TOP_10_COUNT "color combinations" +TOP_10_COUNT +texas +death +row +TOP_10_COUNT "ford modeling agency" +TOP_10_COUNT weather underground +TOP_10_COUNT intramuscular injections +TOP_10_COUNT animal rights +TOP_10_COUNT +evening +wear +TOP_10_COUNT glass works +TOP_10_COUNT "the british embassy" +TOP_10_COUNT google satellite +TOP_10_COUNT "food carts" +TOP_10_COUNT +centerville +high +school +TOP_10_COUNT "bladder tumor" +TOP_10_COUNT +pocket +pc +TOP_10_COUNT open source software +TOP_10_COUNT +robert +fuller +TOP_10_COUNT law dictionary +TOP_10_COUNT "time in denver" +TOP_10_COUNT sleep study +TOP_10_COUNT camp claiborne +TOP_10_COUNT ron keel +TOP_10_COUNT home loan +TOP_10_COUNT "clothing optional" +TOP_10_COUNT "critical care medicine" +TOP_10_COUNT virginia usa +TOP_10_COUNT worcester state college +TOP_10_COUNT evening wear +TOP_10_COUNT fatherless children +TOP_10_COUNT "wildlife photography" +TOP_10_COUNT +akron +beacon +TOP_10_COUNT +music +stands +TOP_10_COUNT "university of akron" +TOP_10_COUNT "akron beacon" +TOP_10_COUNT "domain names" +TOP_10_COUNT +the +movement +TOP_10_COUNT back surgery +TOP_10_COUNT ambassador of italy +TOP_10_COUNT "secretary of state" +TOP_10_COUNT shih tzu +TOP_10_COUNT "american academy of child and adolescent psychiatry" +TOP_10_COUNT +secretary +of +state +TOP_10_COUNT "sarah fisher" +TOP_10_COUNT "canadian real estate" +TOP_10_COUNT mushroom kingdom +TOP_10_COUNT kidney transplant +TOP_10_COUNT "the movement" +TOP_10_COUNT "corpus christi tx" +TOP_10_COUNT +mercury +insurance +TOP_10_COUNT +philadelphia +phillies +TOP_10_COUNT +time +in +denver +TOP_10_COUNT "flow meter" +TOP_10_COUNT texas state legislature +TOP_10_COUNT "home business" +TOP_10_COUNT "debra jo rupp" +TOP_10_COUNT internet fraud +TOP_10_COUNT heart disease +TOP_10_COUNT "bowel obstruction" +TOP_10_COUNT "los angeles daily news" +TOP_10_COUNT binghamton new york +TOP_10_COUNT jefferson davis high school +TOP_10_COUNT "cherry blossom" +TOP_10_COUNT aishwarya rai +TOP_10_COUNT +farmers +almanac +TOP_10_COUNT the incredibles +TOP_10_COUNT +borders +books +TOP_10_COUNT "naomi wallace" +TOP_10_COUNT +cheap +hotels +TOP_10_COUNT "open source software" +TOP_10_COUNT +chicken +coop +TOP_10_COUNT "trendy clothes" +TOP_10_COUNT +tennis +elbow +TOP_10_COUNT cartoon network +TOP_10_COUNT seal pictures +TOP_10_COUNT "fatherless children" +TOP_10_COUNT +medal +of +honor +TOP_10_COUNT +battle +of +the +bulge +TOP_10_COUNT times union +TOP_10_COUNT +american +funds +TOP_10_COUNT "the breakfast club" +TOP_10_COUNT edith head +TOP_10_COUNT interest only +TOP_10_COUNT "danbury ct" +TOP_10_COUNT "car stereo" +TOP_10_COUNT air mattress +TOP_10_COUNT "mercedes benz" +TOP_10_COUNT +body +painting +TOP_10_COUNT "ambassador of italy" +TOP_10_COUNT +united +states +constitution +TOP_10_COUNT corpus christi tx +TOP_10_COUNT +john +klein +TOP_10_COUNT pump it up +TOP_10_COUNT big boss man +TOP_10_COUNT "farmers almanac" +TOP_10_COUNT +"the who" +uk +TOP_10_COUNT power rangers ninja storm +TOP_10_COUNT "personal chef" +TOP_10_COUNT "walk the line" +TOP_10_COUNT +hsbc +bank +TOP_10_COUNT +game +downloads +TOP_10_COUNT "milan tennessee" +TOP_10_COUNT david thornton +TOP_10_COUNT merry christmas +TOP_10_COUNT "people having sex" +TOP_10_COUNT "law school rankings" +TOP_10_COUNT "chicago public schools" +TOP_10_COUNT "american funds" +TOP_10_COUNT army reserve +TOP_10_COUNT new york towns +TOP_10_COUNT international baseball +TOP_10_COUNT "texas death row" +TOP_10_COUNT "medal of honor" +TOP_10_COUNT "most improved player" +TOP_10_COUNT "penny stocks" +TOP_10_COUNT +aishwarya +rai +TOP_10_COUNT sesame street +TOP_10_COUNT "canary bird" +TOP_10_COUNT +montessori +schools +TOP_10_COUNT old photos +TOP_10_COUNT +power +rangers +ninja +storm +TOP_10_COUNT water filters +TOP_10_COUNT "true religion" +TOP_10_COUNT +york +photo +TOP_10_COUNT "hot springs south dakota" +TOP_10_COUNT "new york towns" +TOP_10_COUNT avon school +TOP_10_COUNT "prayer times" +TOP_10_COUNT +eastern +mennonite +university +TOP_10_COUNT +georgia +public +broadcasting +TOP_10_COUNT +ancient +egypt +TOP_10_COUNT personal loan +TOP_10_COUNT laborers international union of north america +TOP_10_COUNT +fluid +power +TOP_10_COUNT the globe newspaper +TOP_10_COUNT +music +videos +TOP_10_COUNT +zion +national +park +TOP_10_COUNT columbia university +TOP_10_COUNT "new haven" +TOP_10_COUNT "padre island" +TOP_10_COUNT "region iv" +TOP_10_COUNT helen of troy +TOP_10_COUNT +elizabeth +vargas +TOP_10_COUNT "university of washington" +TOP_10_COUNT +french +culinary +institute +TOP_10_COUNT +american +academy +of +child +and +adolescent +psychiatry +TOP_10_COUNT foam mattress +TOP_10_COUNT "virginia usa" +TOP_10_COUNT +connecticut +historical +society +TOP_10_COUNT borders books +TOP_10_COUNT +new +york +times +best +sellers +list +TOP_10_COUNT mercedes benz +TOP_10_COUNT "niceville high school" +TOP_10_COUNT +world +bank +president +TOP_10_COUNT +good +luck +TOP_10_COUNT rob halford +TOP_10_COUNT kasota stone +TOP_10_COUNT "adobe buildings" +TOP_10_COUNT rolex watches +TOP_10_COUNT the british embassy +TOP_10_COUNT "jamie murray" +TOP_10_COUNT +the +garden +of +eden +TOP_10_COUNT perfume bottles +TOP_10_COUNT city in iran +TOP_10_COUNT "phone cases" +TOP_10_COUNT king kalakaua +TOP_10_COUNT "chicken coop" +TOP_10_COUNT "portrait studio" +TOP_10_COUNT +cognitive +impairment +TOP_10_COUNT "interest only" +TOP_10_COUNT "georgian architecture" +TOP_10_COUNT +microsoft +frontpage +TOP_10_COUNT +oxford +dictionary +TOP_10_COUNT too faced +TOP_10_COUNT little brown jug +TOP_10_COUNT world bank president +TOP_10_COUNT +robert +green +ingersoll +TOP_10_COUNT +us +coast +guard +TOP_10_COUNT hawk mountain +TOP_10_COUNT phone cases +TOP_10_COUNT +sleep +study +TOP_10_COUNT +freelance +work +TOP_10_COUNT medal of honor +TOP_10_COUNT mid continent airport +TOP_10_COUNT +st +petersburg +high +school +TOP_10_COUNT +ear +ache +TOP_10_COUNT jungle boy +TOP_10_COUNT home business +TOP_10_COUNT +canadian +real +estate +TOP_10_COUNT +bowel +obstruction +TOP_10_COUNT +color +combinations +TOP_10_COUNT "montessori schools" +TOP_10_COUNT +decorative +windows +TOP_10_COUNT "milwaukee newspaper" +TOP_10_COUNT immigration to mexico +TOP_10_COUNT +ellen +degeneres +show +TOP_10_COUNT +griffith +observatory +TOP_10_COUNT university of akron +TOP_10_COUNT +western +herald +TOP_10_COUNT "chicago bulls" +TOP_10_COUNT +state +of +louisiana +TOP_10_COUNT +hempstead +new +york +TOP_10_COUNT american academy of child and adolescent psychiatry +TOP_10_COUNT +critical +care +medicine +TOP_10_COUNT american funds +TOP_10_COUNT "italian translation" +TOP_10_COUNT +wisconsin +attorney +general +TOP_10_COUNT ford modeling agency +TOP_10_COUNT ear ache +TOP_10_COUNT georgia public broadcasting +TOP_10_COUNT +david +lee +roth +TOP_10_COUNT +ugly +people +TOP_10_COUNT "general motors" +TOP_10_COUNT "long legs" +TOP_10_COUNT george r brown convention center +TOP_10_COUNT "critical care nurse" +TOP_10_COUNT +west +palm +beach +florida +TOP_10_COUNT "freelance work" +TOP_10_COUNT "city in iran" +TOP_10_COUNT "power rangers ninja storm" +TOP_10_COUNT +stone +mountain +TOP_10_COUNT "tallest trees in the world" +TOP_10_COUNT +the +globe +newspaper +TOP_10_COUNT "jonathan daniel" +TOP_10_COUNT warren county +TOP_10_COUNT milan tennessee +TOP_10_COUNT +usb +hub +TOP_10_COUNT "internet fraud" +TOP_10_COUNT +prayer +times +TOP_10_COUNT "the daily breeze" +TOP_10_COUNT xena warrior princess +TOP_10_COUNT "omaha symphony" +TOP_10_COUNT "napa auto parts" +TOP_10_COUNT ford parts +TOP_10_COUNT west palm beach florida +TOP_10_COUNT people having sex +TOP_10_COUNT national security cutter +TOP_10_COUNT iq scores +TOP_10_COUNT "vicenza italy" +TOP_10_COUNT canon powershot +TOP_10_COUNT +elise +neal +TOP_10_COUNT "texas state legislature" +TOP_10_COUNT "avon school" +TOP_10_COUNT +tv +party +TOP_10_COUNT the breakfast club +TOP_10_COUNT "john klein" +TOP_10_COUNT "miami dade college" +TOP_10_COUNT "binghamton new york" +TOP_10_COUNT +foam +mattress +TOP_10_COUNT +missy +elliott +TOP_10_COUNT "carolyn jones" +TOP_10_COUNT "immigration to mexico" +TOP_10_COUNT domain names +TOP_10_COUNT +napa +auto +parts +TOP_10_COUNT all funds +TOP_10_COUNT "times union" +TOP_10_COUNT "shih tzu" +TOP_10_COUNT printer ink +TOP_10_COUNT round table +TOP_10_COUNT +false +prophets +TOP_10_COUNT +walk +the +line +TOP_10_COUNT "william wallace" +TOP_10_COUNT "old photos" +TOP_10_COUNT canary bird +TOP_10_COUNT +premier +wine +TOP_10_COUNT "lord of the rings" +TOP_10_COUNT "robert reed" +TOP_10_COUNT "animal rights" +TOP_10_COUNT "famous quotes" +TOP_10_COUNT "hsbc bank" +TOP_10_COUNT cherry blossom +TOP_10_COUNT "worcester state college" +TOP_10_COUNT becoming a widow +TOP_10_COUNT chicago teachers union +TOP_10_COUNT "king kalakaua" +TOP_10_COUNT "zip code" +TOP_10_COUNT "bmw engines" +TOP_10_COUNT "the preakness" +TOP_10_COUNT padre island +TOP_10_COUNT "cognitive impairment" +TOP_10_COUNT +canon +powershot +TOP_10_COUNT pocket pc +TOP_10_COUNT "edith wharton" +TOP_10_COUNT "david kim" +TOP_10_COUNT wildlife photography +TOP_10_COUNT tom welling +TOP_10_COUNT miami dade college +TOP_10_COUNT decorative windows +TOP_10_COUNT costume designers +TOP_10_COUNT +law +school +rankings +TOP_10_COUNT +jefferson +davis +high +school +TOP_10_COUNT farmers almanac +TOP_10_COUNT john wellington +TOP_10_COUNT +little +brown +jug +TOP_10_COUNT +rob +halford +TOP_10_COUNT penny stocks +TOP_10_COUNT +chicago +public +schools +TOP_10_COUNT +critical +care +nurse +TOP_10_COUNT "john donne" +TOP_10_COUNT +debra +jo +rupp +TOP_10_COUNT +new +england +aquarium +TOP_10_COUNT movie theatres +TOP_10_COUNT +hot +springs +south +dakota +TOP_10_COUNT western herald +TOP_10_COUNT "music videos" +TOP_10_COUNT +weather +underground +TOP_10_COUNT "rolex watches" +TOP_10_COUNT sky news +TOP_10_COUNT danbury ct +TOP_10_COUNT "central community college" +TOP_10_COUNT ugly people +TOP_10_COUNT +edith +wharton +TOP_10_COUNT "toxic encephalopathy" +TOP_10_COUNT "warren county" +TOP_10_COUNT zion national park +TOP_10_COUNT +freedom +tower +TOP_10_COUNT long legs +TOP_10_COUNT "consumer affairs" +TOP_10_COUNT sore muscles +TOP_10_COUNT scottsdale az +TOP_10_COUNT "columbia university" +TOP_10_COUNT +american +south +TOP_10_COUNT +connecticut +post +TOP_10_COUNT connecticut historical society +TOP_10_COUNT cured of cancer +TOP_10_COUNT +care +a +lot +TOP_10_COUNT +pump +it +up +TOP_10_COUNT "john wilkes booth" +TOP_10_COUNT "calvin klein" +TOP_10_COUNT "game downloads" +TOP_10_COUNT critical care nurse +TOP_10_COUNT +the +english +restoration +TOP_10_COUNT "united states constitution" +TOP_10_COUNT +clothing +optional +TOP_10_COUNT +printer +ink +TOP_10_COUNT "sky news" +TOP_10_COUNT "the oregonian newspaper" +TOP_10_COUNT "seal pictures" +TOP_10_COUNT "zion national park" +TOP_10_COUNT "becoming a widow" +TOP_10_COUNT general motors +TOP_10_COUNT the movement +TOP_10_COUNT "ron keel" +TOP_10_COUNT graduate management admission test +TOP_10_COUNT state of louisiana +TOP_10_COUNT +internet +fraud +TOP_10_COUNT +table +lamps +TOP_10_COUNT french culinary institute +TOP_10_COUNT us coast guard +TOP_10_COUNT +reading +museum +TOP_10_COUNT "us coast guard" +TOP_10_COUNT "ancient egypt" +TOP_10_COUNT cheap hotels +TOP_10_COUNT +jamie +murray +TOP_10_COUNT +mood +swings +TOP_10_COUNT blue ridge parkway +TOP_10_COUNT music videos +TOP_10_COUNT "helen of troy" +TOP_10_COUNT david lee roth +TOP_10_COUNT toxic encephalopathy +TOP_10_COUNT "graffiti art" +TOP_10_COUNT catholic answers +TOP_10_COUNT who dares wins +TOP_10_COUNT "health literacy" +TOP_10_COUNT +niceville +high +school +- Run #1 of 3 +TOP_10_COUNT philadelphia phillies +TOP_10_COUNT hurricane wilma +TOP_10_COUNT sarah fisher +TOP_10_COUNT +boulder +city +nevada +TOP_10_COUNT "ugly people" +TOP_10_COUNT +times +union +TOP_10_COUNT +seal +pictures +TOP_10_COUNT +mercedes +benz +TOP_10_COUNT car stereo +TOP_10_COUNT +omaha +symphony +TOP_10_COUNT +the +news +journal +TOP_10_COUNT elise neal +TOP_10_COUNT +interracial +love +TOP_10_COUNT canadian real estate +TOP_10_COUNT "personal loan" +TOP_10_COUNT barrett jackson +TOP_10_COUNT +jaguar +x +type +TOP_10_COUNT +personal +loan +TOP_10_COUNT +laborers +international +union +of +north +america +TOP_10_COUNT +fatherless +children +TOP_10_COUNT "tv party" +TOP_10_COUNT york photo +TOP_10_COUNT "sleep study" +TOP_10_COUNT italian translation +TOP_10_COUNT developmental delays +TOP_10_COUNT +too +faced +TOP_10_COUNT "eastern mennonite university" +TOP_10_COUNT +law +dictionary +TOP_10_COUNT "reading museum" +TOP_10_COUNT los angeles daily news +TOP_10_COUNT music stands +TOP_10_COUNT +health +literacy +TOP_10_COUNT +los +angeles +daily +news +TOP_10_COUNT "the news journal" +TOP_10_COUNT +montgomery +college +TOP_10_COUNT +national +security +cutter +TOP_10_COUNT freedom tower +TOP_10_COUNT "david thornton" +TOP_10_COUNT "mood swings" +TOP_10_COUNT san francisco +TOP_10_COUNT false prophets +TOP_10_COUNT "west palm beach florida" +TOP_10_COUNT +digital +scanning +TOP_10_COUNT "all funds" +TOP_10_COUNT +graduate +management +admission +test +TOP_10_COUNT central community college +TOP_10_COUNT +the +daily +breeze +TOP_10_COUNT civil war battlefields +TOP_10_COUNT "bismarck state college" +TOP_10_COUNT +child +support +TOP_10_COUNT +costume +designers +TOP_10_COUNT william wallace +TOP_10_COUNT calvin klein +TOP_10_COUNT "little shop of horrors" +TOP_10_COUNT "elizabeth vargas" +TOP_10_COUNT +most +improved +player +TOP_10_COUNT "naked news" +TOP_10_COUNT "boulder city nevada" +TOP_10_COUNT "kenosha wisconsin" +TOP_10_COUNT hot springs south dakota +TOP_10_COUNT "cartoon network" +TOP_10_COUNT vicenza italy +TOP_10_COUNT +camp +claiborne +TOP_10_COUNT +canary +bird +TOP_10_COUNT +shih +tzu +TOP_10_COUNT +xena +warrior +princess +TOP_10_COUNT +blue +ridge +parkway +TOP_10_COUNT "roundabout theatre" +TOP_10_COUNT +term +life +insurance +TOP_10_COUNT +david +thornton +TOP_10_COUNT "american south" +TOP_10_COUNT "the globe newspaper" +TOP_10_COUNT "battle of the bulge" +TOP_10_COUNT new york population +TOP_10_COUNT "heart disease" +TOP_10_COUNT griffith observatory +TOP_10_COUNT american south +TOP_10_COUNT john klein +TOP_10_COUNT +cherry +blossom +TOP_10_COUNT "world bank president" +TOP_10_COUNT child support +TOP_10_COUNT "big boss man" +TOP_10_COUNT "stone mountain" +TOP_10_COUNT reading museum +TOP_10_COUNT +ford +parts +TOP_10_COUNT cognitive impairment +TOP_10_COUNT new york times best sellers list +TOP_10_COUNT "care a lot" +TOP_10_COUNT "hotel del coronado" +TOP_10_COUNT consumer affairs +TOP_10_COUNT "good luck" +TOP_10_COUNT "new england aquarium" +TOP_10_COUNT +sore +muscles +TOP_10_COUNT +air +mattress +TOP_10_COUNT body painting +TOP_10_COUNT "the progressive" +TOP_10_COUNT +who +dares +wins +TOP_10_COUNT the progressive +TOP_10_COUNT "western herald" +TOP_10_COUNT kristanna loken +TOP_10_COUNT mercury insurance +TOP_10_COUNT +back +surgery +TOP_10_COUNT "wisconsin attorney general" +TOP_10_COUNT bmw engines +TOP_10_COUNT +sesame +street +TOP_10_COUNT "google satellite" +TOP_10_COUNT +people +having +sex +TOP_10_COUNT health literacy +TOP_10_COUNT "water filters" +TOP_10_COUNT +playa +del +rey +TOP_10_COUNT +mushroom +kingdom +TOP_10_COUNT region iv +TOP_10_COUNT +cured +of +cancer +TOP_10_COUNT +ford +modeling +agency +TOP_10_COUNT +catholic +answers +TOP_10_COUNT anderson hospital +TOP_10_COUNT time for kids +TOP_10_COUNT +domain +names +TOP_10_COUNT "graduate management admission test" +TOP_10_COUNT "movie theatres" +TOP_10_COUNT "the incredibles" +TOP_10_COUNT "spiritual warfare" +TOP_10_COUNT chicago bulls +TOP_10_COUNT "camp claiborne" +TOP_10_COUNT +hawk +mountain +TOP_10_COUNT "tom welling" +TOP_10_COUNT "kasota stone" +TOP_10_COUNT akron beacon +TOP_10_COUNT belcourt castle +TOP_10_COUNT low estrogen +TOP_10_COUNT "air mattress" +TOP_10_COUNT tallest trees in the world +TOP_10_COUNT +lost +episode +TOP_10_COUNT chicken noodle soup +TOP_10_COUNT "new jersey police" +TOP_10_COUNT roundabout theatre +TOP_10_COUNT jesus as a child +TOP_10_COUNT university of washington +TOP_10_COUNT +tom +welling +TOP_10_COUNT +tallest +trees +in +the +world +TOP_10_COUNT "gun magazines" +TOP_10_COUNT bankruptcy laws +TOP_10_COUNT "edith head" +TOP_10_COUNT "barrett jackson" +TOP_10_COUNT "false prophets" +TOP_10_COUNT japan airlines +TOP_10_COUNT +the +preakness +TOP_10_COUNT st petersburg high school +TOP_10_COUNT +vicenza +italy +TOP_10_COUNT "the garden of eden" +TOP_10_COUNT "french culinary institute" +TOP_10_COUNT battle of the bulge +TOP_10_COUNT "merry christmas" +TOP_10_COUNT +sarah +fisher +TOP_10_COUNT "elise neal" +TOP_10_COUNT digital scanning +TOP_10_COUNT food carts +TOP_10_COUNT "home loan" +TOP_10_COUNT +elliott +smith +TOP_10_COUNT john wilkes booth +TOP_10_COUNT lost episode +TOP_10_COUNT bowel obstruction +TOP_10_COUNT +helen +of +troy +TOP_10_COUNT "who dares wins" +TOP_10_COUNT bismarck state college +TOP_10_COUNT premier wine +TOP_10_COUNT tennis elbow +TOP_10_COUNT "griffith observatory" +TOP_10_COUNT +king +kalakaua +TOP_10_COUNT "ford parts" +TOP_10_COUNT +immigration +to +mexico +TOP_10_COUNT the daily breeze +TOP_10_COUNT +home +loan +TOP_10_COUNT "third trimester" +TOP_10_COUNT hsbc bank +TOP_10_COUNT +david +kim +TOP_10_COUNT napa auto parts +TOP_10_COUNT +jesus +as +a +child +TOP_10_COUNT +belcourt +castle +TOP_10_COUNT ellen degeneres show +TOP_10_COUNT "usb hub" +TOP_10_COUNT +chicken +noodle +soup +TOP_10_COUNT the book of life +TOP_10_COUNT the actors studio +TOP_10_COUNT chicken coop +TOP_10_COUNT +milwaukee +newspaper +TOP_10_COUNT "ear ache" +TOP_10_COUNT "jaguar x type" +TOP_10_COUNT +big +boss +man +TOP_10_COUNT secretary of state +TOP_10_COUNT +barrett +jackson +TOP_10_COUNT debra jo rupp +TOP_10_COUNT law school rankings +TOP_10_COUNT zip code +TOP_10_COUNT "scottsdale az" +TOP_10_COUNT "jesus as a child" +TOP_10_COUNT +rolex +watches +TOP_10_COUNT kenosha wisconsin +TOP_10_COUNT +kenosha +wisconsin +TOP_10_COUNT "oxford dictionary" +TOP_10_COUNT chicago public schools +TOP_10_COUNT +bismarck +state +college +TOP_10_COUNT "belcourt castle" +TOP_10_COUNT +army +reserve +TOP_10_COUNT +plus +size +clothing +TOP_10_COUNT "mushroom kingdom" +TOP_10_COUNT "army reserve" +TOP_10_COUNT +the +british +embassy +TOP_10_COUNT "analog computer" +TOP_10_COUNT famous quotes +TOP_10_COUNT +georgian +architecture +TOP_10_COUNT georgian architecture +TOP_10_COUNT "the english restoration" +TOP_10_COUNT +george +r +brown +convention +center +TOP_10_COUNT +university +of +washington +TOP_10_COUNT "connecticut historical society" +TOP_10_COUNT +books +on +cd +TOP_10_COUNT +hotel +del +coronado +TOP_10_COUNT +analog +computer +TOP_10_COUNT "kansas city kings" +TOP_10_COUNT "little cars" +TOP_10_COUNT the garden of eden +TOP_10_COUNT "chicago teachers union" +TOP_10_COUNT "national book award" +TOP_10_COUNT clothing optional +TOP_10_COUNT +merry +christmas +TOP_10_COUNT plus size clothing +TOP_10_COUNT +ambassador +of +italy +TOP_10_COUNT +wildlife +photography +TOP_10_COUNT tv party +TOP_10_COUNT "danube river" +TOP_10_COUNT "the actors studio" +TOP_10_COUNT "digital scanning" +TOP_10_COUNT montessori schools +TOP_10_COUNT +little +cars +TOP_10_COUNT "abilene tx" +TOP_10_COUNT "xena warrior princess" +TOP_10_COUNT stone mountain +TOP_10_COUNT +phone +cases +TOP_10_COUNT graffiti art +TOP_10_COUNT +scottsdale +az +TOP_10_COUNT "international baseball" +TOP_10_COUNT +naked +news +TOP_10_COUNT +justin +timberlake +TOP_10_COUNT ace frehley +TOP_10_COUNT +san +francisco +TOP_10_COUNT "rob halford" +TOP_10_COUNT united states constitution +TOP_10_COUNT "mid continent airport" +TOP_10_COUNT new haven +TOP_10_COUNT "blue ridge parkway" +TOP_10_COUNT "automatic writing" +TOP_10_COUNT +third +trimester +TOP_10_COUNT "ellen degeneres show" +TOP_10_COUNT +bankruptcy +laws +TOP_10_COUNT jonathan daniel +TOP_10_COUNT +william +wallace +TOP_10_COUNT +new +york +towns +TOP_10_COUNT +cartoon +network +TOP_10_COUNT +kasota +stone +TOP_10_COUNT gun magazines +TOP_10_COUNT +mid +continent +airport +TOP_10_COUNT "weather underground" +TOP_10_COUNT analog computer +TOP_10_COUNT +flow +meter +TOP_10_COUNT national book award +TOP_10_COUNT connecticut post +TOP_10_COUNT "premier wine" +TOP_10_COUNT +new +haven +TOP_10_COUNT "body painting" +TOP_10_COUNT +abilene +tx +TOP_10_COUNT "san francisco" +TOP_10_COUNT +movie +theatres +TOP_10_COUNT "perfume bottles" +TOP_10_COUNT +new +jersey +police +TOP_10_COUNT +kristanna +loken +TOP_10_COUNT +international +baseball +TOP_10_COUNT flow meter +TOP_10_COUNT +central +community +college +TOP_10_COUNT +bmw +engines +TOP_10_COUNT ventura college +TOP_10_COUNT "table lamps" +TOP_10_COUNT +naomi +wallace +TOP_10_COUNT +danube +river +TOP_10_COUNT +city +in +iran +TOP_10_COUNT "kristanna loken" +TOP_10_COUNT +carolyn +jones +TOP_10_COUNT human trafficking +TOP_10_COUNT edith wharton +TOP_10_COUNT kansas city kings +TOP_10_COUNT "david koresh" +TOP_10_COUNT robert fuller +TOP_10_COUNT +long +legs +TOP_10_COUNT naomi wallace +TOP_10_COUNT +iq +scores +TOP_10_COUNT "time for kids" +TOP_10_COUNT "japan airlines" +TOP_10_COUNT +little +shop +of +horrors +TOP_10_COUNT table lamps +TOP_10_COUNT "glass works" +TOP_10_COUNT +portrait +studio +TOP_10_COUNT +interest +only +TOP_10_COUNT "child support" +TOP_10_COUNT +region +iv +TOP_10_COUNT +all +funds +TOP_10_COUNT "term life insurance" +TOP_10_COUNT eastern mennonite university +TOP_10_COUNT spiritual warfare +TOP_10_COUNT "cured of cancer" +TOP_10_COUNT "civil war battlefields" +TOP_10_COUNT abilene tx +TOP_10_COUNT "canon powershot" +TOP_10_COUNT +car +stereo +TOP_10_COUNT "david lee roth" +TOP_10_COUNT "intramuscular injections" +TOP_10_COUNT elizabeth vargas +TOP_10_COUNT +warren +county +TOP_10_COUNT +graffiti +art +TOP_10_COUNT "kidney transplant" +TOP_10_COUNT "round table" +TOP_10_COUNT "dexter michigan" +TOP_10_COUNT new england aquarium +TOP_10_COUNT "connecticut post" +TOP_10_COUNT +penny +stocks +TOP_10_COUNT +new +york +population +TOP_10_COUNT +jungle +boy +TOP_10_COUNT "iq scores" +TOP_10_COUNT +kitchen +accessories +TOP_10_COUNT "laborers international union of north america" +TOP_10_COUNT +robert +reed +TOP_10_COUNT +virginia +usa +TOP_10_COUNT good luck +TOP_10_COUNT +bass +fishing +TOP_10_COUNT "elliott smith" +TOP_10_COUNT prayer times +TOP_10_COUNT "mercury insurance" +TOP_10_COUNT "jungle boy" +TOP_10_COUNT "printer ink" +TOP_10_COUNT milwaukee newspaper +TOP_10_COUNT missy elliott +TOP_10_COUNT ancient egypt +TOP_10_COUNT +texas +state +legislature +TOP_10_COUNT +jonathan +daniel +TOP_10_COUNT "anderson hospital" +TOP_10_COUNT "trans siberian orchestra" +TOP_10_COUNT +chicago +teachers +union +TOP_10_COUNT portrait studio +TOP_10_COUNT +old +photos +TOP_10_COUNT "robert green ingersoll" +TOP_10_COUNT +personal +chef +TOP_10_COUNT time in denver +TOP_10_COUNT "kitchen accessories" +TOP_10_COUNT +adobe +buildings +TOP_10_COUNT "george r brown convention center" +TOP_10_COUNT kitchen accessories +TOP_10_COUNT +bladder +tumor +TOP_10_COUNT "low estrogen" +TOP_10_COUNT "microsoft frontpage" +TOP_10_COUNT hempstead new york +TOP_10_COUNT color combinations +TOP_10_COUNT +ron +keel +TOP_10_COUNT antonio cromartie +TOP_10_COUNT "robert fuller" +TOP_10_COUNT +general +motors +TOP_10_COUNT +the +oregonian +newspaper +TOP_10_COUNT +the +incredibles +TOP_10_COUNT "too faced" +TOP_10_COUNT +university +of +akron +TOP_10_COUNT +developmental +delays +TOP_10_COUNT +trendy +clothes +TOP_10_COUNT +famous +quotes +TOP_10_COUNT elliott smith +TOP_10_COUNT +hurricane +wilma +TOP_10_COUNT the oregonian newspaper +TOP_10_COUNT "borders books" +TOP_10_COUNT +chicago +bulls +TOP_10_COUNT the +TOP_10_COUNT trendy clothes +TOP_10_COUNT +gun +magazines +TOP_10_COUNT "justin timberlake" +TOP_10_COUNT +human +trafficking +TOP_10_COUNT +spiritual +warfare +TOP_10_COUNT care a lot +TOP_10_COUNT playa del rey +TOP_10_COUNT "the book of life" +TOP_10_COUNT little cars +TOP_10_COUNT "centerville high school" +TOP_10_COUNT "georgia public broadcasting" +TOP_10_COUNT bass fishing +TOP_10_COUNT "human trafficking" +TOP_10_COUNT +open +source +software +TOP_10_COUNT "missy elliott" +TOP_10_COUNT dexter michigan +TOP_10_COUNT boulder city nevada +TOP_10_COUNT +miami +dade +college +TOP_10_COUNT critical care medicine +TOP_10_COUNT +john +wilkes +booth +TOP_10_COUNT "pocket pc" +TOP_10_COUNT +animal +rights +TOP_10_COUNT "playa del rey" +TOP_10_COUNT "cheap hotels" +TOP_10_COUNT +italian +translation +TOP_10_COUNT "plus size clothing" +TOP_10_COUNT +dexter +michigan +TOP_10_COUNT niceville high school +TOP_10_COUNT +japan +airlines +TOP_10_COUNT +columbia +university +TOP_10_COUNT lord of the rings +TOP_10_COUNT robert reed +TOP_10_COUNT +home +business +TOP_10_COUNT "law dictionary" +TOP_10_COUNT "hurricane wilma" +TOP_10_COUNT freelance work +TOP_10_COUNT new jersey police +TOP_10_COUNT +the +progressive +TOP_10_COUNT david kim +TOP_10_COUNT "ace frehley" +TOP_10_COUNT +john +wellington +TOP_10_COUNT "sore muscles" +TOP_10_COUNT +low +estrogen +TOP_10_COUNT "music stands" +TOP_10_COUNT +ventura +college +TOP_10_COUNT +padre +island +TOP_10_COUNT "fluid power" +TOP_10_COUNT the news journal +TOP_10_COUNT +heart +disease +TOP_10_COUNT business consultants +TOP_10_COUNT little shop of horrors +TOP_10_COUNT "ventura college" +TOP_10_COUNT +avon +school +TOP_10_COUNT "developmental delays" +TOP_10_COUNT "pump it up" +TOP_10_COUNT jamie murray +TOP_10_COUNT +glass +works +TOP_10_COUNT "new york times best sellers list" +TOP_10_COUNT "john wellington" +TOP_10_COUNT the preakness +TOP_10_COUNT +kansas +city +kings +TOP_10_COUNT "hawk mountain" +TOP_10_COUNT hotel del coronado +TOP_10_COUNT microsoft frontpage +TOP_10_COUNT danube river +TOP_10_COUNT interracial love +TOP_10_COUNT "little brown jug" +TOP_10_COUNT "sesame street" +TOP_10_COUNT +business +consultants +TOP_10_COUNT "national security cutter" +TOP_10_COUNT +trans +siberian +orchestra +TOP_10_COUNT omaha symphony +TOP_10_COUNT +sky +news +TOP_10_COUNT "philadelphia phillies" +TOP_10_COUNT +edith +head +TOP_10_COUNT automatic writing +TOP_10_COUNT +the +breakfast +club +TOP_10_COUNT "new york population" +TOP_10_COUNT +zip +code +TOP_10_COUNT +true +religion +TOP_10_COUNT robert green ingersoll +TOP_10_COUNT "jefferson davis high school" +TOP_10_COUNT texas death row +TOP_10_COUNT bladder tumor +TOP_10_COUNT +perfume +bottles +TOP_10_COUNT "antonio cromartie" +TOP_10_COUNT "costume designers" +TOP_10_COUNT mood swings +TOP_10_COUNT +milan +tennessee +TOP_10_COUNT personal chef +TOP_10_COUNT +roundabout +theatre +TOP_10_COUNT justin timberlake +TOP_10_COUNT +calvin +klein +TOP_10_COUNT naked news +TOP_10_COUNT usb hub +TOP_10_COUNT "back surgery" +TOP_10_COUNT carolyn jones +TOP_10_COUNT "montgomery college" +TOP_10_COUNT +kidney +transplant +TOP_10_COUNT walk the line +TOP_10_COUNT +civil +war +battlefields +TOP_10_COUNT "interracial love" +TOP_10_COUNT "foam mattress" +TOP_10_COUNT +food +carts +TOP_10_COUNT "aishwarya rai" +TOP_10_COUNT +round +table +TOP_10_COUNT +becoming +a +widow +TOP_10_COUNT term life insurance +TOP_10_COUNT +worcester +state +college +TOP_10_COUNT +automatic +writing +TOP_10_COUNT "evening wear" +TOP_10_COUNT +lord +of +the +rings +TOP_10_COUNT +time +for +kids +TOP_10_COUNT +danbury +ct +TOP_10_COUNT +google +satellite +TOP_10_COUNT +consumer +affairs +TOP_10_COUNT +john +donne +TOP_10_COUNT +binghamton +new +york +TOP_10_COUNT "chicken noodle soup" +TOP_10_COUNT "tennis elbow" +TOP_10_COUNT john donne +TOP_10_COUNT third trimester +TOP_10_COUNT montgomery college +TOP_10_COUNT "freedom tower" +TOP_10_COUNT +ace +frehley +TOP_10_COUNT wisconsin attorney general +TOP_10_COUNT +corpus +christi +tx +TOP_10_COUNT trans siberian orchestra +TOP_10_COUNT "catholic answers" +TOP_10_COUNT "lost episode" +TOP_10_COUNT +water +filters +TOP_10_COUNT "bass fishing" +TOP_10_COUNT +anderson +hospital +TOP_10_COUNT books on cd +TOP_10_COUNT the english restoration +TOP_10_COUNT +antonio +cromartie +TOP_10_COUNT game downloads +TOP_10_COUNT +intramuscular +injections +TOP_10_COUNT +toxic +encephalopathy +TOP_10_COUNT "books on cd" +TOP_10_COUNT fluid power +TOP_10_COUNT +the +book +of +life +TOP_10_COUNT "state of louisiana" +TOP_10_COUNT true religion +TOP_10_COUNT "york photo" +TOP_10_COUNT "decorative windows" +TOP_10_COUNT adobe buildings +TOP_10_COUNT +the +actors +studio +TOP_10_COUNT "business consultants" +TOP_10_COUNT oxford dictionary +TOP_10_COUNT most improved player +TOP_10_COUNT "st petersburg high school" +TOP_10_COUNT centerville high school +TOP_10_COUNT "bankruptcy laws" +TOP_10_COUNT +national +book +award +TOP_10_COUNT +david +koresh +TOP_10_COUNT jaguar x type +TOP_10_COUNT david koresh +TOP_10_COUNT "hempstead new york" +TOP_10_COUNT "color combinations" +TOP_10_COUNT +texas +death +row +TOP_10_COUNT "ford modeling agency" +TOP_10_COUNT weather underground +TOP_10_COUNT intramuscular injections +TOP_10_COUNT animal rights +TOP_10_COUNT +evening +wear +TOP_10_COUNT glass works +TOP_10_COUNT "the british embassy" +TOP_10_COUNT google satellite +TOP_10_COUNT "food carts" +TOP_10_COUNT +centerville +high +school +TOP_10_COUNT "bladder tumor" +TOP_10_COUNT +pocket +pc +TOP_10_COUNT open source software +TOP_10_COUNT +robert +fuller +TOP_10_COUNT law dictionary +TOP_10_COUNT "time in denver" +TOP_10_COUNT sleep study +TOP_10_COUNT camp claiborne +TOP_10_COUNT ron keel +TOP_10_COUNT home loan +TOP_10_COUNT "clothing optional" +TOP_10_COUNT "critical care medicine" +TOP_10_COUNT virginia usa +TOP_10_COUNT worcester state college +TOP_10_COUNT evening wear +TOP_10_COUNT fatherless children +TOP_10_COUNT "wildlife photography" +TOP_10_COUNT +akron +beacon +TOP_10_COUNT +music +stands +TOP_10_COUNT "university of akron" +TOP_10_COUNT "akron beacon" +TOP_10_COUNT "domain names" +TOP_10_COUNT +the +movement +TOP_10_COUNT back surgery +TOP_10_COUNT ambassador of italy +TOP_10_COUNT "secretary of state" +TOP_10_COUNT shih tzu +TOP_10_COUNT "american academy of child and adolescent psychiatry" +TOP_10_COUNT +secretary +of +state +TOP_10_COUNT "sarah fisher" +TOP_10_COUNT "canadian real estate" +TOP_10_COUNT mushroom kingdom +TOP_10_COUNT kidney transplant +TOP_10_COUNT "the movement" +TOP_10_COUNT "corpus christi tx" +TOP_10_COUNT +mercury +insurance +TOP_10_COUNT +philadelphia +phillies +TOP_10_COUNT +time +in +denver +TOP_10_COUNT "flow meter" +TOP_10_COUNT texas state legislature +TOP_10_COUNT "home business" +TOP_10_COUNT "debra jo rupp" +TOP_10_COUNT internet fraud +TOP_10_COUNT heart disease +TOP_10_COUNT "bowel obstruction" +TOP_10_COUNT "los angeles daily news" +TOP_10_COUNT binghamton new york +TOP_10_COUNT jefferson davis high school +TOP_10_COUNT "cherry blossom" +TOP_10_COUNT aishwarya rai +TOP_10_COUNT +farmers +almanac +TOP_10_COUNT the incredibles +TOP_10_COUNT +borders +books +TOP_10_COUNT "naomi wallace" +TOP_10_COUNT +cheap +hotels +TOP_10_COUNT "open source software" +TOP_10_COUNT +chicken +coop +TOP_10_COUNT "trendy clothes" +TOP_10_COUNT +tennis +elbow +TOP_10_COUNT cartoon network +TOP_10_COUNT seal pictures +TOP_10_COUNT "fatherless children" +TOP_10_COUNT +medal +of +honor +TOP_10_COUNT +battle +of +the +bulge +TOP_10_COUNT times union +TOP_10_COUNT +american +funds +TOP_10_COUNT "the breakfast club" +TOP_10_COUNT edith head +TOP_10_COUNT interest only +TOP_10_COUNT "danbury ct" +TOP_10_COUNT "car stereo" +TOP_10_COUNT air mattress +TOP_10_COUNT "mercedes benz" +TOP_10_COUNT +body +painting +TOP_10_COUNT "ambassador of italy" +TOP_10_COUNT +united +states +constitution +TOP_10_COUNT corpus christi tx +TOP_10_COUNT +john +klein +TOP_10_COUNT pump it up +TOP_10_COUNT big boss man +TOP_10_COUNT "farmers almanac" +TOP_10_COUNT +"the who" +uk +TOP_10_COUNT power rangers ninja storm +TOP_10_COUNT "personal chef" +TOP_10_COUNT "walk the line" +TOP_10_COUNT +hsbc +bank +TOP_10_COUNT +game +downloads +TOP_10_COUNT "milan tennessee" +TOP_10_COUNT david thornton +TOP_10_COUNT merry christmas +TOP_10_COUNT "people having sex" +TOP_10_COUNT "law school rankings" +TOP_10_COUNT "chicago public schools" +TOP_10_COUNT "american funds" +TOP_10_COUNT army reserve +TOP_10_COUNT new york towns +TOP_10_COUNT international baseball +TOP_10_COUNT "texas death row" +TOP_10_COUNT "medal of honor" +TOP_10_COUNT "most improved player" +TOP_10_COUNT "penny stocks" +TOP_10_COUNT +aishwarya +rai +TOP_10_COUNT sesame street +TOP_10_COUNT "canary bird" +TOP_10_COUNT +montessori +schools +TOP_10_COUNT old photos +TOP_10_COUNT +power +rangers +ninja +storm +TOP_10_COUNT water filters +TOP_10_COUNT "true religion" +TOP_10_COUNT +york +photo +TOP_10_COUNT "hot springs south dakota" +TOP_10_COUNT "new york towns" +TOP_10_COUNT avon school +TOP_10_COUNT "prayer times" +TOP_10_COUNT +eastern +mennonite +university +TOP_10_COUNT +georgia +public +broadcasting +TOP_10_COUNT +ancient +egypt +TOP_10_COUNT personal loan +TOP_10_COUNT laborers international union of north america +TOP_10_COUNT +fluid +power +TOP_10_COUNT the globe newspaper +TOP_10_COUNT +music +videos +TOP_10_COUNT +zion +national +park +TOP_10_COUNT columbia university +TOP_10_COUNT "new haven" +TOP_10_COUNT "padre island" +TOP_10_COUNT "region iv" +TOP_10_COUNT helen of troy +TOP_10_COUNT +elizabeth +vargas +TOP_10_COUNT "university of washington" +TOP_10_COUNT +french +culinary +institute +TOP_10_COUNT +american +academy +of +child +and +adolescent +psychiatry +TOP_10_COUNT foam mattress +TOP_10_COUNT "virginia usa" +TOP_10_COUNT +connecticut +historical +society +TOP_10_COUNT borders books +TOP_10_COUNT +new +york +times +best +sellers +list +TOP_10_COUNT mercedes benz +TOP_10_COUNT "niceville high school" +TOP_10_COUNT +world +bank +president +TOP_10_COUNT +good +luck +TOP_10_COUNT rob halford +TOP_10_COUNT kasota stone +TOP_10_COUNT "adobe buildings" +TOP_10_COUNT rolex watches +TOP_10_COUNT the british embassy +TOP_10_COUNT "jamie murray" +TOP_10_COUNT +the +garden +of +eden +TOP_10_COUNT perfume bottles +TOP_10_COUNT city in iran +TOP_10_COUNT "phone cases" +TOP_10_COUNT king kalakaua +TOP_10_COUNT "chicken coop" +TOP_10_COUNT "portrait studio" +TOP_10_COUNT +cognitive +impairment +TOP_10_COUNT "interest only" +TOP_10_COUNT "georgian architecture" +TOP_10_COUNT +microsoft +frontpage +TOP_10_COUNT +oxford +dictionary +TOP_10_COUNT too faced +TOP_10_COUNT little brown jug +TOP_10_COUNT world bank president +TOP_10_COUNT +robert +green +ingersoll +TOP_10_COUNT +us +coast +guard +TOP_10_COUNT hawk mountain +TOP_10_COUNT phone cases +TOP_10_COUNT +sleep +study +TOP_10_COUNT +freelance +work +TOP_10_COUNT medal of honor +TOP_10_COUNT mid continent airport +TOP_10_COUNT +st +petersburg +high +school +TOP_10_COUNT +ear +ache +TOP_10_COUNT jungle boy +TOP_10_COUNT home business +TOP_10_COUNT +canadian +real +estate +TOP_10_COUNT +bowel +obstruction +TOP_10_COUNT +color +combinations +TOP_10_COUNT "montessori schools" +TOP_10_COUNT +decorative +windows +TOP_10_COUNT "milwaukee newspaper" +TOP_10_COUNT immigration to mexico +TOP_10_COUNT +ellen +degeneres +show +TOP_10_COUNT +griffith +observatory +TOP_10_COUNT university of akron +TOP_10_COUNT +western +herald +TOP_10_COUNT "chicago bulls" +TOP_10_COUNT +state +of +louisiana +TOP_10_COUNT +hempstead +new +york +TOP_10_COUNT american academy of child and adolescent psychiatry +TOP_10_COUNT +critical +care +medicine +TOP_10_COUNT american funds +TOP_10_COUNT "italian translation" +TOP_10_COUNT +wisconsin +attorney +general +TOP_10_COUNT ford modeling agency +TOP_10_COUNT ear ache +TOP_10_COUNT georgia public broadcasting +TOP_10_COUNT +david +lee +roth +TOP_10_COUNT +ugly +people +TOP_10_COUNT "general motors" +TOP_10_COUNT "long legs" +TOP_10_COUNT george r brown convention center +TOP_10_COUNT "critical care nurse" +TOP_10_COUNT +west +palm +beach +florida +TOP_10_COUNT "freelance work" +TOP_10_COUNT "city in iran" +TOP_10_COUNT "power rangers ninja storm" +TOP_10_COUNT +stone +mountain +TOP_10_COUNT "tallest trees in the world" +TOP_10_COUNT +the +globe +newspaper +TOP_10_COUNT "jonathan daniel" +TOP_10_COUNT warren county +TOP_10_COUNT milan tennessee +TOP_10_COUNT +usb +hub +TOP_10_COUNT "internet fraud" +TOP_10_COUNT +prayer +times +TOP_10_COUNT "the daily breeze" +TOP_10_COUNT xena warrior princess +TOP_10_COUNT "omaha symphony" +TOP_10_COUNT "napa auto parts" +TOP_10_COUNT ford parts +TOP_10_COUNT west palm beach florida +TOP_10_COUNT people having sex +TOP_10_COUNT national security cutter +TOP_10_COUNT iq scores +TOP_10_COUNT "vicenza italy" +TOP_10_COUNT canon powershot +TOP_10_COUNT +elise +neal +TOP_10_COUNT "texas state legislature" +TOP_10_COUNT "avon school" +TOP_10_COUNT +tv +party +TOP_10_COUNT the breakfast club +TOP_10_COUNT "john klein" +TOP_10_COUNT "miami dade college" +TOP_10_COUNT "binghamton new york" +TOP_10_COUNT +foam +mattress +TOP_10_COUNT +missy +elliott +TOP_10_COUNT "carolyn jones" +TOP_10_COUNT "immigration to mexico" +TOP_10_COUNT domain names +TOP_10_COUNT +napa +auto +parts +TOP_10_COUNT all funds +TOP_10_COUNT "times union" +TOP_10_COUNT "shih tzu" +TOP_10_COUNT printer ink +TOP_10_COUNT round table +TOP_10_COUNT +false +prophets +TOP_10_COUNT +walk +the +line +TOP_10_COUNT "william wallace" +TOP_10_COUNT "old photos" +TOP_10_COUNT canary bird +TOP_10_COUNT +premier +wine +TOP_10_COUNT "lord of the rings" +TOP_10_COUNT "robert reed" +TOP_10_COUNT "animal rights" +TOP_10_COUNT "famous quotes" +TOP_10_COUNT "hsbc bank" +TOP_10_COUNT cherry blossom +TOP_10_COUNT "worcester state college" +TOP_10_COUNT becoming a widow +TOP_10_COUNT chicago teachers union +TOP_10_COUNT "king kalakaua" +TOP_10_COUNT "zip code" +TOP_10_COUNT "bmw engines" +TOP_10_COUNT "the preakness" +TOP_10_COUNT padre island +TOP_10_COUNT "cognitive impairment" +TOP_10_COUNT +canon +powershot +TOP_10_COUNT pocket pc +TOP_10_COUNT "edith wharton" +TOP_10_COUNT "david kim" +TOP_10_COUNT wildlife photography +TOP_10_COUNT tom welling +TOP_10_COUNT miami dade college +TOP_10_COUNT decorative windows +TOP_10_COUNT costume designers +TOP_10_COUNT +law +school +rankings +TOP_10_COUNT +jefferson +davis +high +school +TOP_10_COUNT farmers almanac +TOP_10_COUNT john wellington +TOP_10_COUNT +little +brown +jug +TOP_10_COUNT +rob +halford +TOP_10_COUNT penny stocks +TOP_10_COUNT +chicago +public +schools +TOP_10_COUNT +critical +care +nurse +TOP_10_COUNT "john donne" +TOP_10_COUNT +debra +jo +rupp +TOP_10_COUNT +new +england +aquarium +TOP_10_COUNT movie theatres +TOP_10_COUNT +hot +springs +south +dakota +TOP_10_COUNT western herald +TOP_10_COUNT "music videos" +TOP_10_COUNT +weather +underground +TOP_10_COUNT "rolex watches" +TOP_10_COUNT sky news +TOP_10_COUNT danbury ct +TOP_10_COUNT "central community college" +TOP_10_COUNT ugly people +TOP_10_COUNT +edith +wharton +TOP_10_COUNT "toxic encephalopathy" +TOP_10_COUNT "warren county" +TOP_10_COUNT zion national park +TOP_10_COUNT +freedom +tower +TOP_10_COUNT long legs +TOP_10_COUNT "consumer affairs" +TOP_10_COUNT sore muscles +TOP_10_COUNT scottsdale az +TOP_10_COUNT "columbia university" +TOP_10_COUNT +american +south +TOP_10_COUNT +connecticut +post +TOP_10_COUNT connecticut historical society +TOP_10_COUNT cured of cancer +TOP_10_COUNT +care +a +lot +TOP_10_COUNT +pump +it +up +TOP_10_COUNT "john wilkes booth" +TOP_10_COUNT "calvin klein" +TOP_10_COUNT "game downloads" +TOP_10_COUNT critical care nurse +TOP_10_COUNT +the +english +restoration +TOP_10_COUNT "united states constitution" +TOP_10_COUNT +clothing +optional +TOP_10_COUNT +printer +ink +TOP_10_COUNT "sky news" +TOP_10_COUNT "the oregonian newspaper" +TOP_10_COUNT "seal pictures" +TOP_10_COUNT "zion national park" +TOP_10_COUNT "becoming a widow" +TOP_10_COUNT general motors +TOP_10_COUNT the movement +TOP_10_COUNT "ron keel" +TOP_10_COUNT graduate management admission test +TOP_10_COUNT state of louisiana +TOP_10_COUNT +internet +fraud +TOP_10_COUNT +table +lamps +TOP_10_COUNT french culinary institute +TOP_10_COUNT us coast guard +TOP_10_COUNT +reading +museum +TOP_10_COUNT "us coast guard" +TOP_10_COUNT "ancient egypt" +TOP_10_COUNT cheap hotels +TOP_10_COUNT +jamie +murray +TOP_10_COUNT +mood +swings +TOP_10_COUNT blue ridge parkway +TOP_10_COUNT music videos +TOP_10_COUNT "helen of troy" +TOP_10_COUNT david lee roth +TOP_10_COUNT toxic encephalopathy +TOP_10_COUNT "graffiti art" +TOP_10_COUNT catholic answers +TOP_10_COUNT who dares wins +TOP_10_COUNT "health literacy" +TOP_10_COUNT +niceville +high +school +- Run #2 of 3 +TOP_10_COUNT philadelphia phillies +TOP_10_COUNT hurricane wilma +TOP_10_COUNT sarah fisher +TOP_10_COUNT +boulder +city +nevada +TOP_10_COUNT "ugly people" +TOP_10_COUNT +times +union +TOP_10_COUNT +seal +pictures +TOP_10_COUNT +mercedes +benz +TOP_10_COUNT car stereo +TOP_10_COUNT +omaha +symphony +TOP_10_COUNT +the +news +journal +TOP_10_COUNT elise neal +TOP_10_COUNT +interracial +love +TOP_10_COUNT canadian real estate +TOP_10_COUNT "personal loan" +TOP_10_COUNT barrett jackson +TOP_10_COUNT +jaguar +x +type +TOP_10_COUNT +personal +loan +TOP_10_COUNT +laborers +international +union +of +north +america +TOP_10_COUNT +fatherless +children +TOP_10_COUNT "tv party" +TOP_10_COUNT york photo +TOP_10_COUNT "sleep study" +TOP_10_COUNT italian translation +TOP_10_COUNT developmental delays +TOP_10_COUNT +too +faced +TOP_10_COUNT "eastern mennonite university" +TOP_10_COUNT +law +dictionary +TOP_10_COUNT "reading museum" +TOP_10_COUNT los angeles daily news +TOP_10_COUNT music stands +TOP_10_COUNT +health +literacy +TOP_10_COUNT +los +angeles +daily +news +TOP_10_COUNT "the news journal" +TOP_10_COUNT +montgomery +college +TOP_10_COUNT +national +security +cutter +TOP_10_COUNT freedom tower +TOP_10_COUNT "david thornton" +TOP_10_COUNT "mood swings" +TOP_10_COUNT san francisco +TOP_10_COUNT false prophets +TOP_10_COUNT "west palm beach florida" +TOP_10_COUNT +digital +scanning +TOP_10_COUNT "all funds" +TOP_10_COUNT +graduate +management +admission +test +TOP_10_COUNT central community college +TOP_10_COUNT +the +daily +breeze +TOP_10_COUNT civil war battlefields +TOP_10_COUNT "bismarck state college" +TOP_10_COUNT +child +support +TOP_10_COUNT +costume +designers +TOP_10_COUNT william wallace +TOP_10_COUNT calvin klein +TOP_10_COUNT "little shop of horrors" +TOP_10_COUNT "elizabeth vargas" +TOP_10_COUNT +most +improved +player +TOP_10_COUNT "naked news" +TOP_10_COUNT "boulder city nevada" +TOP_10_COUNT "kenosha wisconsin" +TOP_10_COUNT hot springs south dakota +TOP_10_COUNT "cartoon network" +TOP_10_COUNT vicenza italy +TOP_10_COUNT +camp +claiborne +TOP_10_COUNT +canary +bird +TOP_10_COUNT +shih +tzu +TOP_10_COUNT +xena +warrior +princess +TOP_10_COUNT +blue +ridge +parkway +TOP_10_COUNT "roundabout theatre" +TOP_10_COUNT +term +life +insurance +TOP_10_COUNT +david +thornton +TOP_10_COUNT "american south" +TOP_10_COUNT "the globe newspaper" +TOP_10_COUNT "battle of the bulge" +TOP_10_COUNT new york population +TOP_10_COUNT "heart disease" +TOP_10_COUNT griffith observatory +TOP_10_COUNT american south +TOP_10_COUNT john klein +TOP_10_COUNT +cherry +blossom +TOP_10_COUNT "world bank president" +TOP_10_COUNT child support +TOP_10_COUNT "big boss man" +TOP_10_COUNT "stone mountain" +TOP_10_COUNT reading museum +TOP_10_COUNT +ford +parts +TOP_10_COUNT cognitive impairment +TOP_10_COUNT new york times best sellers list +TOP_10_COUNT "care a lot" +TOP_10_COUNT "hotel del coronado" +TOP_10_COUNT consumer affairs +TOP_10_COUNT "good luck" +TOP_10_COUNT "new england aquarium" +TOP_10_COUNT +sore +muscles +TOP_10_COUNT +air +mattress +TOP_10_COUNT body painting +TOP_10_COUNT "the progressive" +TOP_10_COUNT +who +dares +wins +TOP_10_COUNT the progressive +TOP_10_COUNT "western herald" +TOP_10_COUNT kristanna loken +TOP_10_COUNT mercury insurance +TOP_10_COUNT +back +surgery +TOP_10_COUNT "wisconsin attorney general" +TOP_10_COUNT bmw engines +TOP_10_COUNT +sesame +street +TOP_10_COUNT "google satellite" +TOP_10_COUNT +people +having +sex +TOP_10_COUNT health literacy +TOP_10_COUNT "water filters" +TOP_10_COUNT +playa +del +rey +TOP_10_COUNT +mushroom +kingdom +TOP_10_COUNT region iv +TOP_10_COUNT +cured +of +cancer +TOP_10_COUNT +ford +modeling +agency +TOP_10_COUNT +catholic +answers +TOP_10_COUNT anderson hospital +TOP_10_COUNT time for kids +TOP_10_COUNT +domain +names +TOP_10_COUNT "graduate management admission test" +TOP_10_COUNT "movie theatres" +TOP_10_COUNT "the incredibles" +TOP_10_COUNT "spiritual warfare" +TOP_10_COUNT chicago bulls +TOP_10_COUNT "camp claiborne" +TOP_10_COUNT +hawk +mountain +TOP_10_COUNT "tom welling" +TOP_10_COUNT "kasota stone" +TOP_10_COUNT akron beacon +TOP_10_COUNT belcourt castle +TOP_10_COUNT low estrogen +TOP_10_COUNT "air mattress" +TOP_10_COUNT tallest trees in the world +TOP_10_COUNT +lost +episode +TOP_10_COUNT chicken noodle soup +TOP_10_COUNT "new jersey police" +TOP_10_COUNT roundabout theatre +TOP_10_COUNT jesus as a child +TOP_10_COUNT university of washington +TOP_10_COUNT +tom +welling +TOP_10_COUNT +tallest +trees +in +the +world +TOP_10_COUNT "gun magazines" +TOP_10_COUNT bankruptcy laws +TOP_10_COUNT "edith head" +TOP_10_COUNT "barrett jackson" +TOP_10_COUNT "false prophets" +TOP_10_COUNT japan airlines +TOP_10_COUNT +the +preakness +TOP_10_COUNT st petersburg high school +TOP_10_COUNT +vicenza +italy +TOP_10_COUNT "the garden of eden" +TOP_10_COUNT "french culinary institute" +TOP_10_COUNT battle of the bulge +TOP_10_COUNT "merry christmas" +TOP_10_COUNT +sarah +fisher +TOP_10_COUNT "elise neal" +TOP_10_COUNT digital scanning +TOP_10_COUNT food carts +TOP_10_COUNT "home loan" +TOP_10_COUNT +elliott +smith +TOP_10_COUNT john wilkes booth +TOP_10_COUNT lost episode +TOP_10_COUNT bowel obstruction +TOP_10_COUNT +helen +of +troy +TOP_10_COUNT "who dares wins" +TOP_10_COUNT bismarck state college +TOP_10_COUNT premier wine +TOP_10_COUNT tennis elbow +TOP_10_COUNT "griffith observatory" +TOP_10_COUNT +king +kalakaua +TOP_10_COUNT "ford parts" +TOP_10_COUNT +immigration +to +mexico +TOP_10_COUNT the daily breeze +TOP_10_COUNT +home +loan +TOP_10_COUNT "third trimester" +TOP_10_COUNT hsbc bank +TOP_10_COUNT +david +kim +TOP_10_COUNT napa auto parts +TOP_10_COUNT +jesus +as +a +child +TOP_10_COUNT +belcourt +castle +TOP_10_COUNT ellen degeneres show +TOP_10_COUNT "usb hub" +TOP_10_COUNT +chicken +noodle +soup +TOP_10_COUNT the book of life +TOP_10_COUNT the actors studio +TOP_10_COUNT chicken coop +TOP_10_COUNT +milwaukee +newspaper +TOP_10_COUNT "ear ache" +TOP_10_COUNT "jaguar x type" +TOP_10_COUNT +big +boss +man +TOP_10_COUNT secretary of state +TOP_10_COUNT +barrett +jackson +TOP_10_COUNT debra jo rupp +TOP_10_COUNT law school rankings +TOP_10_COUNT zip code +TOP_10_COUNT "scottsdale az" +TOP_10_COUNT "jesus as a child" +TOP_10_COUNT +rolex +watches +TOP_10_COUNT kenosha wisconsin +TOP_10_COUNT +kenosha +wisconsin +TOP_10_COUNT "oxford dictionary" +TOP_10_COUNT chicago public schools +TOP_10_COUNT +bismarck +state +college +TOP_10_COUNT "belcourt castle" +TOP_10_COUNT +army +reserve +TOP_10_COUNT +plus +size +clothing +TOP_10_COUNT "mushroom kingdom" +TOP_10_COUNT "army reserve" +TOP_10_COUNT +the +british +embassy +TOP_10_COUNT "analog computer" +TOP_10_COUNT famous quotes +TOP_10_COUNT +georgian +architecture +TOP_10_COUNT georgian architecture +TOP_10_COUNT "the english restoration" +TOP_10_COUNT +george +r +brown +convention +center +TOP_10_COUNT +university +of +washington +TOP_10_COUNT "connecticut historical society" +TOP_10_COUNT +books +on +cd +TOP_10_COUNT +hotel +del +coronado +TOP_10_COUNT +analog +computer +TOP_10_COUNT "kansas city kings" +TOP_10_COUNT "little cars" +TOP_10_COUNT the garden of eden +TOP_10_COUNT "chicago teachers union" +TOP_10_COUNT "national book award" +TOP_10_COUNT clothing optional +TOP_10_COUNT +merry +christmas +TOP_10_COUNT plus size clothing +TOP_10_COUNT +ambassador +of +italy +TOP_10_COUNT +wildlife +photography +TOP_10_COUNT tv party +TOP_10_COUNT "danube river" +TOP_10_COUNT "the actors studio" +TOP_10_COUNT "digital scanning" +TOP_10_COUNT montessori schools +TOP_10_COUNT +little +cars +TOP_10_COUNT "abilene tx" +TOP_10_COUNT "xena warrior princess" +TOP_10_COUNT stone mountain +TOP_10_COUNT +phone +cases +TOP_10_COUNT graffiti art +TOP_10_COUNT +scottsdale +az +TOP_10_COUNT "international baseball" +TOP_10_COUNT +naked +news +TOP_10_COUNT +justin +timberlake +TOP_10_COUNT ace frehley +TOP_10_COUNT +san +francisco +TOP_10_COUNT "rob halford" +TOP_10_COUNT united states constitution +TOP_10_COUNT "mid continent airport" +TOP_10_COUNT new haven +TOP_10_COUNT "blue ridge parkway" +TOP_10_COUNT "automatic writing" +TOP_10_COUNT +third +trimester +TOP_10_COUNT "ellen degeneres show" +TOP_10_COUNT +bankruptcy +laws +TOP_10_COUNT jonathan daniel +TOP_10_COUNT +william +wallace +TOP_10_COUNT +new +york +towns +TOP_10_COUNT +cartoon +network +TOP_10_COUNT +kasota +stone +TOP_10_COUNT gun magazines +TOP_10_COUNT +mid +continent +airport +TOP_10_COUNT "weather underground" +TOP_10_COUNT analog computer +TOP_10_COUNT +flow +meter +TOP_10_COUNT national book award +TOP_10_COUNT connecticut post +TOP_10_COUNT "premier wine" +TOP_10_COUNT +new +haven +TOP_10_COUNT "body painting" +TOP_10_COUNT +abilene +tx +TOP_10_COUNT "san francisco" +TOP_10_COUNT +movie +theatres +TOP_10_COUNT "perfume bottles" +TOP_10_COUNT +new +jersey +police +TOP_10_COUNT +kristanna +loken +TOP_10_COUNT +international +baseball +TOP_10_COUNT flow meter +TOP_10_COUNT +central +community +college +TOP_10_COUNT +bmw +engines +TOP_10_COUNT ventura college +TOP_10_COUNT "table lamps" +TOP_10_COUNT +naomi +wallace +TOP_10_COUNT +danube +river +TOP_10_COUNT +city +in +iran +TOP_10_COUNT "kristanna loken" +TOP_10_COUNT +carolyn +jones +TOP_10_COUNT human trafficking +TOP_10_COUNT edith wharton +TOP_10_COUNT kansas city kings +TOP_10_COUNT "david koresh" +TOP_10_COUNT robert fuller +TOP_10_COUNT +long +legs +TOP_10_COUNT naomi wallace +TOP_10_COUNT +iq +scores +TOP_10_COUNT "time for kids" +TOP_10_COUNT "japan airlines" +TOP_10_COUNT +little +shop +of +horrors +TOP_10_COUNT table lamps +TOP_10_COUNT "glass works" +TOP_10_COUNT +portrait +studio +TOP_10_COUNT +interest +only +TOP_10_COUNT "child support" +TOP_10_COUNT +region +iv +TOP_10_COUNT +all +funds +TOP_10_COUNT "term life insurance" +TOP_10_COUNT eastern mennonite university +TOP_10_COUNT spiritual warfare +TOP_10_COUNT "cured of cancer" +TOP_10_COUNT "civil war battlefields" +TOP_10_COUNT abilene tx +TOP_10_COUNT "canon powershot" +TOP_10_COUNT +car +stereo +TOP_10_COUNT "david lee roth" +TOP_10_COUNT "intramuscular injections" +TOP_10_COUNT elizabeth vargas +TOP_10_COUNT +warren +county +TOP_10_COUNT +graffiti +art +TOP_10_COUNT "kidney transplant" +TOP_10_COUNT "round table" +TOP_10_COUNT "dexter michigan" +TOP_10_COUNT new england aquarium +TOP_10_COUNT "connecticut post" +TOP_10_COUNT +penny +stocks +TOP_10_COUNT +new +york +population +TOP_10_COUNT +jungle +boy +TOP_10_COUNT "iq scores" +TOP_10_COUNT +kitchen +accessories +TOP_10_COUNT "laborers international union of north america" +TOP_10_COUNT +robert +reed +TOP_10_COUNT +virginia +usa +TOP_10_COUNT good luck +TOP_10_COUNT +bass +fishing +TOP_10_COUNT "elliott smith" +TOP_10_COUNT prayer times +TOP_10_COUNT "mercury insurance" +TOP_10_COUNT "jungle boy" +TOP_10_COUNT "printer ink" +TOP_10_COUNT milwaukee newspaper +TOP_10_COUNT missy elliott +TOP_10_COUNT ancient egypt +TOP_10_COUNT +texas +state +legislature +TOP_10_COUNT +jonathan +daniel +TOP_10_COUNT "anderson hospital" +TOP_10_COUNT "trans siberian orchestra" +TOP_10_COUNT +chicago +teachers +union +TOP_10_COUNT portrait studio +TOP_10_COUNT +old +photos +TOP_10_COUNT "robert green ingersoll" +TOP_10_COUNT +personal +chef +TOP_10_COUNT time in denver +TOP_10_COUNT "kitchen accessories" +TOP_10_COUNT +adobe +buildings +TOP_10_COUNT "george r brown convention center" +TOP_10_COUNT kitchen accessories +TOP_10_COUNT +bladder +tumor +TOP_10_COUNT "low estrogen" +TOP_10_COUNT "microsoft frontpage" +TOP_10_COUNT hempstead new york +TOP_10_COUNT color combinations +TOP_10_COUNT +ron +keel +TOP_10_COUNT antonio cromartie +TOP_10_COUNT "robert fuller" +TOP_10_COUNT +general +motors +TOP_10_COUNT +the +oregonian +newspaper +TOP_10_COUNT +the +incredibles +TOP_10_COUNT "too faced" +TOP_10_COUNT +university +of +akron +TOP_10_COUNT +developmental +delays +TOP_10_COUNT +trendy +clothes +TOP_10_COUNT +famous +quotes +TOP_10_COUNT elliott smith +TOP_10_COUNT +hurricane +wilma +TOP_10_COUNT the oregonian newspaper +TOP_10_COUNT "borders books" +TOP_10_COUNT +chicago +bulls +TOP_10_COUNT the +TOP_10_COUNT trendy clothes +TOP_10_COUNT +gun +magazines +TOP_10_COUNT "justin timberlake" +TOP_10_COUNT +human +trafficking +TOP_10_COUNT +spiritual +warfare +TOP_10_COUNT care a lot +TOP_10_COUNT playa del rey +TOP_10_COUNT "the book of life" +TOP_10_COUNT little cars +TOP_10_COUNT "centerville high school" +TOP_10_COUNT "georgia public broadcasting" +TOP_10_COUNT bass fishing +TOP_10_COUNT "human trafficking" +TOP_10_COUNT +open +source +software +TOP_10_COUNT "missy elliott" +TOP_10_COUNT dexter michigan +TOP_10_COUNT boulder city nevada +TOP_10_COUNT +miami +dade +college +TOP_10_COUNT critical care medicine +TOP_10_COUNT +john +wilkes +booth +TOP_10_COUNT "pocket pc" +TOP_10_COUNT +animal +rights +TOP_10_COUNT "playa del rey" +TOP_10_COUNT "cheap hotels" +TOP_10_COUNT +italian +translation +TOP_10_COUNT "plus size clothing" +TOP_10_COUNT +dexter +michigan +TOP_10_COUNT niceville high school +TOP_10_COUNT +japan +airlines +TOP_10_COUNT +columbia +university +TOP_10_COUNT lord of the rings +TOP_10_COUNT robert reed +TOP_10_COUNT +home +business +TOP_10_COUNT "law dictionary" +TOP_10_COUNT "hurricane wilma" +TOP_10_COUNT freelance work +TOP_10_COUNT new jersey police +TOP_10_COUNT +the +progressive +TOP_10_COUNT david kim +TOP_10_COUNT "ace frehley" +TOP_10_COUNT +john +wellington +TOP_10_COUNT "sore muscles" +TOP_10_COUNT +low +estrogen +TOP_10_COUNT "music stands" +TOP_10_COUNT +ventura +college +TOP_10_COUNT +padre +island +TOP_10_COUNT "fluid power" +TOP_10_COUNT the news journal +TOP_10_COUNT +heart +disease +TOP_10_COUNT business consultants +TOP_10_COUNT little shop of horrors +TOP_10_COUNT "ventura college" +TOP_10_COUNT +avon +school +TOP_10_COUNT "developmental delays" +TOP_10_COUNT "pump it up" +TOP_10_COUNT jamie murray +TOP_10_COUNT +glass +works +TOP_10_COUNT "new york times best sellers list" +TOP_10_COUNT "john wellington" +TOP_10_COUNT the preakness +TOP_10_COUNT +kansas +city +kings +TOP_10_COUNT "hawk mountain" +TOP_10_COUNT hotel del coronado +TOP_10_COUNT microsoft frontpage +TOP_10_COUNT danube river +TOP_10_COUNT interracial love +TOP_10_COUNT "little brown jug" +TOP_10_COUNT "sesame street" +TOP_10_COUNT +business +consultants +TOP_10_COUNT "national security cutter" +TOP_10_COUNT +trans +siberian +orchestra +TOP_10_COUNT omaha symphony +TOP_10_COUNT +sky +news +TOP_10_COUNT "philadelphia phillies" +TOP_10_COUNT +edith +head +TOP_10_COUNT automatic writing +TOP_10_COUNT +the +breakfast +club +TOP_10_COUNT "new york population" +TOP_10_COUNT +zip +code +TOP_10_COUNT +true +religion +TOP_10_COUNT robert green ingersoll +TOP_10_COUNT "jefferson davis high school" +TOP_10_COUNT texas death row +TOP_10_COUNT bladder tumor +TOP_10_COUNT +perfume +bottles +TOP_10_COUNT "antonio cromartie" +TOP_10_COUNT "costume designers" +TOP_10_COUNT mood swings +TOP_10_COUNT +milan +tennessee +TOP_10_COUNT personal chef +TOP_10_COUNT +roundabout +theatre +TOP_10_COUNT justin timberlake +TOP_10_COUNT +calvin +klein +TOP_10_COUNT naked news +TOP_10_COUNT usb hub +TOP_10_COUNT "back surgery" +TOP_10_COUNT carolyn jones +TOP_10_COUNT "montgomery college" +TOP_10_COUNT +kidney +transplant +TOP_10_COUNT walk the line +TOP_10_COUNT +civil +war +battlefields +TOP_10_COUNT "interracial love" +TOP_10_COUNT "foam mattress" +TOP_10_COUNT +food +carts +TOP_10_COUNT "aishwarya rai" +TOP_10_COUNT +round +table +TOP_10_COUNT +becoming +a +widow +TOP_10_COUNT term life insurance +TOP_10_COUNT +worcester +state +college +TOP_10_COUNT +automatic +writing +TOP_10_COUNT "evening wear" +TOP_10_COUNT +lord +of +the +rings +TOP_10_COUNT +time +for +kids +TOP_10_COUNT +danbury +ct +TOP_10_COUNT +google +satellite +TOP_10_COUNT +consumer +affairs +TOP_10_COUNT +john +donne +TOP_10_COUNT +binghamton +new +york +TOP_10_COUNT "chicken noodle soup" +TOP_10_COUNT "tennis elbow" +TOP_10_COUNT john donne +TOP_10_COUNT third trimester +TOP_10_COUNT montgomery college +TOP_10_COUNT "freedom tower" +TOP_10_COUNT +ace +frehley +TOP_10_COUNT wisconsin attorney general +TOP_10_COUNT +corpus +christi +tx +TOP_10_COUNT trans siberian orchestra +TOP_10_COUNT "catholic answers" +TOP_10_COUNT "lost episode" +TOP_10_COUNT +water +filters +TOP_10_COUNT "bass fishing" +TOP_10_COUNT +anderson +hospital +TOP_10_COUNT books on cd +TOP_10_COUNT the english restoration +TOP_10_COUNT +antonio +cromartie +TOP_10_COUNT game downloads +TOP_10_COUNT +intramuscular +injections +TOP_10_COUNT +toxic +encephalopathy +TOP_10_COUNT "books on cd" +TOP_10_COUNT fluid power +TOP_10_COUNT +the +book +of +life +TOP_10_COUNT "state of louisiana" +TOP_10_COUNT true religion +TOP_10_COUNT "york photo" +TOP_10_COUNT "decorative windows" +TOP_10_COUNT adobe buildings +TOP_10_COUNT +the +actors +studio +TOP_10_COUNT "business consultants" +TOP_10_COUNT oxford dictionary +TOP_10_COUNT most improved player +TOP_10_COUNT "st petersburg high school" +TOP_10_COUNT centerville high school +TOP_10_COUNT "bankruptcy laws" +TOP_10_COUNT +national +book +award +TOP_10_COUNT +david +koresh +TOP_10_COUNT jaguar x type +TOP_10_COUNT david koresh +TOP_10_COUNT "hempstead new york" +TOP_10_COUNT "color combinations" +TOP_10_COUNT +texas +death +row +TOP_10_COUNT "ford modeling agency" +TOP_10_COUNT weather underground +TOP_10_COUNT intramuscular injections +TOP_10_COUNT animal rights +TOP_10_COUNT +evening +wear +TOP_10_COUNT glass works +TOP_10_COUNT "the british embassy" +TOP_10_COUNT google satellite +TOP_10_COUNT "food carts" +TOP_10_COUNT +centerville +high +school +TOP_10_COUNT "bladder tumor" +TOP_10_COUNT +pocket +pc +TOP_10_COUNT open source software +TOP_10_COUNT +robert +fuller +TOP_10_COUNT law dictionary +TOP_10_COUNT "time in denver" +TOP_10_COUNT sleep study +TOP_10_COUNT camp claiborne +TOP_10_COUNT ron keel +TOP_10_COUNT home loan +TOP_10_COUNT "clothing optional" +TOP_10_COUNT "critical care medicine" +TOP_10_COUNT virginia usa +TOP_10_COUNT worcester state college +TOP_10_COUNT evening wear +TOP_10_COUNT fatherless children +TOP_10_COUNT "wildlife photography" +TOP_10_COUNT +akron +beacon +TOP_10_COUNT +music +stands +TOP_10_COUNT "university of akron" +TOP_10_COUNT "akron beacon" +TOP_10_COUNT "domain names" +TOP_10_COUNT +the +movement +TOP_10_COUNT back surgery +TOP_10_COUNT ambassador of italy +TOP_10_COUNT "secretary of state" +TOP_10_COUNT shih tzu +TOP_10_COUNT "american academy of child and adolescent psychiatry" +TOP_10_COUNT +secretary +of +state +TOP_10_COUNT "sarah fisher" +TOP_10_COUNT "canadian real estate" +TOP_10_COUNT mushroom kingdom +TOP_10_COUNT kidney transplant +TOP_10_COUNT "the movement" +TOP_10_COUNT "corpus christi tx" +TOP_10_COUNT +mercury +insurance +TOP_10_COUNT +philadelphia +phillies +TOP_10_COUNT +time +in +denver +TOP_10_COUNT "flow meter" +TOP_10_COUNT texas state legislature +TOP_10_COUNT "home business" +TOP_10_COUNT "debra jo rupp" +TOP_10_COUNT internet fraud +TOP_10_COUNT heart disease +TOP_10_COUNT "bowel obstruction" +TOP_10_COUNT "los angeles daily news" +TOP_10_COUNT binghamton new york +TOP_10_COUNT jefferson davis high school +TOP_10_COUNT "cherry blossom" +TOP_10_COUNT aishwarya rai +TOP_10_COUNT +farmers +almanac +TOP_10_COUNT the incredibles +TOP_10_COUNT +borders +books +TOP_10_COUNT "naomi wallace" +TOP_10_COUNT +cheap +hotels +TOP_10_COUNT "open source software" +TOP_10_COUNT +chicken +coop +TOP_10_COUNT "trendy clothes" +TOP_10_COUNT +tennis +elbow +TOP_10_COUNT cartoon network +TOP_10_COUNT seal pictures +TOP_10_COUNT "fatherless children" +TOP_10_COUNT +medal +of +honor +TOP_10_COUNT +battle +of +the +bulge +TOP_10_COUNT times union +TOP_10_COUNT +american +funds +TOP_10_COUNT "the breakfast club" +TOP_10_COUNT edith head +TOP_10_COUNT interest only +TOP_10_COUNT "danbury ct" +TOP_10_COUNT "car stereo" +TOP_10_COUNT air mattress +TOP_10_COUNT "mercedes benz" +TOP_10_COUNT +body +painting +TOP_10_COUNT "ambassador of italy" +TOP_10_COUNT +united +states +constitution +TOP_10_COUNT corpus christi tx +TOP_10_COUNT +john +klein +TOP_10_COUNT pump it up +TOP_10_COUNT big boss man +TOP_10_COUNT "farmers almanac" +TOP_10_COUNT +"the who" +uk +TOP_10_COUNT power rangers ninja storm +TOP_10_COUNT "personal chef" +TOP_10_COUNT "walk the line" +TOP_10_COUNT +hsbc +bank +TOP_10_COUNT +game +downloads +TOP_10_COUNT "milan tennessee" +TOP_10_COUNT david thornton +TOP_10_COUNT merry christmas +TOP_10_COUNT "people having sex" +TOP_10_COUNT "law school rankings" +TOP_10_COUNT "chicago public schools" +TOP_10_COUNT "american funds" +TOP_10_COUNT army reserve +TOP_10_COUNT new york towns +TOP_10_COUNT international baseball +TOP_10_COUNT "texas death row" +TOP_10_COUNT "medal of honor" +TOP_10_COUNT "most improved player" +TOP_10_COUNT "penny stocks" +TOP_10_COUNT +aishwarya +rai +TOP_10_COUNT sesame street +TOP_10_COUNT "canary bird" +TOP_10_COUNT +montessori +schools +TOP_10_COUNT old photos +TOP_10_COUNT +power +rangers +ninja +storm +TOP_10_COUNT water filters +TOP_10_COUNT "true religion" +TOP_10_COUNT +york +photo +TOP_10_COUNT "hot springs south dakota" +TOP_10_COUNT "new york towns" +TOP_10_COUNT avon school +TOP_10_COUNT "prayer times" +TOP_10_COUNT +eastern +mennonite +university +TOP_10_COUNT +georgia +public +broadcasting +TOP_10_COUNT +ancient +egypt +TOP_10_COUNT personal loan +TOP_10_COUNT laborers international union of north america +TOP_10_COUNT +fluid +power +TOP_10_COUNT the globe newspaper +TOP_10_COUNT +music +videos +TOP_10_COUNT +zion +national +park +TOP_10_COUNT columbia university +TOP_10_COUNT "new haven" +TOP_10_COUNT "padre island" +TOP_10_COUNT "region iv" +TOP_10_COUNT helen of troy +TOP_10_COUNT +elizabeth +vargas +TOP_10_COUNT "university of washington" +TOP_10_COUNT +french +culinary +institute +TOP_10_COUNT +american +academy +of +child +and +adolescent +psychiatry +TOP_10_COUNT foam mattress +TOP_10_COUNT "virginia usa" +TOP_10_COUNT +connecticut +historical +society +TOP_10_COUNT borders books +TOP_10_COUNT +new +york +times +best +sellers +list +TOP_10_COUNT mercedes benz +TOP_10_COUNT "niceville high school" +TOP_10_COUNT +world +bank +president +TOP_10_COUNT +good +luck +TOP_10_COUNT rob halford +TOP_10_COUNT kasota stone +TOP_10_COUNT "adobe buildings" +TOP_10_COUNT rolex watches +TOP_10_COUNT the british embassy +TOP_10_COUNT "jamie murray" +TOP_10_COUNT +the +garden +of +eden +TOP_10_COUNT perfume bottles +TOP_10_COUNT city in iran +TOP_10_COUNT "phone cases" +TOP_10_COUNT king kalakaua +TOP_10_COUNT "chicken coop" +TOP_10_COUNT "portrait studio" +TOP_10_COUNT +cognitive +impairment +TOP_10_COUNT "interest only" +TOP_10_COUNT "georgian architecture" +TOP_10_COUNT +microsoft +frontpage +TOP_10_COUNT +oxford +dictionary +TOP_10_COUNT too faced +TOP_10_COUNT little brown jug +TOP_10_COUNT world bank president +TOP_10_COUNT +robert +green +ingersoll +TOP_10_COUNT +us +coast +guard +TOP_10_COUNT hawk mountain +TOP_10_COUNT phone cases +TOP_10_COUNT +sleep +study +TOP_10_COUNT +freelance +work +TOP_10_COUNT medal of honor +TOP_10_COUNT mid continent airport +TOP_10_COUNT +st +petersburg +high +school +TOP_10_COUNT +ear +ache +TOP_10_COUNT jungle boy +TOP_10_COUNT home business +TOP_10_COUNT +canadian +real +estate +TOP_10_COUNT +bowel +obstruction +TOP_10_COUNT +color +combinations +TOP_10_COUNT "montessori schools" +TOP_10_COUNT +decorative +windows +TOP_10_COUNT "milwaukee newspaper" +TOP_10_COUNT immigration to mexico +TOP_10_COUNT +ellen +degeneres +show +TOP_10_COUNT +griffith +observatory +TOP_10_COUNT university of akron +TOP_10_COUNT +western +herald +TOP_10_COUNT "chicago bulls" +TOP_10_COUNT +state +of +louisiana +TOP_10_COUNT +hempstead +new +york +TOP_10_COUNT american academy of child and adolescent psychiatry +TOP_10_COUNT +critical +care +medicine +TOP_10_COUNT american funds +TOP_10_COUNT "italian translation" +TOP_10_COUNT +wisconsin +attorney +general +TOP_10_COUNT ford modeling agency +TOP_10_COUNT ear ache +TOP_10_COUNT georgia public broadcasting +TOP_10_COUNT +david +lee +roth +TOP_10_COUNT +ugly +people +TOP_10_COUNT "general motors" +TOP_10_COUNT "long legs" +TOP_10_COUNT george r brown convention center +TOP_10_COUNT "critical care nurse" +TOP_10_COUNT +west +palm +beach +florida +TOP_10_COUNT "freelance work" +TOP_10_COUNT "city in iran" +TOP_10_COUNT "power rangers ninja storm" +TOP_10_COUNT +stone +mountain +TOP_10_COUNT "tallest trees in the world" +TOP_10_COUNT +the +globe +newspaper +TOP_10_COUNT "jonathan daniel" +TOP_10_COUNT warren county +TOP_10_COUNT milan tennessee +TOP_10_COUNT +usb +hub +TOP_10_COUNT "internet fraud" +TOP_10_COUNT +prayer +times +TOP_10_COUNT "the daily breeze" +TOP_10_COUNT xena warrior princess +TOP_10_COUNT "omaha symphony" +TOP_10_COUNT "napa auto parts" +TOP_10_COUNT ford parts +TOP_10_COUNT west palm beach florida +TOP_10_COUNT people having sex +TOP_10_COUNT national security cutter +TOP_10_COUNT iq scores +TOP_10_COUNT "vicenza italy" +TOP_10_COUNT canon powershot +TOP_10_COUNT +elise +neal +TOP_10_COUNT "texas state legislature" +TOP_10_COUNT "avon school" +TOP_10_COUNT +tv +party +TOP_10_COUNT the breakfast club +TOP_10_COUNT "john klein" +TOP_10_COUNT "miami dade college" +TOP_10_COUNT "binghamton new york" +TOP_10_COUNT +foam +mattress +TOP_10_COUNT +missy +elliott +TOP_10_COUNT "carolyn jones" +TOP_10_COUNT "immigration to mexico" +TOP_10_COUNT domain names +TOP_10_COUNT +napa +auto +parts +TOP_10_COUNT all funds +TOP_10_COUNT "times union" +TOP_10_COUNT "shih tzu" +TOP_10_COUNT printer ink +TOP_10_COUNT round table +TOP_10_COUNT +false +prophets +TOP_10_COUNT +walk +the +line +TOP_10_COUNT "william wallace" +TOP_10_COUNT "old photos" +TOP_10_COUNT canary bird +TOP_10_COUNT +premier +wine +TOP_10_COUNT "lord of the rings" +TOP_10_COUNT "robert reed" +TOP_10_COUNT "animal rights" +TOP_10_COUNT "famous quotes" +TOP_10_COUNT "hsbc bank" +TOP_10_COUNT cherry blossom +TOP_10_COUNT "worcester state college" +TOP_10_COUNT becoming a widow +TOP_10_COUNT chicago teachers union +TOP_10_COUNT "king kalakaua" +TOP_10_COUNT "zip code" +TOP_10_COUNT "bmw engines" +TOP_10_COUNT "the preakness" +TOP_10_COUNT padre island +TOP_10_COUNT "cognitive impairment" +TOP_10_COUNT +canon +powershot +TOP_10_COUNT pocket pc +TOP_10_COUNT "edith wharton" +TOP_10_COUNT "david kim" +TOP_10_COUNT wildlife photography +TOP_10_COUNT tom welling +TOP_10_COUNT miami dade college +TOP_10_COUNT decorative windows +TOP_10_COUNT costume designers +TOP_10_COUNT +law +school +rankings +TOP_10_COUNT +jefferson +davis +high +school +TOP_10_COUNT farmers almanac +TOP_10_COUNT john wellington +TOP_10_COUNT +little +brown +jug +TOP_10_COUNT +rob +halford +TOP_10_COUNT penny stocks +TOP_10_COUNT +chicago +public +schools +TOP_10_COUNT +critical +care +nurse +TOP_10_COUNT "john donne" +TOP_10_COUNT +debra +jo +rupp +TOP_10_COUNT +new +england +aquarium +TOP_10_COUNT movie theatres +TOP_10_COUNT +hot +springs +south +dakota +TOP_10_COUNT western herald +TOP_10_COUNT "music videos" +TOP_10_COUNT +weather +underground +TOP_10_COUNT "rolex watches" +TOP_10_COUNT sky news +TOP_10_COUNT danbury ct +TOP_10_COUNT "central community college" +TOP_10_COUNT ugly people +TOP_10_COUNT +edith +wharton +TOP_10_COUNT "toxic encephalopathy" +TOP_10_COUNT "warren county" +TOP_10_COUNT zion national park +TOP_10_COUNT +freedom +tower +TOP_10_COUNT long legs +TOP_10_COUNT "consumer affairs" +TOP_10_COUNT sore muscles +TOP_10_COUNT scottsdale az +TOP_10_COUNT "columbia university" +TOP_10_COUNT +american +south +TOP_10_COUNT +connecticut +post +TOP_10_COUNT connecticut historical society +TOP_10_COUNT cured of cancer +TOP_10_COUNT +care +a +lot +TOP_10_COUNT +pump +it +up +TOP_10_COUNT "john wilkes booth" +TOP_10_COUNT "calvin klein" +TOP_10_COUNT "game downloads" +TOP_10_COUNT critical care nurse +TOP_10_COUNT +the +english +restoration +TOP_10_COUNT "united states constitution" +TOP_10_COUNT +clothing +optional +TOP_10_COUNT +printer +ink +TOP_10_COUNT "sky news" +TOP_10_COUNT "the oregonian newspaper" +TOP_10_COUNT "seal pictures" +TOP_10_COUNT "zion national park" +TOP_10_COUNT "becoming a widow" +TOP_10_COUNT general motors +TOP_10_COUNT the movement +TOP_10_COUNT "ron keel" +TOP_10_COUNT graduate management admission test +TOP_10_COUNT state of louisiana +TOP_10_COUNT +internet +fraud +TOP_10_COUNT +table +lamps +TOP_10_COUNT french culinary institute +TOP_10_COUNT us coast guard +TOP_10_COUNT +reading +museum +TOP_10_COUNT "us coast guard" +TOP_10_COUNT "ancient egypt" +TOP_10_COUNT cheap hotels +TOP_10_COUNT +jamie +murray +TOP_10_COUNT +mood +swings +TOP_10_COUNT blue ridge parkway +TOP_10_COUNT music videos +TOP_10_COUNT "helen of troy" +TOP_10_COUNT david lee roth +TOP_10_COUNT toxic encephalopathy +TOP_10_COUNT "graffiti art" +TOP_10_COUNT catholic answers +TOP_10_COUNT who dares wins +TOP_10_COUNT "health literacy" +TOP_10_COUNT +niceville +high +school +- Run #3 of 3 +TOP_10_COUNT philadelphia phillies +TOP_10_COUNT hurricane wilma +TOP_10_COUNT sarah fisher +TOP_10_COUNT +boulder +city +nevada +TOP_10_COUNT "ugly people" +TOP_10_COUNT +times +union +TOP_10_COUNT +seal +pictures +TOP_10_COUNT +mercedes +benz +TOP_10_COUNT car stereo +TOP_10_COUNT +omaha +symphony +TOP_10_COUNT +the +news +journal +TOP_10_COUNT elise neal +TOP_10_COUNT +interracial +love +TOP_10_COUNT canadian real estate +TOP_10_COUNT "personal loan" +TOP_10_COUNT barrett jackson +TOP_10_COUNT +jaguar +x +type +TOP_10_COUNT +personal +loan +TOP_10_COUNT +laborers +international +union +of +north +america +TOP_10_COUNT +fatherless +children +TOP_10_COUNT "tv party" +TOP_10_COUNT york photo +TOP_10_COUNT "sleep study" +TOP_10_COUNT italian translation +TOP_10_COUNT developmental delays +TOP_10_COUNT +too +faced +TOP_10_COUNT "eastern mennonite university" +TOP_10_COUNT +law +dictionary +TOP_10_COUNT "reading museum" +TOP_10_COUNT los angeles daily news +TOP_10_COUNT music stands +TOP_10_COUNT +health +literacy +TOP_10_COUNT +los +angeles +daily +news +TOP_10_COUNT "the news journal" +TOP_10_COUNT +montgomery +college +TOP_10_COUNT +national +security +cutter +TOP_10_COUNT freedom tower +TOP_10_COUNT "david thornton" +TOP_10_COUNT "mood swings" +TOP_10_COUNT san francisco +TOP_10_COUNT false prophets +TOP_10_COUNT "west palm beach florida" +TOP_10_COUNT +digital +scanning +TOP_10_COUNT "all funds" +TOP_10_COUNT +graduate +management +admission +test +TOP_10_COUNT central community college +TOP_10_COUNT +the +daily +breeze +TOP_10_COUNT civil war battlefields +TOP_10_COUNT "bismarck state college" +TOP_10_COUNT +child +support +TOP_10_COUNT +costume +designers +TOP_10_COUNT william wallace +TOP_10_COUNT calvin klein +TOP_10_COUNT "little shop of horrors" +TOP_10_COUNT "elizabeth vargas" +TOP_10_COUNT +most +improved +player +TOP_10_COUNT "naked news" +TOP_10_COUNT "boulder city nevada" +TOP_10_COUNT "kenosha wisconsin" +TOP_10_COUNT hot springs south dakota +TOP_10_COUNT "cartoon network" +TOP_10_COUNT vicenza italy +TOP_10_COUNT +camp +claiborne +TOP_10_COUNT +canary +bird +TOP_10_COUNT +shih +tzu +TOP_10_COUNT +xena +warrior +princess +TOP_10_COUNT +blue +ridge +parkway +TOP_10_COUNT "roundabout theatre" +TOP_10_COUNT +term +life +insurance +TOP_10_COUNT +david +thornton +TOP_10_COUNT "american south" +TOP_10_COUNT "the globe newspaper" +TOP_10_COUNT "battle of the bulge" +TOP_10_COUNT new york population +TOP_10_COUNT "heart disease" +TOP_10_COUNT griffith observatory +TOP_10_COUNT american south +TOP_10_COUNT john klein +TOP_10_COUNT +cherry +blossom +TOP_10_COUNT "world bank president" +TOP_10_COUNT child support +TOP_10_COUNT "big boss man" +TOP_10_COUNT "stone mountain" +TOP_10_COUNT reading museum +TOP_10_COUNT +ford +parts +TOP_10_COUNT cognitive impairment +TOP_10_COUNT new york times best sellers list +TOP_10_COUNT "care a lot" +TOP_10_COUNT "hotel del coronado" +TOP_10_COUNT consumer affairs +TOP_10_COUNT "good luck" +TOP_10_COUNT "new england aquarium" +TOP_10_COUNT +sore +muscles +TOP_10_COUNT +air +mattress +TOP_10_COUNT body painting +TOP_10_COUNT "the progressive" +TOP_10_COUNT +who +dares +wins +TOP_10_COUNT the progressive +TOP_10_COUNT "western herald" +TOP_10_COUNT kristanna loken +TOP_10_COUNT mercury insurance +TOP_10_COUNT +back +surgery +TOP_10_COUNT "wisconsin attorney general" +TOP_10_COUNT bmw engines +TOP_10_COUNT +sesame +street +TOP_10_COUNT "google satellite" +TOP_10_COUNT +people +having +sex +TOP_10_COUNT health literacy +TOP_10_COUNT "water filters" +TOP_10_COUNT +playa +del +rey +TOP_10_COUNT +mushroom +kingdom +TOP_10_COUNT region iv +TOP_10_COUNT +cured +of +cancer +TOP_10_COUNT +ford +modeling +agency +TOP_10_COUNT +catholic +answers +TOP_10_COUNT anderson hospital +TOP_10_COUNT time for kids +TOP_10_COUNT +domain +names +TOP_10_COUNT "graduate management admission test" +TOP_10_COUNT "movie theatres" +TOP_10_COUNT "the incredibles" +TOP_10_COUNT "spiritual warfare" +TOP_10_COUNT chicago bulls +TOP_10_COUNT "camp claiborne" +TOP_10_COUNT +hawk +mountain +TOP_10_COUNT "tom welling" +TOP_10_COUNT "kasota stone" +TOP_10_COUNT akron beacon +TOP_10_COUNT belcourt castle +TOP_10_COUNT low estrogen +TOP_10_COUNT "air mattress" +TOP_10_COUNT tallest trees in the world +TOP_10_COUNT +lost +episode +TOP_10_COUNT chicken noodle soup +TOP_10_COUNT "new jersey police" +TOP_10_COUNT roundabout theatre +TOP_10_COUNT jesus as a child +TOP_10_COUNT university of washington +TOP_10_COUNT +tom +welling +TOP_10_COUNT +tallest +trees +in +the +world +TOP_10_COUNT "gun magazines" +TOP_10_COUNT bankruptcy laws +TOP_10_COUNT "edith head" +TOP_10_COUNT "barrett jackson" +TOP_10_COUNT "false prophets" +TOP_10_COUNT japan airlines +TOP_10_COUNT +the +preakness +TOP_10_COUNT st petersburg high school +TOP_10_COUNT +vicenza +italy +TOP_10_COUNT "the garden of eden" +TOP_10_COUNT "french culinary institute" +TOP_10_COUNT battle of the bulge +TOP_10_COUNT "merry christmas" +TOP_10_COUNT +sarah +fisher +TOP_10_COUNT "elise neal" +TOP_10_COUNT digital scanning +TOP_10_COUNT food carts +TOP_10_COUNT "home loan" +TOP_10_COUNT +elliott +smith +TOP_10_COUNT john wilkes booth +TOP_10_COUNT lost episode +TOP_10_COUNT bowel obstruction +TOP_10_COUNT +helen +of +troy +TOP_10_COUNT "who dares wins" +TOP_10_COUNT bismarck state college +TOP_10_COUNT premier wine +TOP_10_COUNT tennis elbow +TOP_10_COUNT "griffith observatory" +TOP_10_COUNT +king +kalakaua +TOP_10_COUNT "ford parts" +TOP_10_COUNT +immigration +to +mexico +TOP_10_COUNT the daily breeze +TOP_10_COUNT +home +loan +TOP_10_COUNT "third trimester" +TOP_10_COUNT hsbc bank +TOP_10_COUNT +david +kim +TOP_10_COUNT napa auto parts +TOP_10_COUNT +jesus +as +a +child +TOP_10_COUNT +belcourt +castle +TOP_10_COUNT ellen degeneres show +TOP_10_COUNT "usb hub" +TOP_10_COUNT +chicken +noodle +soup +TOP_10_COUNT the book of life +TOP_10_COUNT the actors studio +TOP_10_COUNT chicken coop +TOP_10_COUNT +milwaukee +newspaper +TOP_10_COUNT "ear ache" +TOP_10_COUNT "jaguar x type" +TOP_10_COUNT +big +boss +man +TOP_10_COUNT secretary of state +TOP_10_COUNT +barrett +jackson +TOP_10_COUNT debra jo rupp +TOP_10_COUNT law school rankings +TOP_10_COUNT zip code +TOP_10_COUNT "scottsdale az" +TOP_10_COUNT "jesus as a child" +TOP_10_COUNT +rolex +watches +TOP_10_COUNT kenosha wisconsin +TOP_10_COUNT +kenosha +wisconsin +TOP_10_COUNT "oxford dictionary" +TOP_10_COUNT chicago public schools +TOP_10_COUNT +bismarck +state +college +TOP_10_COUNT "belcourt castle" +TOP_10_COUNT +army +reserve +TOP_10_COUNT +plus +size +clothing +TOP_10_COUNT "mushroom kingdom" +TOP_10_COUNT "army reserve" +TOP_10_COUNT +the +british +embassy +TOP_10_COUNT "analog computer" +TOP_10_COUNT famous quotes +TOP_10_COUNT +georgian +architecture +TOP_10_COUNT georgian architecture +TOP_10_COUNT "the english restoration" +TOP_10_COUNT +george +r +brown +convention +center +TOP_10_COUNT +university +of +washington +TOP_10_COUNT "connecticut historical society" +TOP_10_COUNT +books +on +cd +TOP_10_COUNT +hotel +del +coronado +TOP_10_COUNT +analog +computer +TOP_10_COUNT "kansas city kings" +TOP_10_COUNT "little cars" +TOP_10_COUNT the garden of eden +TOP_10_COUNT "chicago teachers union" +TOP_10_COUNT "national book award" +TOP_10_COUNT clothing optional +TOP_10_COUNT +merry +christmas +TOP_10_COUNT plus size clothing +TOP_10_COUNT +ambassador +of +italy +TOP_10_COUNT +wildlife +photography +TOP_10_COUNT tv party +TOP_10_COUNT "danube river" +TOP_10_COUNT "the actors studio" +TOP_10_COUNT "digital scanning" +TOP_10_COUNT montessori schools +TOP_10_COUNT +little +cars +TOP_10_COUNT "abilene tx" +TOP_10_COUNT "xena warrior princess" +TOP_10_COUNT stone mountain +TOP_10_COUNT +phone +cases +TOP_10_COUNT graffiti art +TOP_10_COUNT +scottsdale +az +TOP_10_COUNT "international baseball" +TOP_10_COUNT +naked +news +TOP_10_COUNT +justin +timberlake +TOP_10_COUNT ace frehley +TOP_10_COUNT +san +francisco +TOP_10_COUNT "rob halford" +TOP_10_COUNT united states constitution +TOP_10_COUNT "mid continent airport" +TOP_10_COUNT new haven +TOP_10_COUNT "blue ridge parkway" +TOP_10_COUNT "automatic writing" +TOP_10_COUNT +third +trimester +TOP_10_COUNT "ellen degeneres show" +TOP_10_COUNT +bankruptcy +laws +TOP_10_COUNT jonathan daniel +TOP_10_COUNT +william +wallace +TOP_10_COUNT +new +york +towns +TOP_10_COUNT +cartoon +network +TOP_10_COUNT +kasota +stone +TOP_10_COUNT gun magazines +TOP_10_COUNT +mid +continent +airport +TOP_10_COUNT "weather underground" +TOP_10_COUNT analog computer +TOP_10_COUNT +flow +meter +TOP_10_COUNT national book award +TOP_10_COUNT connecticut post +TOP_10_COUNT "premier wine" +TOP_10_COUNT +new +haven +TOP_10_COUNT "body painting" +TOP_10_COUNT +abilene +tx +TOP_10_COUNT "san francisco" +TOP_10_COUNT +movie +theatres +TOP_10_COUNT "perfume bottles" +TOP_10_COUNT +new +jersey +police +TOP_10_COUNT +kristanna +loken +TOP_10_COUNT +international +baseball +TOP_10_COUNT flow meter +TOP_10_COUNT +central +community +college +TOP_10_COUNT +bmw +engines +TOP_10_COUNT ventura college +TOP_10_COUNT "table lamps" +TOP_10_COUNT +naomi +wallace +TOP_10_COUNT +danube +river +TOP_10_COUNT +city +in +iran +TOP_10_COUNT "kristanna loken" +TOP_10_COUNT +carolyn +jones +TOP_10_COUNT human trafficking +TOP_10_COUNT edith wharton +TOP_10_COUNT kansas city kings +TOP_10_COUNT "david koresh" +TOP_10_COUNT robert fuller +TOP_10_COUNT +long +legs +TOP_10_COUNT naomi wallace +TOP_10_COUNT +iq +scores +TOP_10_COUNT "time for kids" +TOP_10_COUNT "japan airlines" +TOP_10_COUNT +little +shop +of +horrors +TOP_10_COUNT table lamps +TOP_10_COUNT "glass works" +TOP_10_COUNT +portrait +studio +TOP_10_COUNT +interest +only +TOP_10_COUNT "child support" +TOP_10_COUNT +region +iv +TOP_10_COUNT +all +funds +TOP_10_COUNT "term life insurance" +TOP_10_COUNT eastern mennonite university +TOP_10_COUNT spiritual warfare +TOP_10_COUNT "cured of cancer" +TOP_10_COUNT "civil war battlefields" +TOP_10_COUNT abilene tx +TOP_10_COUNT "canon powershot" +TOP_10_COUNT +car +stereo +TOP_10_COUNT "david lee roth" +TOP_10_COUNT "intramuscular injections" +TOP_10_COUNT elizabeth vargas +TOP_10_COUNT +warren +county +TOP_10_COUNT +graffiti +art +TOP_10_COUNT "kidney transplant" +TOP_10_COUNT "round table" +TOP_10_COUNT "dexter michigan" +TOP_10_COUNT new england aquarium +TOP_10_COUNT "connecticut post" +TOP_10_COUNT +penny +stocks +TOP_10_COUNT +new +york +population +TOP_10_COUNT +jungle +boy +TOP_10_COUNT "iq scores" +TOP_10_COUNT +kitchen +accessories +TOP_10_COUNT "laborers international union of north america" +TOP_10_COUNT +robert +reed +TOP_10_COUNT +virginia +usa +TOP_10_COUNT good luck +TOP_10_COUNT +bass +fishing +TOP_10_COUNT "elliott smith" +TOP_10_COUNT prayer times +TOP_10_COUNT "mercury insurance" +TOP_10_COUNT "jungle boy" +TOP_10_COUNT "printer ink" +TOP_10_COUNT milwaukee newspaper +TOP_10_COUNT missy elliott +TOP_10_COUNT ancient egypt +TOP_10_COUNT +texas +state +legislature +TOP_10_COUNT +jonathan +daniel +TOP_10_COUNT "anderson hospital" +TOP_10_COUNT "trans siberian orchestra" +TOP_10_COUNT +chicago +teachers +union +TOP_10_COUNT portrait studio +TOP_10_COUNT +old +photos +TOP_10_COUNT "robert green ingersoll" +TOP_10_COUNT +personal +chef +TOP_10_COUNT time in denver +TOP_10_COUNT "kitchen accessories" +TOP_10_COUNT +adobe +buildings +TOP_10_COUNT "george r brown convention center" +TOP_10_COUNT kitchen accessories +TOP_10_COUNT +bladder +tumor +TOP_10_COUNT "low estrogen" +TOP_10_COUNT "microsoft frontpage" +TOP_10_COUNT hempstead new york +TOP_10_COUNT color combinations +TOP_10_COUNT +ron +keel +TOP_10_COUNT antonio cromartie +TOP_10_COUNT "robert fuller" +TOP_10_COUNT +general +motors +TOP_10_COUNT +the +oregonian +newspaper +TOP_10_COUNT +the +incredibles +TOP_10_COUNT "too faced" +TOP_10_COUNT +university +of +akron +TOP_10_COUNT +developmental +delays +TOP_10_COUNT +trendy +clothes +TOP_10_COUNT +famous +quotes +TOP_10_COUNT elliott smith +TOP_10_COUNT +hurricane +wilma +TOP_10_COUNT the oregonian newspaper +TOP_10_COUNT "borders books" +TOP_10_COUNT +chicago +bulls +TOP_10_COUNT the +TOP_10_COUNT trendy clothes +TOP_10_COUNT +gun +magazines +TOP_10_COUNT "justin timberlake" +TOP_10_COUNT +human +trafficking +TOP_10_COUNT +spiritual +warfare +TOP_10_COUNT care a lot +TOP_10_COUNT playa del rey +TOP_10_COUNT "the book of life" +TOP_10_COUNT little cars +TOP_10_COUNT "centerville high school" +TOP_10_COUNT "georgia public broadcasting" +TOP_10_COUNT bass fishing +TOP_10_COUNT "human trafficking" +TOP_10_COUNT +open +source +software +TOP_10_COUNT "missy elliott" +TOP_10_COUNT dexter michigan +TOP_10_COUNT boulder city nevada +TOP_10_COUNT +miami +dade +college +TOP_10_COUNT critical care medicine +TOP_10_COUNT +john +wilkes +booth +TOP_10_COUNT "pocket pc" +TOP_10_COUNT +animal +rights +TOP_10_COUNT "playa del rey" +TOP_10_COUNT "cheap hotels" +TOP_10_COUNT +italian +translation +TOP_10_COUNT "plus size clothing" +TOP_10_COUNT +dexter +michigan +TOP_10_COUNT niceville high school +TOP_10_COUNT +japan +airlines +TOP_10_COUNT +columbia +university +TOP_10_COUNT lord of the rings +TOP_10_COUNT robert reed +TOP_10_COUNT +home +business +TOP_10_COUNT "law dictionary" +TOP_10_COUNT "hurricane wilma" +TOP_10_COUNT freelance work +TOP_10_COUNT new jersey police +TOP_10_COUNT +the +progressive +TOP_10_COUNT david kim +TOP_10_COUNT "ace frehley" +TOP_10_COUNT +john +wellington +TOP_10_COUNT "sore muscles" +TOP_10_COUNT +low +estrogen +TOP_10_COUNT "music stands" +TOP_10_COUNT +ventura +college +TOP_10_COUNT +padre +island +TOP_10_COUNT "fluid power" +TOP_10_COUNT the news journal +TOP_10_COUNT +heart +disease +TOP_10_COUNT business consultants +TOP_10_COUNT little shop of horrors +TOP_10_COUNT "ventura college" +TOP_10_COUNT +avon +school +TOP_10_COUNT "developmental delays" +TOP_10_COUNT "pump it up" +TOP_10_COUNT jamie murray +TOP_10_COUNT +glass +works +TOP_10_COUNT "new york times best sellers list" +TOP_10_COUNT "john wellington" +TOP_10_COUNT the preakness +TOP_10_COUNT +kansas +city +kings +TOP_10_COUNT "hawk mountain" +TOP_10_COUNT hotel del coronado +TOP_10_COUNT microsoft frontpage +TOP_10_COUNT danube river +TOP_10_COUNT interracial love +TOP_10_COUNT "little brown jug" +TOP_10_COUNT "sesame street" +TOP_10_COUNT +business +consultants +TOP_10_COUNT "national security cutter" +TOP_10_COUNT +trans +siberian +orchestra +TOP_10_COUNT omaha symphony +TOP_10_COUNT +sky +news +TOP_10_COUNT "philadelphia phillies" +TOP_10_COUNT +edith +head +TOP_10_COUNT automatic writing +TOP_10_COUNT +the +breakfast +club +TOP_10_COUNT "new york population" +TOP_10_COUNT +zip +code +TOP_10_COUNT +true +religion +TOP_10_COUNT robert green ingersoll +TOP_10_COUNT "jefferson davis high school" +TOP_10_COUNT texas death row +TOP_10_COUNT bladder tumor +TOP_10_COUNT +perfume +bottles +TOP_10_COUNT "antonio cromartie" +TOP_10_COUNT "costume designers" +TOP_10_COUNT mood swings +TOP_10_COUNT +milan +tennessee +TOP_10_COUNT personal chef +TOP_10_COUNT +roundabout +theatre +TOP_10_COUNT justin timberlake +TOP_10_COUNT +calvin +klein +TOP_10_COUNT naked news +TOP_10_COUNT usb hub +TOP_10_COUNT "back surgery" +TOP_10_COUNT carolyn jones +TOP_10_COUNT "montgomery college" +TOP_10_COUNT +kidney +transplant +TOP_10_COUNT walk the line +TOP_10_COUNT +civil +war +battlefields +TOP_10_COUNT "interracial love" +TOP_10_COUNT "foam mattress" +TOP_10_COUNT +food +carts +TOP_10_COUNT "aishwarya rai" +TOP_10_COUNT +round +table +TOP_10_COUNT +becoming +a +widow +TOP_10_COUNT term life insurance +TOP_10_COUNT +worcester +state +college +TOP_10_COUNT +automatic +writing +TOP_10_COUNT "evening wear" +TOP_10_COUNT +lord +of +the +rings +TOP_10_COUNT +time +for +kids +TOP_10_COUNT +danbury +ct +TOP_10_COUNT +google +satellite +TOP_10_COUNT +consumer +affairs +TOP_10_COUNT +john +donne +TOP_10_COUNT +binghamton +new +york +TOP_10_COUNT "chicken noodle soup" +TOP_10_COUNT "tennis elbow" +TOP_10_COUNT john donne +TOP_10_COUNT third trimester +TOP_10_COUNT montgomery college +TOP_10_COUNT "freedom tower" +TOP_10_COUNT +ace +frehley +TOP_10_COUNT wisconsin attorney general +TOP_10_COUNT +corpus +christi +tx +TOP_10_COUNT trans siberian orchestra +TOP_10_COUNT "catholic answers" +TOP_10_COUNT "lost episode" +TOP_10_COUNT +water +filters +TOP_10_COUNT "bass fishing" +TOP_10_COUNT +anderson +hospital +TOP_10_COUNT books on cd +TOP_10_COUNT the english restoration +TOP_10_COUNT +antonio +cromartie +TOP_10_COUNT game downloads +TOP_10_COUNT +intramuscular +injections +TOP_10_COUNT +toxic +encephalopathy +TOP_10_COUNT "books on cd" +TOP_10_COUNT fluid power +TOP_10_COUNT +the +book +of +life +TOP_10_COUNT "state of louisiana" +TOP_10_COUNT true religion +TOP_10_COUNT "york photo" +TOP_10_COUNT "decorative windows" +TOP_10_COUNT adobe buildings +TOP_10_COUNT +the +actors +studio +TOP_10_COUNT "business consultants" +TOP_10_COUNT oxford dictionary +TOP_10_COUNT most improved player +TOP_10_COUNT "st petersburg high school" +TOP_10_COUNT centerville high school +TOP_10_COUNT "bankruptcy laws" +TOP_10_COUNT +national +book +award +TOP_10_COUNT +david +koresh +TOP_10_COUNT jaguar x type +TOP_10_COUNT david koresh +TOP_10_COUNT "hempstead new york" +TOP_10_COUNT "color combinations" +TOP_10_COUNT +texas +death +row +TOP_10_COUNT "ford modeling agency" +TOP_10_COUNT weather underground +TOP_10_COUNT intramuscular injections +TOP_10_COUNT animal rights +TOP_10_COUNT +evening +wear +TOP_10_COUNT glass works +TOP_10_COUNT "the british embassy" +TOP_10_COUNT google satellite +TOP_10_COUNT "food carts" +TOP_10_COUNT +centerville +high +school +TOP_10_COUNT "bladder tumor" +TOP_10_COUNT +pocket +pc +TOP_10_COUNT open source software +TOP_10_COUNT +robert +fuller +TOP_10_COUNT law dictionary +TOP_10_COUNT "time in denver" +TOP_10_COUNT sleep study +TOP_10_COUNT camp claiborne +TOP_10_COUNT ron keel +TOP_10_COUNT home loan +TOP_10_COUNT "clothing optional" +TOP_10_COUNT "critical care medicine" +TOP_10_COUNT virginia usa +TOP_10_COUNT worcester state college +TOP_10_COUNT evening wear +TOP_10_COUNT fatherless children +TOP_10_COUNT "wildlife photography" +TOP_10_COUNT +akron +beacon +TOP_10_COUNT +music +stands +TOP_10_COUNT "university of akron" +TOP_10_COUNT "akron beacon" +TOP_10_COUNT "domain names" +TOP_10_COUNT +the +movement +TOP_10_COUNT back surgery +TOP_10_COUNT ambassador of italy +TOP_10_COUNT "secretary of state" +TOP_10_COUNT shih tzu +TOP_10_COUNT "american academy of child and adolescent psychiatry" +TOP_10_COUNT +secretary +of +state +TOP_10_COUNT "sarah fisher" +TOP_10_COUNT "canadian real estate" +TOP_10_COUNT mushroom kingdom +TOP_10_COUNT kidney transplant +TOP_10_COUNT "the movement" +TOP_10_COUNT "corpus christi tx" +TOP_10_COUNT +mercury +insurance +TOP_10_COUNT +philadelphia +phillies +TOP_10_COUNT +time +in +denver +TOP_10_COUNT "flow meter" +TOP_10_COUNT texas state legislature +TOP_10_COUNT "home business" +TOP_10_COUNT "debra jo rupp" +TOP_10_COUNT internet fraud +TOP_10_COUNT heart disease +TOP_10_COUNT "bowel obstruction" +TOP_10_COUNT "los angeles daily news" +TOP_10_COUNT binghamton new york +TOP_10_COUNT jefferson davis high school +TOP_10_COUNT "cherry blossom" +TOP_10_COUNT aishwarya rai +TOP_10_COUNT +farmers +almanac +TOP_10_COUNT the incredibles +TOP_10_COUNT +borders +books +TOP_10_COUNT "naomi wallace" +TOP_10_COUNT +cheap +hotels +TOP_10_COUNT "open source software" +TOP_10_COUNT +chicken +coop +TOP_10_COUNT "trendy clothes" +TOP_10_COUNT +tennis +elbow +TOP_10_COUNT cartoon network +TOP_10_COUNT seal pictures +TOP_10_COUNT "fatherless children" +TOP_10_COUNT +medal +of +honor +TOP_10_COUNT +battle +of +the +bulge +TOP_10_COUNT times union +TOP_10_COUNT +american +funds +TOP_10_COUNT "the breakfast club" +TOP_10_COUNT edith head +TOP_10_COUNT interest only +TOP_10_COUNT "danbury ct" +TOP_10_COUNT "car stereo" +TOP_10_COUNT air mattress +TOP_10_COUNT "mercedes benz" +TOP_10_COUNT +body +painting +TOP_10_COUNT "ambassador of italy" +TOP_10_COUNT +united +states +constitution +TOP_10_COUNT corpus christi tx +TOP_10_COUNT +john +klein +TOP_10_COUNT pump it up +TOP_10_COUNT big boss man +TOP_10_COUNT "farmers almanac" +TOP_10_COUNT +"the who" +uk +TOP_10_COUNT power rangers ninja storm +TOP_10_COUNT "personal chef" +TOP_10_COUNT "walk the line" +TOP_10_COUNT +hsbc +bank +TOP_10_COUNT +game +downloads +TOP_10_COUNT "milan tennessee" +TOP_10_COUNT david thornton +TOP_10_COUNT merry christmas +TOP_10_COUNT "people having sex" +TOP_10_COUNT "law school rankings" +TOP_10_COUNT "chicago public schools" +TOP_10_COUNT "american funds" +TOP_10_COUNT army reserve +TOP_10_COUNT new york towns +TOP_10_COUNT international baseball +TOP_10_COUNT "texas death row" +TOP_10_COUNT "medal of honor" +TOP_10_COUNT "most improved player" +TOP_10_COUNT "penny stocks" +TOP_10_COUNT +aishwarya +rai +TOP_10_COUNT sesame street +TOP_10_COUNT "canary bird" +TOP_10_COUNT +montessori +schools +TOP_10_COUNT old photos +TOP_10_COUNT +power +rangers +ninja +storm +TOP_10_COUNT water filters +TOP_10_COUNT "true religion" +TOP_10_COUNT +york +photo +TOP_10_COUNT "hot springs south dakota" +TOP_10_COUNT "new york towns" +TOP_10_COUNT avon school +TOP_10_COUNT "prayer times" +TOP_10_COUNT +eastern +mennonite +university +TOP_10_COUNT +georgia +public +broadcasting +TOP_10_COUNT +ancient +egypt +TOP_10_COUNT personal loan +TOP_10_COUNT laborers international union of north america +TOP_10_COUNT +fluid +power +TOP_10_COUNT the globe newspaper +TOP_10_COUNT +music +videos +TOP_10_COUNT +zion +national +park +TOP_10_COUNT columbia university +TOP_10_COUNT "new haven" +TOP_10_COUNT "padre island" +TOP_10_COUNT "region iv" +TOP_10_COUNT helen of troy +TOP_10_COUNT +elizabeth +vargas +TOP_10_COUNT "university of washington" +TOP_10_COUNT +french +culinary +institute +TOP_10_COUNT +american +academy +of +child +and +adolescent +psychiatry +TOP_10_COUNT foam mattress +TOP_10_COUNT "virginia usa" +TOP_10_COUNT +connecticut +historical +society +TOP_10_COUNT borders books +TOP_10_COUNT +new +york +times +best +sellers +list +TOP_10_COUNT mercedes benz +TOP_10_COUNT "niceville high school" +TOP_10_COUNT +world +bank +president +TOP_10_COUNT +good +luck +TOP_10_COUNT rob halford +TOP_10_COUNT kasota stone +TOP_10_COUNT "adobe buildings" +TOP_10_COUNT rolex watches +TOP_10_COUNT the british embassy +TOP_10_COUNT "jamie murray" +TOP_10_COUNT +the +garden +of +eden +TOP_10_COUNT perfume bottles +TOP_10_COUNT city in iran +TOP_10_COUNT "phone cases" +TOP_10_COUNT king kalakaua +TOP_10_COUNT "chicken coop" +TOP_10_COUNT "portrait studio" +TOP_10_COUNT +cognitive +impairment +TOP_10_COUNT "interest only" +TOP_10_COUNT "georgian architecture" +TOP_10_COUNT +microsoft +frontpage +TOP_10_COUNT +oxford +dictionary +TOP_10_COUNT too faced +TOP_10_COUNT little brown jug +TOP_10_COUNT world bank president +TOP_10_COUNT +robert +green +ingersoll +TOP_10_COUNT +us +coast +guard +TOP_10_COUNT hawk mountain +TOP_10_COUNT phone cases +TOP_10_COUNT +sleep +study +TOP_10_COUNT +freelance +work +TOP_10_COUNT medal of honor +TOP_10_COUNT mid continent airport +TOP_10_COUNT +st +petersburg +high +school +TOP_10_COUNT +ear +ache +TOP_10_COUNT jungle boy +TOP_10_COUNT home business +TOP_10_COUNT +canadian +real +estate +TOP_10_COUNT +bowel +obstruction +TOP_10_COUNT +color +combinations +TOP_10_COUNT "montessori schools" +TOP_10_COUNT +decorative +windows +TOP_10_COUNT "milwaukee newspaper" +TOP_10_COUNT immigration to mexico +TOP_10_COUNT +ellen +degeneres +show +TOP_10_COUNT +griffith +observatory +TOP_10_COUNT university of akron +TOP_10_COUNT +western +herald +TOP_10_COUNT "chicago bulls" +TOP_10_COUNT +state +of +louisiana +TOP_10_COUNT +hempstead +new +york +TOP_10_COUNT american academy of child and adolescent psychiatry +TOP_10_COUNT +critical +care +medicine +TOP_10_COUNT american funds +TOP_10_COUNT "italian translation" +TOP_10_COUNT +wisconsin +attorney +general +TOP_10_COUNT ford modeling agency +TOP_10_COUNT ear ache +TOP_10_COUNT georgia public broadcasting +TOP_10_COUNT +david +lee +roth +TOP_10_COUNT +ugly +people +TOP_10_COUNT "general motors" +TOP_10_COUNT "long legs" +TOP_10_COUNT george r brown convention center +TOP_10_COUNT "critical care nurse" +TOP_10_COUNT +west +palm +beach +florida +TOP_10_COUNT "freelance work" +TOP_10_COUNT "city in iran" +TOP_10_COUNT "power rangers ninja storm" +TOP_10_COUNT +stone +mountain +TOP_10_COUNT "tallest trees in the world" +TOP_10_COUNT +the +globe +newspaper +TOP_10_COUNT "jonathan daniel" +TOP_10_COUNT warren county +TOP_10_COUNT milan tennessee +TOP_10_COUNT +usb +hub +TOP_10_COUNT "internet fraud" +TOP_10_COUNT +prayer +times +TOP_10_COUNT "the daily breeze" +TOP_10_COUNT xena warrior princess +TOP_10_COUNT "omaha symphony" +TOP_10_COUNT "napa auto parts" +TOP_10_COUNT ford parts +TOP_10_COUNT west palm beach florida +TOP_10_COUNT people having sex +TOP_10_COUNT national security cutter +TOP_10_COUNT iq scores +TOP_10_COUNT "vicenza italy" +TOP_10_COUNT canon powershot +TOP_10_COUNT +elise +neal +TOP_10_COUNT "texas state legislature" +TOP_10_COUNT "avon school" +TOP_10_COUNT +tv +party +TOP_10_COUNT the breakfast club +TOP_10_COUNT "john klein" +TOP_10_COUNT "miami dade college" +TOP_10_COUNT "binghamton new york" +TOP_10_COUNT +foam +mattress +TOP_10_COUNT +missy +elliott +TOP_10_COUNT "carolyn jones" +TOP_10_COUNT "immigration to mexico" +TOP_10_COUNT domain names +TOP_10_COUNT +napa +auto +parts +TOP_10_COUNT all funds +TOP_10_COUNT "times union" +TOP_10_COUNT "shih tzu" +TOP_10_COUNT printer ink +TOP_10_COUNT round table +TOP_10_COUNT +false +prophets +TOP_10_COUNT +walk +the +line +TOP_10_COUNT "william wallace" +TOP_10_COUNT "old photos" +TOP_10_COUNT canary bird +TOP_10_COUNT +premier +wine +TOP_10_COUNT "lord of the rings" +TOP_10_COUNT "robert reed" +TOP_10_COUNT "animal rights" +TOP_10_COUNT "famous quotes" +TOP_10_COUNT "hsbc bank" +TOP_10_COUNT cherry blossom +TOP_10_COUNT "worcester state college" +TOP_10_COUNT becoming a widow +TOP_10_COUNT chicago teachers union +TOP_10_COUNT "king kalakaua" +TOP_10_COUNT "zip code" +TOP_10_COUNT "bmw engines" +TOP_10_COUNT "the preakness" +TOP_10_COUNT padre island +TOP_10_COUNT "cognitive impairment" +TOP_10_COUNT +canon +powershot +TOP_10_COUNT pocket pc +TOP_10_COUNT "edith wharton" +TOP_10_COUNT "david kim" +TOP_10_COUNT wildlife photography +TOP_10_COUNT tom welling +TOP_10_COUNT miami dade college +TOP_10_COUNT decorative windows +TOP_10_COUNT costume designers +TOP_10_COUNT +law +school +rankings +TOP_10_COUNT +jefferson +davis +high +school +TOP_10_COUNT farmers almanac +TOP_10_COUNT john wellington +TOP_10_COUNT +little +brown +jug +TOP_10_COUNT +rob +halford +TOP_10_COUNT penny stocks +TOP_10_COUNT +chicago +public +schools +TOP_10_COUNT +critical +care +nurse +TOP_10_COUNT "john donne" +TOP_10_COUNT +debra +jo +rupp +TOP_10_COUNT +new +england +aquarium +TOP_10_COUNT movie theatres +TOP_10_COUNT +hot +springs +south +dakota +TOP_10_COUNT western herald +TOP_10_COUNT "music videos" +TOP_10_COUNT +weather +underground +TOP_10_COUNT "rolex watches" +TOP_10_COUNT sky news +TOP_10_COUNT danbury ct +TOP_10_COUNT "central community college" +TOP_10_COUNT ugly people +TOP_10_COUNT +edith +wharton +TOP_10_COUNT "toxic encephalopathy" +TOP_10_COUNT "warren county" +TOP_10_COUNT zion national park +TOP_10_COUNT +freedom +tower +TOP_10_COUNT long legs +TOP_10_COUNT "consumer affairs" +TOP_10_COUNT sore muscles +TOP_10_COUNT scottsdale az +TOP_10_COUNT "columbia university" +TOP_10_COUNT +american +south +TOP_10_COUNT +connecticut +post +TOP_10_COUNT connecticut historical society +TOP_10_COUNT cured of cancer +TOP_10_COUNT +care +a +lot +TOP_10_COUNT +pump +it +up +TOP_10_COUNT "john wilkes booth" +TOP_10_COUNT "calvin klein" +TOP_10_COUNT "game downloads" +TOP_10_COUNT critical care nurse +TOP_10_COUNT +the +english +restoration +TOP_10_COUNT "united states constitution" +TOP_10_COUNT +clothing +optional +TOP_10_COUNT +printer +ink +TOP_10_COUNT "sky news" +TOP_10_COUNT "the oregonian newspaper" +TOP_10_COUNT "seal pictures" +TOP_10_COUNT "zion national park" +TOP_10_COUNT "becoming a widow" +TOP_10_COUNT general motors +TOP_10_COUNT the movement +TOP_10_COUNT "ron keel" +TOP_10_COUNT graduate management admission test +TOP_10_COUNT state of louisiana +TOP_10_COUNT +internet +fraud +TOP_10_COUNT +table +lamps +TOP_10_COUNT french culinary institute +TOP_10_COUNT us coast guard +TOP_10_COUNT +reading +museum +TOP_10_COUNT "us coast guard" +TOP_10_COUNT "ancient egypt" +TOP_10_COUNT cheap hotels +TOP_10_COUNT +jamie +murray +TOP_10_COUNT +mood +swings +TOP_10_COUNT blue ridge parkway +TOP_10_COUNT music videos +TOP_10_COUNT "helen of troy" +TOP_10_COUNT david lee roth +TOP_10_COUNT toxic encephalopathy +TOP_10_COUNT "graffiti art" +TOP_10_COUNT catholic answers +TOP_10_COUNT who dares wins +TOP_10_COUNT "health literacy" +TOP_10_COUNT +niceville +high +school +dict_keys(['simd_linear_search']) +====================== +BENCHMARKING simd_linear_search COUNT +/home/fulmicoton/git/search-benchmark-game/engines/simd_linear_search +--- Warming up ... +COUNT philadelphia phillies +COUNT hurricane wilma +COUNT sarah fisher +COUNT +boulder +city +nevada +COUNT "ugly people" +COUNT +times +union +COUNT +seal +pictures +COUNT +mercedes +benz +COUNT car stereo +COUNT +omaha +symphony +COUNT +the +news +journal +COUNT elise neal +COUNT +interracial +love +COUNT canadian real estate +COUNT "personal loan" +COUNT barrett jackson +COUNT +jaguar +x +type +COUNT +personal +loan +COUNT +laborers +international +union +of +north +america +COUNT +fatherless +children +COUNT "tv party" +COUNT york photo +COUNT "sleep study" +COUNT italian translation +COUNT developmental delays +COUNT +too +faced +COUNT "eastern mennonite university" +COUNT +law +dictionary +COUNT "reading museum" +COUNT los angeles daily news +COUNT music stands +COUNT +health +literacy +COUNT +los +angeles +daily +news +COUNT "the news journal" +COUNT +montgomery +college +COUNT +national +security +cutter +COUNT freedom tower +COUNT "david thornton" +COUNT "mood swings" +COUNT san francisco +COUNT false prophets +COUNT "west palm beach florida" +COUNT +digital +scanning +COUNT "all funds" +COUNT +graduate +management +admission +test +COUNT central community college +COUNT +the +daily +breeze +COUNT civil war battlefields +COUNT "bismarck state college" +COUNT +child +support +COUNT +costume +designers +COUNT william wallace +COUNT calvin klein +COUNT "little shop of horrors" +COUNT "elizabeth vargas" +COUNT +most +improved +player +COUNT "naked news" +COUNT "boulder city nevada" +COUNT "kenosha wisconsin" +COUNT hot springs south dakota +COUNT "cartoon network" +COUNT vicenza italy +COUNT +camp +claiborne +COUNT +canary +bird +COUNT +shih +tzu +COUNT +xena +warrior +princess +COUNT +blue +ridge +parkway +COUNT "roundabout theatre" +COUNT +term +life +insurance +COUNT +david +thornton +COUNT "american south" +COUNT "the globe newspaper" +COUNT "battle of the bulge" +COUNT new york population +COUNT "heart disease" +COUNT griffith observatory +COUNT american south +COUNT john klein +COUNT +cherry +blossom +COUNT "world bank president" +COUNT child support +COUNT "big boss man" +COUNT "stone mountain" +COUNT reading museum +COUNT +ford +parts +COUNT cognitive impairment +COUNT new york times best sellers list +COUNT "care a lot" +COUNT "hotel del coronado" +COUNT consumer affairs +COUNT "good luck" +COUNT "new england aquarium" +COUNT +sore +muscles +COUNT +air +mattress +COUNT body painting +COUNT "the progressive" +COUNT +who +dares +wins +COUNT the progressive +COUNT "western herald" +COUNT kristanna loken +COUNT mercury insurance +COUNT +back +surgery +COUNT "wisconsin attorney general" +COUNT bmw engines +COUNT +sesame +street +COUNT "google satellite" +COUNT +people +having +sex +COUNT health literacy +COUNT "water filters" +COUNT +playa +del +rey +COUNT +mushroom +kingdom +COUNT region iv +COUNT +cured +of +cancer +COUNT +ford +modeling +agency +COUNT +catholic +answers +COUNT anderson hospital +COUNT time for kids +COUNT +domain +names +COUNT "graduate management admission test" +COUNT "movie theatres" +COUNT "the incredibles" +COUNT "spiritual warfare" +COUNT chicago bulls +COUNT "camp claiborne" +COUNT +hawk +mountain +COUNT "tom welling" +COUNT "kasota stone" +COUNT akron beacon +COUNT belcourt castle +COUNT low estrogen +COUNT "air mattress" +COUNT tallest trees in the world +COUNT +lost +episode +COUNT chicken noodle soup +COUNT "new jersey police" +COUNT roundabout theatre +COUNT jesus as a child +COUNT university of washington +COUNT +tom +welling +COUNT +tallest +trees +in +the +world +COUNT "gun magazines" +COUNT bankruptcy laws +COUNT "edith head" +COUNT "barrett jackson" +COUNT "false prophets" +COUNT japan airlines +COUNT +the +preakness +COUNT st petersburg high school +COUNT +vicenza +italy +COUNT "the garden of eden" +COUNT "french culinary institute" +COUNT battle of the bulge +COUNT "merry christmas" +COUNT +sarah +fisher +COUNT "elise neal" +COUNT digital scanning +COUNT food carts +COUNT "home loan" +COUNT +elliott +smith +COUNT john wilkes booth +COUNT lost episode +COUNT bowel obstruction +COUNT +helen +of +troy +COUNT "who dares wins" +COUNT bismarck state college +COUNT premier wine +COUNT tennis elbow +COUNT "griffith observatory" +COUNT +king +kalakaua +COUNT "ford parts" +COUNT +immigration +to +mexico +COUNT the daily breeze +COUNT +home +loan +COUNT "third trimester" +COUNT hsbc bank +COUNT +david +kim +COUNT napa auto parts +COUNT +jesus +as +a +child +COUNT +belcourt +castle +COUNT ellen degeneres show +COUNT "usb hub" +COUNT +chicken +noodle +soup +COUNT the book of life +COUNT the actors studio +COUNT chicken coop +COUNT +milwaukee +newspaper +COUNT "ear ache" +COUNT "jaguar x type" +COUNT +big +boss +man +COUNT secretary of state +COUNT +barrett +jackson +COUNT debra jo rupp +COUNT law school rankings +COUNT zip code +COUNT "scottsdale az" +COUNT "jesus as a child" +COUNT +rolex +watches +COUNT kenosha wisconsin +COUNT +kenosha +wisconsin +COUNT "oxford dictionary" +COUNT chicago public schools +COUNT +bismarck +state +college +COUNT "belcourt castle" +COUNT +army +reserve +COUNT +plus +size +clothing +COUNT "mushroom kingdom" +COUNT "army reserve" +COUNT +the +british +embassy +COUNT "analog computer" +COUNT famous quotes +COUNT +georgian +architecture +COUNT georgian architecture +COUNT "the english restoration" +COUNT +george +r +brown +convention +center +COUNT +university +of +washington +COUNT "connecticut historical society" +COUNT +books +on +cd +COUNT +hotel +del +coronado +COUNT +analog +computer +COUNT "kansas city kings" +COUNT "little cars" +COUNT the garden of eden +COUNT "chicago teachers union" +COUNT "national book award" +COUNT clothing optional +COUNT +merry +christmas +COUNT plus size clothing +COUNT +ambassador +of +italy +COUNT +wildlife +photography +COUNT tv party +COUNT "danube river" +COUNT "the actors studio" +COUNT "digital scanning" +COUNT montessori schools +COUNT +little +cars +COUNT "abilene tx" +COUNT "xena warrior princess" +COUNT stone mountain +COUNT +phone +cases +COUNT graffiti art +COUNT +scottsdale +az +COUNT "international baseball" +COUNT +naked +news +COUNT +justin +timberlake +COUNT ace frehley +COUNT +san +francisco +COUNT "rob halford" +COUNT united states constitution +COUNT "mid continent airport" +COUNT new haven +COUNT "blue ridge parkway" +COUNT "automatic writing" +COUNT +third +trimester +COUNT "ellen degeneres show" +COUNT +bankruptcy +laws +COUNT jonathan daniel +COUNT +william +wallace +COUNT +new +york +towns +COUNT +cartoon +network +COUNT +kasota +stone +COUNT gun magazines +COUNT +mid +continent +airport +COUNT "weather underground" +COUNT analog computer +COUNT +flow +meter +COUNT national book award +COUNT connecticut post +COUNT "premier wine" +COUNT +new +haven +COUNT "body painting" +COUNT +abilene +tx +COUNT "san francisco" +COUNT +movie +theatres +COUNT "perfume bottles" +COUNT +new +jersey +police +COUNT +kristanna +loken +COUNT +international +baseball +COUNT flow meter +COUNT +central +community +college +COUNT +bmw +engines +COUNT ventura college +COUNT "table lamps" +COUNT +naomi +wallace +COUNT +danube +river +COUNT +city +in +iran +COUNT "kristanna loken" +COUNT +carolyn +jones +COUNT human trafficking +COUNT edith wharton +COUNT kansas city kings +COUNT "david koresh" +COUNT robert fuller +COUNT +long +legs +COUNT naomi wallace +COUNT +iq +scores +COUNT "time for kids" +COUNT "japan airlines" +COUNT +little +shop +of +horrors +COUNT table lamps +COUNT "glass works" +COUNT +portrait +studio +COUNT +interest +only +COUNT "child support" +COUNT +region +iv +COUNT +all +funds +COUNT "term life insurance" +COUNT eastern mennonite university +COUNT spiritual warfare +COUNT "cured of cancer" +COUNT "civil war battlefields" +COUNT abilene tx +COUNT "canon powershot" +COUNT +car +stereo +COUNT "david lee roth" +COUNT "intramuscular injections" +COUNT elizabeth vargas +COUNT +warren +county +COUNT +graffiti +art +COUNT "kidney transplant" +COUNT "round table" +COUNT "dexter michigan" +COUNT new england aquarium +COUNT "connecticut post" +COUNT +penny +stocks +COUNT +new +york +population +COUNT +jungle +boy +COUNT "iq scores" +COUNT +kitchen +accessories +COUNT "laborers international union of north america" +COUNT +robert +reed +COUNT +virginia +usa +COUNT good luck +COUNT +bass +fishing +COUNT "elliott smith" +COUNT prayer times +COUNT "mercury insurance" +COUNT "jungle boy" +COUNT "printer ink" +COUNT milwaukee newspaper +COUNT missy elliott +COUNT ancient egypt +COUNT +texas +state +legislature +COUNT +jonathan +daniel +COUNT "anderson hospital" +COUNT "trans siberian orchestra" +COUNT +chicago +teachers +union +COUNT portrait studio +COUNT +old +photos +COUNT "robert green ingersoll" +COUNT +personal +chef +COUNT time in denver +COUNT "kitchen accessories" +COUNT +adobe +buildings +COUNT "george r brown convention center" +COUNT kitchen accessories +COUNT +bladder +tumor +COUNT "low estrogen" +COUNT "microsoft frontpage" +COUNT hempstead new york +COUNT color combinations +COUNT +ron +keel +COUNT antonio cromartie +COUNT "robert fuller" +COUNT +general +motors +COUNT +the +oregonian +newspaper +COUNT +the +incredibles +COUNT "too faced" +COUNT +university +of +akron +COUNT +developmental +delays +COUNT +trendy +clothes +COUNT +famous +quotes +COUNT elliott smith +COUNT +hurricane +wilma +COUNT the oregonian newspaper +COUNT "borders books" +COUNT +chicago +bulls +COUNT the +COUNT trendy clothes +COUNT +gun +magazines +COUNT "justin timberlake" +COUNT +human +trafficking +COUNT +spiritual +warfare +COUNT care a lot +COUNT playa del rey +COUNT "the book of life" +COUNT little cars +COUNT "centerville high school" +COUNT "georgia public broadcasting" +COUNT bass fishing +COUNT "human trafficking" +COUNT +open +source +software +COUNT "missy elliott" +COUNT dexter michigan +COUNT boulder city nevada +COUNT +miami +dade +college +COUNT critical care medicine +COUNT +john +wilkes +booth +COUNT "pocket pc" +COUNT +animal +rights +COUNT "playa del rey" +COUNT "cheap hotels" +COUNT +italian +translation +COUNT "plus size clothing" +COUNT +dexter +michigan +COUNT niceville high school +COUNT +japan +airlines +COUNT +columbia +university +COUNT lord of the rings +COUNT robert reed +COUNT +home +business +COUNT "law dictionary" +COUNT "hurricane wilma" +COUNT freelance work +COUNT new jersey police +COUNT +the +progressive +COUNT david kim +COUNT "ace frehley" +COUNT +john +wellington +COUNT "sore muscles" +COUNT +low +estrogen +COUNT "music stands" +COUNT +ventura +college +COUNT +padre +island +COUNT "fluid power" +COUNT the news journal +COUNT +heart +disease +COUNT business consultants +COUNT little shop of horrors +COUNT "ventura college" +COUNT +avon +school +COUNT "developmental delays" +COUNT "pump it up" +COUNT jamie murray +COUNT +glass +works +COUNT "new york times best sellers list" +COUNT "john wellington" +COUNT the preakness +COUNT +kansas +city +kings +COUNT "hawk mountain" +COUNT hotel del coronado +COUNT microsoft frontpage +COUNT danube river +COUNT interracial love +COUNT "little brown jug" +COUNT "sesame street" +COUNT +business +consultants +COUNT "national security cutter" +COUNT +trans +siberian +orchestra +COUNT omaha symphony +COUNT +sky +news +COUNT "philadelphia phillies" +COUNT +edith +head +COUNT automatic writing +COUNT +the +breakfast +club +COUNT "new york population" +COUNT +zip +code +COUNT +true +religion +COUNT robert green ingersoll +COUNT "jefferson davis high school" +COUNT texas death row +COUNT bladder tumor +COUNT +perfume +bottles +COUNT "antonio cromartie" +COUNT "costume designers" +COUNT mood swings +COUNT +milan +tennessee +COUNT personal chef +COUNT +roundabout +theatre +COUNT justin timberlake +COUNT +calvin +klein +COUNT naked news +COUNT usb hub +COUNT "back surgery" +COUNT carolyn jones +COUNT "montgomery college" +COUNT +kidney +transplant +COUNT walk the line +COUNT +civil +war +battlefields +COUNT "interracial love" +COUNT "foam mattress" +COUNT +food +carts +COUNT "aishwarya rai" +COUNT +round +table +COUNT +becoming +a +widow +COUNT term life insurance +COUNT +worcester +state +college +COUNT +automatic +writing +COUNT "evening wear" +COUNT +lord +of +the +rings +COUNT +time +for +kids +COUNT +danbury +ct +COUNT +google +satellite +COUNT +consumer +affairs +COUNT +john +donne +COUNT +binghamton +new +york +COUNT "chicken noodle soup" +COUNT "tennis elbow" +COUNT john donne +COUNT third trimester +COUNT montgomery college +COUNT "freedom tower" +COUNT +ace +frehley +COUNT wisconsin attorney general +COUNT +corpus +christi +tx +COUNT trans siberian orchestra +COUNT "catholic answers" +COUNT "lost episode" +COUNT +water +filters +COUNT "bass fishing" +COUNT +anderson +hospital +COUNT books on cd +COUNT the english restoration +COUNT +antonio +cromartie +COUNT game downloads +COUNT +intramuscular +injections +COUNT +toxic +encephalopathy +COUNT "books on cd" +COUNT fluid power +COUNT +the +book +of +life +COUNT "state of louisiana" +COUNT true religion +COUNT "york photo" +COUNT "decorative windows" +COUNT adobe buildings +COUNT +the +actors +studio +COUNT "business consultants" +COUNT oxford dictionary +COUNT most improved player +COUNT "st petersburg high school" +COUNT centerville high school +COUNT "bankruptcy laws" +COUNT +national +book +award +COUNT +david +koresh +COUNT jaguar x type +COUNT david koresh +COUNT "hempstead new york" +COUNT "color combinations" +COUNT +texas +death +row +COUNT "ford modeling agency" +COUNT weather underground +COUNT intramuscular injections +COUNT animal rights +COUNT +evening +wear +COUNT glass works +COUNT "the british embassy" +COUNT google satellite +COUNT "food carts" +COUNT +centerville +high +school +COUNT "bladder tumor" +COUNT +pocket +pc +COUNT open source software +COUNT +robert +fuller +COUNT law dictionary +COUNT "time in denver" +COUNT sleep study +COUNT camp claiborne +COUNT ron keel +COUNT home loan +COUNT "clothing optional" +COUNT "critical care medicine" +COUNT virginia usa +COUNT worcester state college +COUNT evening wear +COUNT fatherless children +COUNT "wildlife photography" +COUNT +akron +beacon +COUNT +music +stands +COUNT "university of akron" +COUNT "akron beacon" +COUNT "domain names" +COUNT +the +movement +COUNT back surgery +COUNT ambassador of italy +COUNT "secretary of state" +COUNT shih tzu +COUNT "american academy of child and adolescent psychiatry" +COUNT +secretary +of +state +COUNT "sarah fisher" +COUNT "canadian real estate" +COUNT mushroom kingdom +COUNT kidney transplant +COUNT "the movement" +COUNT "corpus christi tx" +COUNT +mercury +insurance +COUNT +philadelphia +phillies +COUNT +time +in +denver +COUNT "flow meter" +COUNT texas state legislature +COUNT "home business" +COUNT "debra jo rupp" +COUNT internet fraud +COUNT heart disease +COUNT "bowel obstruction" +COUNT "los angeles daily news" +COUNT binghamton new york +COUNT jefferson davis high school +COUNT "cherry blossom" +COUNT aishwarya rai +COUNT +farmers +almanac +COUNT the incredibles +COUNT +borders +books +COUNT "naomi wallace" +COUNT +cheap +hotels +COUNT "open source software" +COUNT +chicken +coop +COUNT "trendy clothes" +COUNT +tennis +elbow +COUNT cartoon network +COUNT seal pictures +COUNT "fatherless children" +COUNT +medal +of +honor +COUNT +battle +of +the +bulge +COUNT times union +COUNT +american +funds +COUNT "the breakfast club" +COUNT edith head +COUNT interest only +COUNT "danbury ct" +COUNT "car stereo" +COUNT air mattress +COUNT "mercedes benz" +COUNT +body +painting +COUNT "ambassador of italy" +COUNT +united +states +constitution +COUNT corpus christi tx +COUNT +john +klein +COUNT pump it up +COUNT big boss man +COUNT "farmers almanac" +COUNT +"the who" +uk +COUNT power rangers ninja storm +COUNT "personal chef" +COUNT "walk the line" +COUNT +hsbc +bank +COUNT +game +downloads +COUNT "milan tennessee" +COUNT david thornton +COUNT merry christmas +COUNT "people having sex" +COUNT "law school rankings" +COUNT "chicago public schools" +COUNT "american funds" +COUNT army reserve +COUNT new york towns +COUNT international baseball +COUNT "texas death row" +COUNT "medal of honor" +COUNT "most improved player" +COUNT "penny stocks" +COUNT +aishwarya +rai +COUNT sesame street +COUNT "canary bird" +COUNT +montessori +schools +COUNT old photos +COUNT +power +rangers +ninja +storm +COUNT water filters +COUNT "true religion" +COUNT +york +photo +COUNT "hot springs south dakota" +COUNT "new york towns" +COUNT avon school +COUNT "prayer times" +COUNT +eastern +mennonite +university +COUNT +georgia +public +broadcasting +COUNT +ancient +egypt +COUNT personal loan +COUNT laborers international union of north america +COUNT +fluid +power +COUNT the globe newspaper +COUNT +music +videos +COUNT +zion +national +park +COUNT columbia university +COUNT "new haven" +COUNT "padre island" +COUNT "region iv" +COUNT helen of troy +COUNT +elizabeth +vargas +COUNT "university of washington" +COUNT +french +culinary +institute +COUNT +american +academy +of +child +and +adolescent +psychiatry +COUNT foam mattress +COUNT "virginia usa" +COUNT +connecticut +historical +society +COUNT borders books +COUNT +new +york +times +best +sellers +list +COUNT mercedes benz +COUNT "niceville high school" +COUNT +world +bank +president +COUNT +good +luck +COUNT rob halford +COUNT kasota stone +COUNT "adobe buildings" +COUNT rolex watches +COUNT the british embassy +COUNT "jamie murray" +COUNT +the +garden +of +eden +COUNT perfume bottles +COUNT city in iran +COUNT "phone cases" +COUNT king kalakaua +COUNT "chicken coop" +COUNT "portrait studio" +COUNT +cognitive +impairment +COUNT "interest only" +COUNT "georgian architecture" +COUNT +microsoft +frontpage +COUNT +oxford +dictionary +COUNT too faced +COUNT little brown jug +COUNT world bank president +COUNT +robert +green +ingersoll +COUNT +us +coast +guard +COUNT hawk mountain +COUNT phone cases +COUNT +sleep +study +COUNT +freelance +work +COUNT medal of honor +COUNT mid continent airport +COUNT +st +petersburg +high +school +COUNT +ear +ache +COUNT jungle boy +COUNT home business +COUNT +canadian +real +estate +COUNT +bowel +obstruction +COUNT +color +combinations +COUNT "montessori schools" +COUNT +decorative +windows +COUNT "milwaukee newspaper" +COUNT immigration to mexico +COUNT +ellen +degeneres +show +COUNT +griffith +observatory +COUNT university of akron +COUNT +western +herald +COUNT "chicago bulls" +COUNT +state +of +louisiana +COUNT +hempstead +new +york +COUNT american academy of child and adolescent psychiatry +COUNT +critical +care +medicine +COUNT american funds +COUNT "italian translation" +COUNT +wisconsin +attorney +general +COUNT ford modeling agency +COUNT ear ache +COUNT georgia public broadcasting +COUNT +david +lee +roth +COUNT +ugly +people +COUNT "general motors" +COUNT "long legs" +COUNT george r brown convention center +COUNT "critical care nurse" +COUNT +west +palm +beach +florida +COUNT "freelance work" +COUNT "city in iran" +COUNT "power rangers ninja storm" +COUNT +stone +mountain +COUNT "tallest trees in the world" +COUNT +the +globe +newspaper +COUNT "jonathan daniel" +COUNT warren county +COUNT milan tennessee +COUNT +usb +hub +COUNT "internet fraud" +COUNT +prayer +times +COUNT "the daily breeze" +COUNT xena warrior princess +COUNT "omaha symphony" +COUNT "napa auto parts" +COUNT ford parts +COUNT west palm beach florida +COUNT people having sex +COUNT national security cutter +COUNT iq scores +COUNT "vicenza italy" +COUNT canon powershot +COUNT +elise +neal +COUNT "texas state legislature" +COUNT "avon school" +COUNT +tv +party +COUNT the breakfast club +COUNT "john klein" +COUNT "miami dade college" +COUNT "binghamton new york" +COUNT +foam +mattress +COUNT +missy +elliott +COUNT "carolyn jones" +COUNT "immigration to mexico" +COUNT domain names +COUNT +napa +auto +parts +COUNT all funds +COUNT "times union" +COUNT "shih tzu" +COUNT printer ink +COUNT round table +COUNT +false +prophets +COUNT +walk +the +line +COUNT "william wallace" +COUNT "old photos" +COUNT canary bird +COUNT +premier +wine +COUNT "lord of the rings" +COUNT "robert reed" +COUNT "animal rights" +COUNT "famous quotes" +COUNT "hsbc bank" +COUNT cherry blossom +COUNT "worcester state college" +COUNT becoming a widow +COUNT chicago teachers union +COUNT "king kalakaua" +COUNT "zip code" +COUNT "bmw engines" +COUNT "the preakness" +COUNT padre island +COUNT "cognitive impairment" +COUNT +canon +powershot +COUNT pocket pc +COUNT "edith wharton" +COUNT "david kim" +COUNT wildlife photography +COUNT tom welling +COUNT miami dade college +COUNT decorative windows +COUNT costume designers +COUNT +law +school +rankings +COUNT +jefferson +davis +high +school +COUNT farmers almanac +COUNT john wellington +COUNT +little +brown +jug +COUNT +rob +halford +COUNT penny stocks +COUNT +chicago +public +schools +COUNT +critical +care +nurse +COUNT "john donne" +COUNT +debra +jo +rupp +COUNT +new +england +aquarium +COUNT movie theatres +COUNT +hot +springs +south +dakota +COUNT western herald +COUNT "music videos" +COUNT +weather +underground +COUNT "rolex watches" +COUNT sky news +COUNT danbury ct +COUNT "central community college" +COUNT ugly people +COUNT +edith +wharton +COUNT "toxic encephalopathy" +COUNT "warren county" +COUNT zion national park +COUNT +freedom +tower +COUNT long legs +COUNT "consumer affairs" +COUNT sore muscles +COUNT scottsdale az +COUNT "columbia university" +COUNT +american +south +COUNT +connecticut +post +COUNT connecticut historical society +COUNT cured of cancer +COUNT +care +a +lot +COUNT +pump +it +up +COUNT "john wilkes booth" +COUNT "calvin klein" +COUNT "game downloads" +COUNT critical care nurse +COUNT +the +english +restoration +COUNT "united states constitution" +COUNT +clothing +optional +COUNT +printer +ink +COUNT "sky news" +COUNT "the oregonian newspaper" +COUNT "seal pictures" +COUNT "zion national park" +COUNT "becoming a widow" +COUNT general motors +COUNT the movement +COUNT "ron keel" +COUNT graduate management admission test +COUNT state of louisiana +COUNT +internet +fraud +COUNT +table +lamps +COUNT french culinary institute +COUNT us coast guard +COUNT +reading +museum +COUNT "us coast guard" +COUNT "ancient egypt" +COUNT cheap hotels +COUNT +jamie +murray +COUNT +mood +swings +COUNT blue ridge parkway +COUNT music videos +COUNT "helen of troy" +COUNT david lee roth +COUNT toxic encephalopathy +COUNT "graffiti art" +COUNT catholic answers +COUNT who dares wins +COUNT "health literacy" +COUNT +niceville +high +school +- Run #1 of 3 +COUNT philadelphia phillies +COUNT hurricane wilma +COUNT sarah fisher +COUNT +boulder +city +nevada +COUNT "ugly people" +COUNT +times +union +COUNT +seal +pictures +COUNT +mercedes +benz +COUNT car stereo +COUNT +omaha +symphony +COUNT +the +news +journal +COUNT elise neal +COUNT +interracial +love +COUNT canadian real estate +COUNT "personal loan" +COUNT barrett jackson +COUNT +jaguar +x +type +COUNT +personal +loan +COUNT +laborers +international +union +of +north +america +COUNT +fatherless +children +COUNT "tv party" +COUNT york photo +COUNT "sleep study" +COUNT italian translation +COUNT developmental delays +COUNT +too +faced +COUNT "eastern mennonite university" +COUNT +law +dictionary +COUNT "reading museum" +COUNT los angeles daily news +COUNT music stands +COUNT +health +literacy +COUNT +los +angeles +daily +news +COUNT "the news journal" +COUNT +montgomery +college +COUNT +national +security +cutter +COUNT freedom tower +COUNT "david thornton" +COUNT "mood swings" +COUNT san francisco +COUNT false prophets +COUNT "west palm beach florida" +COUNT +digital +scanning +COUNT "all funds" +COUNT +graduate +management +admission +test +COUNT central community college +COUNT +the +daily +breeze +COUNT civil war battlefields +COUNT "bismarck state college" +COUNT +child +support +COUNT +costume +designers +COUNT william wallace +COUNT calvin klein +COUNT "little shop of horrors" +COUNT "elizabeth vargas" +COUNT +most +improved +player +COUNT "naked news" +COUNT "boulder city nevada" +COUNT "kenosha wisconsin" +COUNT hot springs south dakota +COUNT "cartoon network" +COUNT vicenza italy +COUNT +camp +claiborne +COUNT +canary +bird +COUNT +shih +tzu +COUNT +xena +warrior +princess +COUNT +blue +ridge +parkway +COUNT "roundabout theatre" +COUNT +term +life +insurance +COUNT +david +thornton +COUNT "american south" +COUNT "the globe newspaper" +COUNT "battle of the bulge" +COUNT new york population +COUNT "heart disease" +COUNT griffith observatory +COUNT american south +COUNT john klein +COUNT +cherry +blossom +COUNT "world bank president" +COUNT child support +COUNT "big boss man" +COUNT "stone mountain" +COUNT reading museum +COUNT +ford +parts +COUNT cognitive impairment +COUNT new york times best sellers list +COUNT "care a lot" +COUNT "hotel del coronado" +COUNT consumer affairs +COUNT "good luck" +COUNT "new england aquarium" +COUNT +sore +muscles +COUNT +air +mattress +COUNT body painting +COUNT "the progressive" +COUNT +who +dares +wins +COUNT the progressive +COUNT "western herald" +COUNT kristanna loken +COUNT mercury insurance +COUNT +back +surgery +COUNT "wisconsin attorney general" +COUNT bmw engines +COUNT +sesame +street +COUNT "google satellite" +COUNT +people +having +sex +COUNT health literacy +COUNT "water filters" +COUNT +playa +del +rey +COUNT +mushroom +kingdom +COUNT region iv +COUNT +cured +of +cancer +COUNT +ford +modeling +agency +COUNT +catholic +answers +COUNT anderson hospital +COUNT time for kids +COUNT +domain +names +COUNT "graduate management admission test" +COUNT "movie theatres" +COUNT "the incredibles" +COUNT "spiritual warfare" +COUNT chicago bulls +COUNT "camp claiborne" +COUNT +hawk +mountain +COUNT "tom welling" +COUNT "kasota stone" +COUNT akron beacon +COUNT belcourt castle +COUNT low estrogen +COUNT "air mattress" +COUNT tallest trees in the world +COUNT +lost +episode +COUNT chicken noodle soup +COUNT "new jersey police" +COUNT roundabout theatre +COUNT jesus as a child +COUNT university of washington +COUNT +tom +welling +COUNT +tallest +trees +in +the +world +COUNT "gun magazines" +COUNT bankruptcy laws +COUNT "edith head" +COUNT "barrett jackson" +COUNT "false prophets" +COUNT japan airlines +COUNT +the +preakness +COUNT st petersburg high school +COUNT +vicenza +italy +COUNT "the garden of eden" +COUNT "french culinary institute" +COUNT battle of the bulge +COUNT "merry christmas" +COUNT +sarah +fisher +COUNT "elise neal" +COUNT digital scanning +COUNT food carts +COUNT "home loan" +COUNT +elliott +smith +COUNT john wilkes booth +COUNT lost episode +COUNT bowel obstruction +COUNT +helen +of +troy +COUNT "who dares wins" +COUNT bismarck state college +COUNT premier wine +COUNT tennis elbow +COUNT "griffith observatory" +COUNT +king +kalakaua +COUNT "ford parts" +COUNT +immigration +to +mexico +COUNT the daily breeze +COUNT +home +loan +COUNT "third trimester" +COUNT hsbc bank +COUNT +david +kim +COUNT napa auto parts +COUNT +jesus +as +a +child +COUNT +belcourt +castle +COUNT ellen degeneres show +COUNT "usb hub" +COUNT +chicken +noodle +soup +COUNT the book of life +COUNT the actors studio +COUNT chicken coop +COUNT +milwaukee +newspaper +COUNT "ear ache" +COUNT "jaguar x type" +COUNT +big +boss +man +COUNT secretary of state +COUNT +barrett +jackson +COUNT debra jo rupp +COUNT law school rankings +COUNT zip code +COUNT "scottsdale az" +COUNT "jesus as a child" +COUNT +rolex +watches +COUNT kenosha wisconsin +COUNT +kenosha +wisconsin +COUNT "oxford dictionary" +COUNT chicago public schools +COUNT +bismarck +state +college +COUNT "belcourt castle" +COUNT +army +reserve +COUNT +plus +size +clothing +COUNT "mushroom kingdom" +COUNT "army reserve" +COUNT +the +british +embassy +COUNT "analog computer" +COUNT famous quotes +COUNT +georgian +architecture +COUNT georgian architecture +COUNT "the english restoration" +COUNT +george +r +brown +convention +center +COUNT +university +of +washington +COUNT "connecticut historical society" +COUNT +books +on +cd +COUNT +hotel +del +coronado +COUNT +analog +computer +COUNT "kansas city kings" +COUNT "little cars" +COUNT the garden of eden +COUNT "chicago teachers union" +COUNT "national book award" +COUNT clothing optional +COUNT +merry +christmas +COUNT plus size clothing +COUNT +ambassador +of +italy +COUNT +wildlife +photography +COUNT tv party +COUNT "danube river" +COUNT "the actors studio" +COUNT "digital scanning" +COUNT montessori schools +COUNT +little +cars +COUNT "abilene tx" +COUNT "xena warrior princess" +COUNT stone mountain +COUNT +phone +cases +COUNT graffiti art +COUNT +scottsdale +az +COUNT "international baseball" +COUNT +naked +news +COUNT +justin +timberlake +COUNT ace frehley +COUNT +san +francisco +COUNT "rob halford" +COUNT united states constitution +COUNT "mid continent airport" +COUNT new haven +COUNT "blue ridge parkway" +COUNT "automatic writing" +COUNT +third +trimester +COUNT "ellen degeneres show" +COUNT +bankruptcy +laws +COUNT jonathan daniel +COUNT +william +wallace +COUNT +new +york +towns +COUNT +cartoon +network +COUNT +kasota +stone +COUNT gun magazines +COUNT +mid +continent +airport +COUNT "weather underground" +COUNT analog computer +COUNT +flow +meter +COUNT national book award +COUNT connecticut post +COUNT "premier wine" +COUNT +new +haven +COUNT "body painting" +COUNT +abilene +tx +COUNT "san francisco" +COUNT +movie +theatres +COUNT "perfume bottles" +COUNT +new +jersey +police +COUNT +kristanna +loken +COUNT +international +baseball +COUNT flow meter +COUNT +central +community +college +COUNT +bmw +engines +COUNT ventura college +COUNT "table lamps" +COUNT +naomi +wallace +COUNT +danube +river +COUNT +city +in +iran +COUNT "kristanna loken" +COUNT +carolyn +jones +COUNT human trafficking +COUNT edith wharton +COUNT kansas city kings +COUNT "david koresh" +COUNT robert fuller +COUNT +long +legs +COUNT naomi wallace +COUNT +iq +scores +COUNT "time for kids" +COUNT "japan airlines" +COUNT +little +shop +of +horrors +COUNT table lamps +COUNT "glass works" +COUNT +portrait +studio +COUNT +interest +only +COUNT "child support" +COUNT +region +iv +COUNT +all +funds +COUNT "term life insurance" +COUNT eastern mennonite university +COUNT spiritual warfare +COUNT "cured of cancer" +COUNT "civil war battlefields" +COUNT abilene tx +COUNT "canon powershot" +COUNT +car +stereo +COUNT "david lee roth" +COUNT "intramuscular injections" +COUNT elizabeth vargas +COUNT +warren +county +COUNT +graffiti +art +COUNT "kidney transplant" +COUNT "round table" +COUNT "dexter michigan" +COUNT new england aquarium +COUNT "connecticut post" +COUNT +penny +stocks +COUNT +new +york +population +COUNT +jungle +boy +COUNT "iq scores" +COUNT +kitchen +accessories +COUNT "laborers international union of north america" +COUNT +robert +reed +COUNT +virginia +usa +COUNT good luck +COUNT +bass +fishing +COUNT "elliott smith" +COUNT prayer times +COUNT "mercury insurance" +COUNT "jungle boy" +COUNT "printer ink" +COUNT milwaukee newspaper +COUNT missy elliott +COUNT ancient egypt +COUNT +texas +state +legislature +COUNT +jonathan +daniel +COUNT "anderson hospital" +COUNT "trans siberian orchestra" +COUNT +chicago +teachers +union +COUNT portrait studio +COUNT +old +photos +COUNT "robert green ingersoll" +COUNT +personal +chef +COUNT time in denver +COUNT "kitchen accessories" +COUNT +adobe +buildings +COUNT "george r brown convention center" +COUNT kitchen accessories +COUNT +bladder +tumor +COUNT "low estrogen" +COUNT "microsoft frontpage" +COUNT hempstead new york +COUNT color combinations +COUNT +ron +keel +COUNT antonio cromartie +COUNT "robert fuller" +COUNT +general +motors +COUNT +the +oregonian +newspaper +COUNT +the +incredibles +COUNT "too faced" +COUNT +university +of +akron +COUNT +developmental +delays +COUNT +trendy +clothes +COUNT +famous +quotes +COUNT elliott smith +COUNT +hurricane +wilma +COUNT the oregonian newspaper +COUNT "borders books" +COUNT +chicago +bulls +COUNT the +COUNT trendy clothes +COUNT +gun +magazines +COUNT "justin timberlake" +COUNT +human +trafficking +COUNT +spiritual +warfare +COUNT care a lot +COUNT playa del rey +COUNT "the book of life" +COUNT little cars +COUNT "centerville high school" +COUNT "georgia public broadcasting" +COUNT bass fishing +COUNT "human trafficking" +COUNT +open +source +software +COUNT "missy elliott" +COUNT dexter michigan +COUNT boulder city nevada +COUNT +miami +dade +college +COUNT critical care medicine +COUNT +john +wilkes +booth +COUNT "pocket pc" +COUNT +animal +rights +COUNT "playa del rey" +COUNT "cheap hotels" +COUNT +italian +translation +COUNT "plus size clothing" +COUNT +dexter +michigan +COUNT niceville high school +COUNT +japan +airlines +COUNT +columbia +university +COUNT lord of the rings +COUNT robert reed +COUNT +home +business +COUNT "law dictionary" +COUNT "hurricane wilma" +COUNT freelance work +COUNT new jersey police +COUNT +the +progressive +COUNT david kim +COUNT "ace frehley" +COUNT +john +wellington +COUNT "sore muscles" +COUNT +low +estrogen +COUNT "music stands" +COUNT +ventura +college +COUNT +padre +island +COUNT "fluid power" +COUNT the news journal +COUNT +heart +disease +COUNT business consultants +COUNT little shop of horrors +COUNT "ventura college" +COUNT +avon +school +COUNT "developmental delays" +COUNT "pump it up" +COUNT jamie murray +COUNT +glass +works +COUNT "new york times best sellers list" +COUNT "john wellington" +COUNT the preakness +COUNT +kansas +city +kings +COUNT "hawk mountain" +COUNT hotel del coronado +COUNT microsoft frontpage +COUNT danube river +COUNT interracial love +COUNT "little brown jug" +COUNT "sesame street" +COUNT +business +consultants +COUNT "national security cutter" +COUNT +trans +siberian +orchestra +COUNT omaha symphony +COUNT +sky +news +COUNT "philadelphia phillies" +COUNT +edith +head +COUNT automatic writing +COUNT +the +breakfast +club +COUNT "new york population" +COUNT +zip +code +COUNT +true +religion +COUNT robert green ingersoll +COUNT "jefferson davis high school" +COUNT texas death row +COUNT bladder tumor +COUNT +perfume +bottles +COUNT "antonio cromartie" +COUNT "costume designers" +COUNT mood swings +COUNT +milan +tennessee +COUNT personal chef +COUNT +roundabout +theatre +COUNT justin timberlake +COUNT +calvin +klein +COUNT naked news +COUNT usb hub +COUNT "back surgery" +COUNT carolyn jones +COUNT "montgomery college" +COUNT +kidney +transplant +COUNT walk the line +COUNT +civil +war +battlefields +COUNT "interracial love" +COUNT "foam mattress" +COUNT +food +carts +COUNT "aishwarya rai" +COUNT +round +table +COUNT +becoming +a +widow +COUNT term life insurance +COUNT +worcester +state +college +COUNT +automatic +writing +COUNT "evening wear" +COUNT +lord +of +the +rings +COUNT +time +for +kids +COUNT +danbury +ct +COUNT +google +satellite +COUNT +consumer +affairs +COUNT +john +donne +COUNT +binghamton +new +york +COUNT "chicken noodle soup" +COUNT "tennis elbow" +COUNT john donne +COUNT third trimester +COUNT montgomery college +COUNT "freedom tower" +COUNT +ace +frehley +COUNT wisconsin attorney general +COUNT +corpus +christi +tx +COUNT trans siberian orchestra +COUNT "catholic answers" +COUNT "lost episode" +COUNT +water +filters +COUNT "bass fishing" +COUNT +anderson +hospital +COUNT books on cd +COUNT the english restoration +COUNT +antonio +cromartie +COUNT game downloads +COUNT +intramuscular +injections +COUNT +toxic +encephalopathy +COUNT "books on cd" +COUNT fluid power +COUNT +the +book +of +life +COUNT "state of louisiana" +COUNT true religion +COUNT "york photo" +COUNT "decorative windows" +COUNT adobe buildings +COUNT +the +actors +studio +COUNT "business consultants" +COUNT oxford dictionary +COUNT most improved player +COUNT "st petersburg high school" +COUNT centerville high school +COUNT "bankruptcy laws" +COUNT +national +book +award +COUNT +david +koresh +COUNT jaguar x type +COUNT david koresh +COUNT "hempstead new york" +COUNT "color combinations" +COUNT +texas +death +row +COUNT "ford modeling agency" +COUNT weather underground +COUNT intramuscular injections +COUNT animal rights +COUNT +evening +wear +COUNT glass works +COUNT "the british embassy" +COUNT google satellite +COUNT "food carts" +COUNT +centerville +high +school +COUNT "bladder tumor" +COUNT +pocket +pc +COUNT open source software +COUNT +robert +fuller +COUNT law dictionary +COUNT "time in denver" +COUNT sleep study +COUNT camp claiborne +COUNT ron keel +COUNT home loan +COUNT "clothing optional" +COUNT "critical care medicine" +COUNT virginia usa +COUNT worcester state college +COUNT evening wear +COUNT fatherless children +COUNT "wildlife photography" +COUNT +akron +beacon +COUNT +music +stands +COUNT "university of akron" +COUNT "akron beacon" +COUNT "domain names" +COUNT +the +movement +COUNT back surgery +COUNT ambassador of italy +COUNT "secretary of state" +COUNT shih tzu +COUNT "american academy of child and adolescent psychiatry" +COUNT +secretary +of +state +COUNT "sarah fisher" +COUNT "canadian real estate" +COUNT mushroom kingdom +COUNT kidney transplant +COUNT "the movement" +COUNT "corpus christi tx" +COUNT +mercury +insurance +COUNT +philadelphia +phillies +COUNT +time +in +denver +COUNT "flow meter" +COUNT texas state legislature +COUNT "home business" +COUNT "debra jo rupp" +COUNT internet fraud +COUNT heart disease +COUNT "bowel obstruction" +COUNT "los angeles daily news" +COUNT binghamton new york +COUNT jefferson davis high school +COUNT "cherry blossom" +COUNT aishwarya rai +COUNT +farmers +almanac +COUNT the incredibles +COUNT +borders +books +COUNT "naomi wallace" +COUNT +cheap +hotels +COUNT "open source software" +COUNT +chicken +coop +COUNT "trendy clothes" +COUNT +tennis +elbow +COUNT cartoon network +COUNT seal pictures +COUNT "fatherless children" +COUNT +medal +of +honor +COUNT +battle +of +the +bulge +COUNT times union +COUNT +american +funds +COUNT "the breakfast club" +COUNT edith head +COUNT interest only +COUNT "danbury ct" +COUNT "car stereo" +COUNT air mattress +COUNT "mercedes benz" +COUNT +body +painting +COUNT "ambassador of italy" +COUNT +united +states +constitution +COUNT corpus christi tx +COUNT +john +klein +COUNT pump it up +COUNT big boss man +COUNT "farmers almanac" +COUNT +"the who" +uk +COUNT power rangers ninja storm +COUNT "personal chef" +COUNT "walk the line" +COUNT +hsbc +bank +COUNT +game +downloads +COUNT "milan tennessee" +COUNT david thornton +COUNT merry christmas +COUNT "people having sex" +COUNT "law school rankings" +COUNT "chicago public schools" +COUNT "american funds" +COUNT army reserve +COUNT new york towns +COUNT international baseball +COUNT "texas death row" +COUNT "medal of honor" +COUNT "most improved player" +COUNT "penny stocks" +COUNT +aishwarya +rai +COUNT sesame street +COUNT "canary bird" +COUNT +montessori +schools +COUNT old photos +COUNT +power +rangers +ninja +storm +COUNT water filters +COUNT "true religion" +COUNT +york +photo +COUNT "hot springs south dakota" +COUNT "new york towns" +COUNT avon school +COUNT "prayer times" +COUNT +eastern +mennonite +university +COUNT +georgia +public +broadcasting +COUNT +ancient +egypt +COUNT personal loan +COUNT laborers international union of north america +COUNT +fluid +power +COUNT the globe newspaper +COUNT +music +videos +COUNT +zion +national +park +COUNT columbia university +COUNT "new haven" +COUNT "padre island" +COUNT "region iv" +COUNT helen of troy +COUNT +elizabeth +vargas +COUNT "university of washington" +COUNT +french +culinary +institute +COUNT +american +academy +of +child +and +adolescent +psychiatry +COUNT foam mattress +COUNT "virginia usa" +COUNT +connecticut +historical +society +COUNT borders books +COUNT +new +york +times +best +sellers +list +COUNT mercedes benz +COUNT "niceville high school" +COUNT +world +bank +president +COUNT +good +luck +COUNT rob halford +COUNT kasota stone +COUNT "adobe buildings" +COUNT rolex watches +COUNT the british embassy +COUNT "jamie murray" +COUNT +the +garden +of +eden +COUNT perfume bottles +COUNT city in iran +COUNT "phone cases" +COUNT king kalakaua +COUNT "chicken coop" +COUNT "portrait studio" +COUNT +cognitive +impairment +COUNT "interest only" +COUNT "georgian architecture" +COUNT +microsoft +frontpage +COUNT +oxford +dictionary +COUNT too faced +COUNT little brown jug +COUNT world bank president +COUNT +robert +green +ingersoll +COUNT +us +coast +guard +COUNT hawk mountain +COUNT phone cases +COUNT +sleep +study +COUNT +freelance +work +COUNT medal of honor +COUNT mid continent airport +COUNT +st +petersburg +high +school +COUNT +ear +ache +COUNT jungle boy +COUNT home business +COUNT +canadian +real +estate +COUNT +bowel +obstruction +COUNT +color +combinations +COUNT "montessori schools" +COUNT +decorative +windows +COUNT "milwaukee newspaper" +COUNT immigration to mexico +COUNT +ellen +degeneres +show +COUNT +griffith +observatory +COUNT university of akron +COUNT +western +herald +COUNT "chicago bulls" +COUNT +state +of +louisiana +COUNT +hempstead +new +york +COUNT american academy of child and adolescent psychiatry +COUNT +critical +care +medicine +COUNT american funds +COUNT "italian translation" +COUNT +wisconsin +attorney +general +COUNT ford modeling agency +COUNT ear ache +COUNT georgia public broadcasting +COUNT +david +lee +roth +COUNT +ugly +people +COUNT "general motors" +COUNT "long legs" +COUNT george r brown convention center +COUNT "critical care nurse" +COUNT +west +palm +beach +florida +COUNT "freelance work" +COUNT "city in iran" +COUNT "power rangers ninja storm" +COUNT +stone +mountain +COUNT "tallest trees in the world" +COUNT +the +globe +newspaper +COUNT "jonathan daniel" +COUNT warren county +COUNT milan tennessee +COUNT +usb +hub +COUNT "internet fraud" +COUNT +prayer +times +COUNT "the daily breeze" +COUNT xena warrior princess +COUNT "omaha symphony" +COUNT "napa auto parts" +COUNT ford parts +COUNT west palm beach florida +COUNT people having sex +COUNT national security cutter +COUNT iq scores +COUNT "vicenza italy" +COUNT canon powershot +COUNT +elise +neal +COUNT "texas state legislature" +COUNT "avon school" +COUNT +tv +party +COUNT the breakfast club +COUNT "john klein" +COUNT "miami dade college" +COUNT "binghamton new york" +COUNT +foam +mattress +COUNT +missy +elliott +COUNT "carolyn jones" +COUNT "immigration to mexico" +COUNT domain names +COUNT +napa +auto +parts +COUNT all funds +COUNT "times union" +COUNT "shih tzu" +COUNT printer ink +COUNT round table +COUNT +false +prophets +COUNT +walk +the +line +COUNT "william wallace" +COUNT "old photos" +COUNT canary bird +COUNT +premier +wine +COUNT "lord of the rings" +COUNT "robert reed" +COUNT "animal rights" +COUNT "famous quotes" +COUNT "hsbc bank" +COUNT cherry blossom +COUNT "worcester state college" +COUNT becoming a widow +COUNT chicago teachers union +COUNT "king kalakaua" +COUNT "zip code" +COUNT "bmw engines" +COUNT "the preakness" +COUNT padre island +COUNT "cognitive impairment" +COUNT +canon +powershot +COUNT pocket pc +COUNT "edith wharton" +COUNT "david kim" +COUNT wildlife photography +COUNT tom welling +COUNT miami dade college +COUNT decorative windows +COUNT costume designers +COUNT +law +school +rankings +COUNT +jefferson +davis +high +school +COUNT farmers almanac +COUNT john wellington +COUNT +little +brown +jug +COUNT +rob +halford +COUNT penny stocks +COUNT +chicago +public +schools +COUNT +critical +care +nurse +COUNT "john donne" +COUNT +debra +jo +rupp +COUNT +new +england +aquarium +COUNT movie theatres +COUNT +hot +springs +south +dakota +COUNT western herald +COUNT "music videos" +COUNT +weather +underground +COUNT "rolex watches" +COUNT sky news +COUNT danbury ct +COUNT "central community college" +COUNT ugly people +COUNT +edith +wharton +COUNT "toxic encephalopathy" +COUNT "warren county" +COUNT zion national park +COUNT +freedom +tower +COUNT long legs +COUNT "consumer affairs" +COUNT sore muscles +COUNT scottsdale az +COUNT "columbia university" +COUNT +american +south +COUNT +connecticut +post +COUNT connecticut historical society +COUNT cured of cancer +COUNT +care +a +lot +COUNT +pump +it +up +COUNT "john wilkes booth" +COUNT "calvin klein" +COUNT "game downloads" +COUNT critical care nurse +COUNT +the +english +restoration +COUNT "united states constitution" +COUNT +clothing +optional +COUNT +printer +ink +COUNT "sky news" +COUNT "the oregonian newspaper" +COUNT "seal pictures" +COUNT "zion national park" +COUNT "becoming a widow" +COUNT general motors +COUNT the movement +COUNT "ron keel" +COUNT graduate management admission test +COUNT state of louisiana +COUNT +internet +fraud +COUNT +table +lamps +COUNT french culinary institute +COUNT us coast guard +COUNT +reading +museum +COUNT "us coast guard" +COUNT "ancient egypt" +COUNT cheap hotels +COUNT +jamie +murray +COUNT +mood +swings +COUNT blue ridge parkway +COUNT music videos +COUNT "helen of troy" +COUNT david lee roth +COUNT toxic encephalopathy +COUNT "graffiti art" +COUNT catholic answers +COUNT who dares wins +COUNT "health literacy" +COUNT +niceville +high +school +- Run #2 of 3 +COUNT philadelphia phillies +COUNT hurricane wilma +COUNT sarah fisher +COUNT +boulder +city +nevada +COUNT "ugly people" +COUNT +times +union +COUNT +seal +pictures +COUNT +mercedes +benz +COUNT car stereo +COUNT +omaha +symphony +COUNT +the +news +journal +COUNT elise neal +COUNT +interracial +love +COUNT canadian real estate +COUNT "personal loan" +COUNT barrett jackson +COUNT +jaguar +x +type +COUNT +personal +loan +COUNT +laborers +international +union +of +north +america +COUNT +fatherless +children +COUNT "tv party" +COUNT york photo +COUNT "sleep study" +COUNT italian translation +COUNT developmental delays +COUNT +too +faced +COUNT "eastern mennonite university" +COUNT +law +dictionary +COUNT "reading museum" +COUNT los angeles daily news +COUNT music stands +COUNT +health +literacy +COUNT +los +angeles +daily +news +COUNT "the news journal" +COUNT +montgomery +college +COUNT +national +security +cutter +COUNT freedom tower +COUNT "david thornton" +COUNT "mood swings" +COUNT san francisco +COUNT false prophets +COUNT "west palm beach florida" +COUNT +digital +scanning +COUNT "all funds" +COUNT +graduate +management +admission +test +COUNT central community college +COUNT +the +daily +breeze +COUNT civil war battlefields +COUNT "bismarck state college" +COUNT +child +support +COUNT +costume +designers +COUNT william wallace +COUNT calvin klein +COUNT "little shop of horrors" +COUNT "elizabeth vargas" +COUNT +most +improved +player +COUNT "naked news" +COUNT "boulder city nevada" +COUNT "kenosha wisconsin" +COUNT hot springs south dakota +COUNT "cartoon network" +COUNT vicenza italy +COUNT +camp +claiborne +COUNT +canary +bird +COUNT +shih +tzu +COUNT +xena +warrior +princess +COUNT +blue +ridge +parkway +COUNT "roundabout theatre" +COUNT +term +life +insurance +COUNT +david +thornton +COUNT "american south" +COUNT "the globe newspaper" +COUNT "battle of the bulge" +COUNT new york population +COUNT "heart disease" +COUNT griffith observatory +COUNT american south +COUNT john klein +COUNT +cherry +blossom +COUNT "world bank president" +COUNT child support +COUNT "big boss man" +COUNT "stone mountain" +COUNT reading museum +COUNT +ford +parts +COUNT cognitive impairment +COUNT new york times best sellers list +COUNT "care a lot" +COUNT "hotel del coronado" +COUNT consumer affairs +COUNT "good luck" +COUNT "new england aquarium" +COUNT +sore +muscles +COUNT +air +mattress +COUNT body painting +COUNT "the progressive" +COUNT +who +dares +wins +COUNT the progressive +COUNT "western herald" +COUNT kristanna loken +COUNT mercury insurance +COUNT +back +surgery +COUNT "wisconsin attorney general" +COUNT bmw engines +COUNT +sesame +street +COUNT "google satellite" +COUNT +people +having +sex +COUNT health literacy +COUNT "water filters" +COUNT +playa +del +rey +COUNT +mushroom +kingdom +COUNT region iv +COUNT +cured +of +cancer +COUNT +ford +modeling +agency +COUNT +catholic +answers +COUNT anderson hospital +COUNT time for kids +COUNT +domain +names +COUNT "graduate management admission test" +COUNT "movie theatres" +COUNT "the incredibles" +COUNT "spiritual warfare" +COUNT chicago bulls +COUNT "camp claiborne" +COUNT +hawk +mountain +COUNT "tom welling" +COUNT "kasota stone" +COUNT akron beacon +COUNT belcourt castle +COUNT low estrogen +COUNT "air mattress" +COUNT tallest trees in the world +COUNT +lost +episode +COUNT chicken noodle soup +COUNT "new jersey police" +COUNT roundabout theatre +COUNT jesus as a child +COUNT university of washington +COUNT +tom +welling +COUNT +tallest +trees +in +the +world +COUNT "gun magazines" +COUNT bankruptcy laws +COUNT "edith head" +COUNT "barrett jackson" +COUNT "false prophets" +COUNT japan airlines +COUNT +the +preakness +COUNT st petersburg high school +COUNT +vicenza +italy +COUNT "the garden of eden" +COUNT "french culinary institute" +COUNT battle of the bulge +COUNT "merry christmas" +COUNT +sarah +fisher +COUNT "elise neal" +COUNT digital scanning +COUNT food carts +COUNT "home loan" +COUNT +elliott +smith +COUNT john wilkes booth +COUNT lost episode +COUNT bowel obstruction +COUNT +helen +of +troy +COUNT "who dares wins" +COUNT bismarck state college +COUNT premier wine +COUNT tennis elbow +COUNT "griffith observatory" +COUNT +king +kalakaua +COUNT "ford parts" +COUNT +immigration +to +mexico +COUNT the daily breeze +COUNT +home +loan +COUNT "third trimester" +COUNT hsbc bank +COUNT +david +kim +COUNT napa auto parts +COUNT +jesus +as +a +child +COUNT +belcourt +castle +COUNT ellen degeneres show +COUNT "usb hub" +COUNT +chicken +noodle +soup +COUNT the book of life +COUNT the actors studio +COUNT chicken coop +COUNT +milwaukee +newspaper +COUNT "ear ache" +COUNT "jaguar x type" +COUNT +big +boss +man +COUNT secretary of state +COUNT +barrett +jackson +COUNT debra jo rupp +COUNT law school rankings +COUNT zip code +COUNT "scottsdale az" +COUNT "jesus as a child" +COUNT +rolex +watches +COUNT kenosha wisconsin +COUNT +kenosha +wisconsin +COUNT "oxford dictionary" +COUNT chicago public schools +COUNT +bismarck +state +college +COUNT "belcourt castle" +COUNT +army +reserve +COUNT +plus +size +clothing +COUNT "mushroom kingdom" +COUNT "army reserve" +COUNT +the +british +embassy +COUNT "analog computer" +COUNT famous quotes +COUNT +georgian +architecture +COUNT georgian architecture +COUNT "the english restoration" +COUNT +george +r +brown +convention +center +COUNT +university +of +washington +COUNT "connecticut historical society" +COUNT +books +on +cd +COUNT +hotel +del +coronado +COUNT +analog +computer +COUNT "kansas city kings" +COUNT "little cars" +COUNT the garden of eden +COUNT "chicago teachers union" +COUNT "national book award" +COUNT clothing optional +COUNT +merry +christmas +COUNT plus size clothing +COUNT +ambassador +of +italy +COUNT +wildlife +photography +COUNT tv party +COUNT "danube river" +COUNT "the actors studio" +COUNT "digital scanning" +COUNT montessori schools +COUNT +little +cars +COUNT "abilene tx" +COUNT "xena warrior princess" +COUNT stone mountain +COUNT +phone +cases +COUNT graffiti art +COUNT +scottsdale +az +COUNT "international baseball" +COUNT +naked +news +COUNT +justin +timberlake +COUNT ace frehley +COUNT +san +francisco +COUNT "rob halford" +COUNT united states constitution +COUNT "mid continent airport" +COUNT new haven +COUNT "blue ridge parkway" +COUNT "automatic writing" +COUNT +third +trimester +COUNT "ellen degeneres show" +COUNT +bankruptcy +laws +COUNT jonathan daniel +COUNT +william +wallace +COUNT +new +york +towns +COUNT +cartoon +network +COUNT +kasota +stone +COUNT gun magazines +COUNT +mid +continent +airport +COUNT "weather underground" +COUNT analog computer +COUNT +flow +meter +COUNT national book award +COUNT connecticut post +COUNT "premier wine" +COUNT +new +haven +COUNT "body painting" +COUNT +abilene +tx +COUNT "san francisco" +COUNT +movie +theatres +COUNT "perfume bottles" +COUNT +new +jersey +police +COUNT +kristanna +loken +COUNT +international +baseball +COUNT flow meter +COUNT +central +community +college +COUNT +bmw +engines +COUNT ventura college +COUNT "table lamps" +COUNT +naomi +wallace +COUNT +danube +river +COUNT +city +in +iran +COUNT "kristanna loken" +COUNT +carolyn +jones +COUNT human trafficking +COUNT edith wharton +COUNT kansas city kings +COUNT "david koresh" +COUNT robert fuller +COUNT +long +legs +COUNT naomi wallace +COUNT +iq +scores +COUNT "time for kids" +COUNT "japan airlines" +COUNT +little +shop +of +horrors +COUNT table lamps +COUNT "glass works" +COUNT +portrait +studio +COUNT +interest +only +COUNT "child support" +COUNT +region +iv +COUNT +all +funds +COUNT "term life insurance" +COUNT eastern mennonite university +COUNT spiritual warfare +COUNT "cured of cancer" +COUNT "civil war battlefields" +COUNT abilene tx +COUNT "canon powershot" +COUNT +car +stereo +COUNT "david lee roth" +COUNT "intramuscular injections" +COUNT elizabeth vargas +COUNT +warren +county +COUNT +graffiti +art +COUNT "kidney transplant" +COUNT "round table" +COUNT "dexter michigan" +COUNT new england aquarium +COUNT "connecticut post" +COUNT +penny +stocks +COUNT +new +york +population +COUNT +jungle +boy +COUNT "iq scores" +COUNT +kitchen +accessories +COUNT "laborers international union of north america" +COUNT +robert +reed +COUNT +virginia +usa +COUNT good luck +COUNT +bass +fishing +COUNT "elliott smith" +COUNT prayer times +COUNT "mercury insurance" +COUNT "jungle boy" +COUNT "printer ink" +COUNT milwaukee newspaper +COUNT missy elliott +COUNT ancient egypt +COUNT +texas +state +legislature +COUNT +jonathan +daniel +COUNT "anderson hospital" +COUNT "trans siberian orchestra" +COUNT +chicago +teachers +union +COUNT portrait studio +COUNT +old +photos +COUNT "robert green ingersoll" +COUNT +personal +chef +COUNT time in denver +COUNT "kitchen accessories" +COUNT +adobe +buildings +COUNT "george r brown convention center" +COUNT kitchen accessories +COUNT +bladder +tumor +COUNT "low estrogen" +COUNT "microsoft frontpage" +COUNT hempstead new york +COUNT color combinations +COUNT +ron +keel +COUNT antonio cromartie +COUNT "robert fuller" +COUNT +general +motors +COUNT +the +oregonian +newspaper +COUNT +the +incredibles +COUNT "too faced" +COUNT +university +of +akron +COUNT +developmental +delays +COUNT +trendy +clothes +COUNT +famous +quotes +COUNT elliott smith +COUNT +hurricane +wilma +COUNT the oregonian newspaper +COUNT "borders books" +COUNT +chicago +bulls +COUNT the +COUNT trendy clothes +COUNT +gun +magazines +COUNT "justin timberlake" +COUNT +human +trafficking +COUNT +spiritual +warfare +COUNT care a lot +COUNT playa del rey +COUNT "the book of life" +COUNT little cars +COUNT "centerville high school" +COUNT "georgia public broadcasting" +COUNT bass fishing +COUNT "human trafficking" +COUNT +open +source +software +COUNT "missy elliott" +COUNT dexter michigan +COUNT boulder city nevada +COUNT +miami +dade +college +COUNT critical care medicine +COUNT +john +wilkes +booth +COUNT "pocket pc" +COUNT +animal +rights +COUNT "playa del rey" +COUNT "cheap hotels" +COUNT +italian +translation +COUNT "plus size clothing" +COUNT +dexter +michigan +COUNT niceville high school +COUNT +japan +airlines +COUNT +columbia +university +COUNT lord of the rings +COUNT robert reed +COUNT +home +business +COUNT "law dictionary" +COUNT "hurricane wilma" +COUNT freelance work +COUNT new jersey police +COUNT +the +progressive +COUNT david kim +COUNT "ace frehley" +COUNT +john +wellington +COUNT "sore muscles" +COUNT +low +estrogen +COUNT "music stands" +COUNT +ventura +college +COUNT +padre +island +COUNT "fluid power" +COUNT the news journal +COUNT +heart +disease +COUNT business consultants +COUNT little shop of horrors +COUNT "ventura college" +COUNT +avon +school +COUNT "developmental delays" +COUNT "pump it up" +COUNT jamie murray +COUNT +glass +works +COUNT "new york times best sellers list" +COUNT "john wellington" +COUNT the preakness +COUNT +kansas +city +kings +COUNT "hawk mountain" +COUNT hotel del coronado +COUNT microsoft frontpage +COUNT danube river +COUNT interracial love +COUNT "little brown jug" +COUNT "sesame street" +COUNT +business +consultants +COUNT "national security cutter" +COUNT +trans +siberian +orchestra +COUNT omaha symphony +COUNT +sky +news +COUNT "philadelphia phillies" +COUNT +edith +head +COUNT automatic writing +COUNT +the +breakfast +club +COUNT "new york population" +COUNT +zip +code +COUNT +true +religion +COUNT robert green ingersoll +COUNT "jefferson davis high school" +COUNT texas death row +COUNT bladder tumor +COUNT +perfume +bottles +COUNT "antonio cromartie" +COUNT "costume designers" +COUNT mood swings +COUNT +milan +tennessee +COUNT personal chef +COUNT +roundabout +theatre +COUNT justin timberlake +COUNT +calvin +klein +COUNT naked news +COUNT usb hub +COUNT "back surgery" +COUNT carolyn jones +COUNT "montgomery college" +COUNT +kidney +transplant +COUNT walk the line +COUNT +civil +war +battlefields +COUNT "interracial love" +COUNT "foam mattress" +COUNT +food +carts +COUNT "aishwarya rai" +COUNT +round +table +COUNT +becoming +a +widow +COUNT term life insurance +COUNT +worcester +state +college +COUNT +automatic +writing +COUNT "evening wear" +COUNT +lord +of +the +rings +COUNT +time +for +kids +COUNT +danbury +ct +COUNT +google +satellite +COUNT +consumer +affairs +COUNT +john +donne +COUNT +binghamton +new +york +COUNT "chicken noodle soup" +COUNT "tennis elbow" +COUNT john donne +COUNT third trimester +COUNT montgomery college +COUNT "freedom tower" +COUNT +ace +frehley +COUNT wisconsin attorney general +COUNT +corpus +christi +tx +COUNT trans siberian orchestra +COUNT "catholic answers" +COUNT "lost episode" +COUNT +water +filters +COUNT "bass fishing" +COUNT +anderson +hospital +COUNT books on cd +COUNT the english restoration +COUNT +antonio +cromartie +COUNT game downloads +COUNT +intramuscular +injections +COUNT +toxic +encephalopathy +COUNT "books on cd" +COUNT fluid power +COUNT +the +book +of +life +COUNT "state of louisiana" +COUNT true religion +COUNT "york photo" +COUNT "decorative windows" +COUNT adobe buildings +COUNT +the +actors +studio +COUNT "business consultants" +COUNT oxford dictionary +COUNT most improved player +COUNT "st petersburg high school" +COUNT centerville high school +COUNT "bankruptcy laws" +COUNT +national +book +award +COUNT +david +koresh +COUNT jaguar x type +COUNT david koresh +COUNT "hempstead new york" +COUNT "color combinations" +COUNT +texas +death +row +COUNT "ford modeling agency" +COUNT weather underground +COUNT intramuscular injections +COUNT animal rights +COUNT +evening +wear +COUNT glass works +COUNT "the british embassy" +COUNT google satellite +COUNT "food carts" +COUNT +centerville +high +school +COUNT "bladder tumor" +COUNT +pocket +pc +COUNT open source software +COUNT +robert +fuller +COUNT law dictionary +COUNT "time in denver" +COUNT sleep study +COUNT camp claiborne +COUNT ron keel +COUNT home loan +COUNT "clothing optional" +COUNT "critical care medicine" +COUNT virginia usa +COUNT worcester state college +COUNT evening wear +COUNT fatherless children +COUNT "wildlife photography" +COUNT +akron +beacon +COUNT +music +stands +COUNT "university of akron" +COUNT "akron beacon" +COUNT "domain names" +COUNT +the +movement +COUNT back surgery +COUNT ambassador of italy +COUNT "secretary of state" +COUNT shih tzu +COUNT "american academy of child and adolescent psychiatry" +COUNT +secretary +of +state +COUNT "sarah fisher" +COUNT "canadian real estate" +COUNT mushroom kingdom +COUNT kidney transplant +COUNT "the movement" +COUNT "corpus christi tx" +COUNT +mercury +insurance +COUNT +philadelphia +phillies +COUNT +time +in +denver +COUNT "flow meter" +COUNT texas state legislature +COUNT "home business" +COUNT "debra jo rupp" +COUNT internet fraud +COUNT heart disease +COUNT "bowel obstruction" +COUNT "los angeles daily news" +COUNT binghamton new york +COUNT jefferson davis high school +COUNT "cherry blossom" +COUNT aishwarya rai +COUNT +farmers +almanac +COUNT the incredibles +COUNT +borders +books +COUNT "naomi wallace" +COUNT +cheap +hotels +COUNT "open source software" +COUNT +chicken +coop +COUNT "trendy clothes" +COUNT +tennis +elbow +COUNT cartoon network +COUNT seal pictures +COUNT "fatherless children" +COUNT +medal +of +honor +COUNT +battle +of +the +bulge +COUNT times union +COUNT +american +funds +COUNT "the breakfast club" +COUNT edith head +COUNT interest only +COUNT "danbury ct" +COUNT "car stereo" +COUNT air mattress +COUNT "mercedes benz" +COUNT +body +painting +COUNT "ambassador of italy" +COUNT +united +states +constitution +COUNT corpus christi tx +COUNT +john +klein +COUNT pump it up +COUNT big boss man +COUNT "farmers almanac" +COUNT +"the who" +uk +COUNT power rangers ninja storm +COUNT "personal chef" +COUNT "walk the line" +COUNT +hsbc +bank +COUNT +game +downloads +COUNT "milan tennessee" +COUNT david thornton +COUNT merry christmas +COUNT "people having sex" +COUNT "law school rankings" +COUNT "chicago public schools" +COUNT "american funds" +COUNT army reserve +COUNT new york towns +COUNT international baseball +COUNT "texas death row" +COUNT "medal of honor" +COUNT "most improved player" +COUNT "penny stocks" +COUNT +aishwarya +rai +COUNT sesame street +COUNT "canary bird" +COUNT +montessori +schools +COUNT old photos +COUNT +power +rangers +ninja +storm +COUNT water filters +COUNT "true religion" +COUNT +york +photo +COUNT "hot springs south dakota" +COUNT "new york towns" +COUNT avon school +COUNT "prayer times" +COUNT +eastern +mennonite +university +COUNT +georgia +public +broadcasting +COUNT +ancient +egypt +COUNT personal loan +COUNT laborers international union of north america +COUNT +fluid +power +COUNT the globe newspaper +COUNT +music +videos +COUNT +zion +national +park +COUNT columbia university +COUNT "new haven" +COUNT "padre island" +COUNT "region iv" +COUNT helen of troy +COUNT +elizabeth +vargas +COUNT "university of washington" +COUNT +french +culinary +institute +COUNT +american +academy +of +child +and +adolescent +psychiatry +COUNT foam mattress +COUNT "virginia usa" +COUNT +connecticut +historical +society +COUNT borders books +COUNT +new +york +times +best +sellers +list +COUNT mercedes benz +COUNT "niceville high school" +COUNT +world +bank +president +COUNT +good +luck +COUNT rob halford +COUNT kasota stone +COUNT "adobe buildings" +COUNT rolex watches +COUNT the british embassy +COUNT "jamie murray" +COUNT +the +garden +of +eden +COUNT perfume bottles +COUNT city in iran +COUNT "phone cases" +COUNT king kalakaua +COUNT "chicken coop" +COUNT "portrait studio" +COUNT +cognitive +impairment +COUNT "interest only" +COUNT "georgian architecture" +COUNT +microsoft +frontpage +COUNT +oxford +dictionary +COUNT too faced +COUNT little brown jug +COUNT world bank president +COUNT +robert +green +ingersoll +COUNT +us +coast +guard +COUNT hawk mountain +COUNT phone cases +COUNT +sleep +study +COUNT +freelance +work +COUNT medal of honor +COUNT mid continent airport +COUNT +st +petersburg +high +school +COUNT +ear +ache +COUNT jungle boy +COUNT home business +COUNT +canadian +real +estate +COUNT +bowel +obstruction +COUNT +color +combinations +COUNT "montessori schools" +COUNT +decorative +windows +COUNT "milwaukee newspaper" +COUNT immigration to mexico +COUNT +ellen +degeneres +show +COUNT +griffith +observatory +COUNT university of akron +COUNT +western +herald +COUNT "chicago bulls" +COUNT +state +of +louisiana +COUNT +hempstead +new +york +COUNT american academy of child and adolescent psychiatry +COUNT +critical +care +medicine +COUNT american funds +COUNT "italian translation" +COUNT +wisconsin +attorney +general +COUNT ford modeling agency +COUNT ear ache +COUNT georgia public broadcasting +COUNT +david +lee +roth +COUNT +ugly +people +COUNT "general motors" +COUNT "long legs" +COUNT george r brown convention center +COUNT "critical care nurse" +COUNT +west +palm +beach +florida +COUNT "freelance work" +COUNT "city in iran" +COUNT "power rangers ninja storm" +COUNT +stone +mountain +COUNT "tallest trees in the world" +COUNT +the +globe +newspaper +COUNT "jonathan daniel" +COUNT warren county +COUNT milan tennessee +COUNT +usb +hub +COUNT "internet fraud" +COUNT +prayer +times +COUNT "the daily breeze" +COUNT xena warrior princess +COUNT "omaha symphony" +COUNT "napa auto parts" +COUNT ford parts +COUNT west palm beach florida +COUNT people having sex +COUNT national security cutter +COUNT iq scores +COUNT "vicenza italy" +COUNT canon powershot +COUNT +elise +neal +COUNT "texas state legislature" +COUNT "avon school" +COUNT +tv +party +COUNT the breakfast club +COUNT "john klein" +COUNT "miami dade college" +COUNT "binghamton new york" +COUNT +foam +mattress +COUNT +missy +elliott +COUNT "carolyn jones" +COUNT "immigration to mexico" +COUNT domain names +COUNT +napa +auto +parts +COUNT all funds +COUNT "times union" +COUNT "shih tzu" +COUNT printer ink +COUNT round table +COUNT +false +prophets +COUNT +walk +the +line +COUNT "william wallace" +COUNT "old photos" +COUNT canary bird +COUNT +premier +wine +COUNT "lord of the rings" +COUNT "robert reed" +COUNT "animal rights" +COUNT "famous quotes" +COUNT "hsbc bank" +COUNT cherry blossom +COUNT "worcester state college" +COUNT becoming a widow +COUNT chicago teachers union +COUNT "king kalakaua" +COUNT "zip code" +COUNT "bmw engines" +COUNT "the preakness" +COUNT padre island +COUNT "cognitive impairment" +COUNT +canon +powershot +COUNT pocket pc +COUNT "edith wharton" +COUNT "david kim" +COUNT wildlife photography +COUNT tom welling +COUNT miami dade college +COUNT decorative windows +COUNT costume designers +COUNT +law +school +rankings +COUNT +jefferson +davis +high +school +COUNT farmers almanac +COUNT john wellington +COUNT +little +brown +jug +COUNT +rob +halford +COUNT penny stocks +COUNT +chicago +public +schools +COUNT +critical +care +nurse +COUNT "john donne" +COUNT +debra +jo +rupp +COUNT +new +england +aquarium +COUNT movie theatres +COUNT +hot +springs +south +dakota +COUNT western herald +COUNT "music videos" +COUNT +weather +underground +COUNT "rolex watches" +COUNT sky news +COUNT danbury ct +COUNT "central community college" +COUNT ugly people +COUNT +edith +wharton +COUNT "toxic encephalopathy" +COUNT "warren county" +COUNT zion national park +COUNT +freedom +tower +COUNT long legs +COUNT "consumer affairs" +COUNT sore muscles +COUNT scottsdale az +COUNT "columbia university" +COUNT +american +south +COUNT +connecticut +post +COUNT connecticut historical society +COUNT cured of cancer +COUNT +care +a +lot +COUNT +pump +it +up +COUNT "john wilkes booth" +COUNT "calvin klein" +COUNT "game downloads" +COUNT critical care nurse +COUNT +the +english +restoration +COUNT "united states constitution" +COUNT +clothing +optional +COUNT +printer +ink +COUNT "sky news" +COUNT "the oregonian newspaper" +COUNT "seal pictures" +COUNT "zion national park" +COUNT "becoming a widow" +COUNT general motors +COUNT the movement +COUNT "ron keel" +COUNT graduate management admission test +COUNT state of louisiana +COUNT +internet +fraud +COUNT +table +lamps +COUNT french culinary institute +COUNT us coast guard +COUNT +reading +museum +COUNT "us coast guard" +COUNT "ancient egypt" +COUNT cheap hotels +COUNT +jamie +murray +COUNT +mood +swings +COUNT blue ridge parkway +COUNT music videos +COUNT "helen of troy" +COUNT david lee roth +COUNT toxic encephalopathy +COUNT "graffiti art" +COUNT catholic answers +COUNT who dares wins +COUNT "health literacy" +COUNT +niceville +high +school +- Run #3 of 3 +COUNT philadelphia phillies +COUNT hurricane wilma +COUNT sarah fisher +COUNT +boulder +city +nevada +COUNT "ugly people" +COUNT +times +union +COUNT +seal +pictures +COUNT +mercedes +benz +COUNT car stereo +COUNT +omaha +symphony +COUNT +the +news +journal +COUNT elise neal +COUNT +interracial +love +COUNT canadian real estate +COUNT "personal loan" +COUNT barrett jackson +COUNT +jaguar +x +type +COUNT +personal +loan +COUNT +laborers +international +union +of +north +america +COUNT +fatherless +children +COUNT "tv party" +COUNT york photo +COUNT "sleep study" +COUNT italian translation +COUNT developmental delays +COUNT +too +faced +COUNT "eastern mennonite university" +COUNT +law +dictionary +COUNT "reading museum" +COUNT los angeles daily news +COUNT music stands +COUNT +health +literacy +COUNT +los +angeles +daily +news +COUNT "the news journal" +COUNT +montgomery +college +COUNT +national +security +cutter +COUNT freedom tower +COUNT "david thornton" +COUNT "mood swings" +COUNT san francisco +COUNT false prophets +COUNT "west palm beach florida" +COUNT +digital +scanning +COUNT "all funds" +COUNT +graduate +management +admission +test +COUNT central community college +COUNT +the +daily +breeze +COUNT civil war battlefields +COUNT "bismarck state college" +COUNT +child +support +COUNT +costume +designers +COUNT william wallace +COUNT calvin klein +COUNT "little shop of horrors" +COUNT "elizabeth vargas" +COUNT +most +improved +player +COUNT "naked news" +COUNT "boulder city nevada" +COUNT "kenosha wisconsin" +COUNT hot springs south dakota +COUNT "cartoon network" +COUNT vicenza italy +COUNT +camp +claiborne +COUNT +canary +bird +COUNT +shih +tzu +COUNT +xena +warrior +princess +COUNT +blue +ridge +parkway +COUNT "roundabout theatre" +COUNT +term +life +insurance +COUNT +david +thornton +COUNT "american south" +COUNT "the globe newspaper" +COUNT "battle of the bulge" +COUNT new york population +COUNT "heart disease" +COUNT griffith observatory +COUNT american south +COUNT john klein +COUNT +cherry +blossom +COUNT "world bank president" +COUNT child support +COUNT "big boss man" +COUNT "stone mountain" +COUNT reading museum +COUNT +ford +parts +COUNT cognitive impairment +COUNT new york times best sellers list +COUNT "care a lot" +COUNT "hotel del coronado" +COUNT consumer affairs +COUNT "good luck" +COUNT "new england aquarium" +COUNT +sore +muscles +COUNT +air +mattress +COUNT body painting +COUNT "the progressive" +COUNT +who +dares +wins +COUNT the progressive +COUNT "western herald" +COUNT kristanna loken +COUNT mercury insurance +COUNT +back +surgery +COUNT "wisconsin attorney general" +COUNT bmw engines +COUNT +sesame +street +COUNT "google satellite" +COUNT +people +having +sex +COUNT health literacy +COUNT "water filters" +COUNT +playa +del +rey +COUNT +mushroom +kingdom +COUNT region iv +COUNT +cured +of +cancer +COUNT +ford +modeling +agency +COUNT +catholic +answers +COUNT anderson hospital +COUNT time for kids +COUNT +domain +names +COUNT "graduate management admission test" +COUNT "movie theatres" +COUNT "the incredibles" +COUNT "spiritual warfare" +COUNT chicago bulls +COUNT "camp claiborne" +COUNT +hawk +mountain +COUNT "tom welling" +COUNT "kasota stone" +COUNT akron beacon +COUNT belcourt castle +COUNT low estrogen +COUNT "air mattress" +COUNT tallest trees in the world +COUNT +lost +episode +COUNT chicken noodle soup +COUNT "new jersey police" +COUNT roundabout theatre +COUNT jesus as a child +COUNT university of washington +COUNT +tom +welling +COUNT +tallest +trees +in +the +world +COUNT "gun magazines" +COUNT bankruptcy laws +COUNT "edith head" +COUNT "barrett jackson" +COUNT "false prophets" +COUNT japan airlines +COUNT +the +preakness +COUNT st petersburg high school +COUNT +vicenza +italy +COUNT "the garden of eden" +COUNT "french culinary institute" +COUNT battle of the bulge +COUNT "merry christmas" +COUNT +sarah +fisher +COUNT "elise neal" +COUNT digital scanning +COUNT food carts +COUNT "home loan" +COUNT +elliott +smith +COUNT john wilkes booth +COUNT lost episode +COUNT bowel obstruction +COUNT +helen +of +troy +COUNT "who dares wins" +COUNT bismarck state college +COUNT premier wine +COUNT tennis elbow +COUNT "griffith observatory" +COUNT +king +kalakaua +COUNT "ford parts" +COUNT +immigration +to +mexico +COUNT the daily breeze +COUNT +home +loan +COUNT "third trimester" +COUNT hsbc bank +COUNT +david +kim +COUNT napa auto parts +COUNT +jesus +as +a +child +COUNT +belcourt +castle +COUNT ellen degeneres show +COUNT "usb hub" +COUNT +chicken +noodle +soup +COUNT the book of life +COUNT the actors studio +COUNT chicken coop +COUNT +milwaukee +newspaper +COUNT "ear ache" +COUNT "jaguar x type" +COUNT +big +boss +man +COUNT secretary of state +COUNT +barrett +jackson +COUNT debra jo rupp +COUNT law school rankings +COUNT zip code +COUNT "scottsdale az" +COUNT "jesus as a child" +COUNT +rolex +watches +COUNT kenosha wisconsin +COUNT +kenosha +wisconsin +COUNT "oxford dictionary" +COUNT chicago public schools +COUNT +bismarck +state +college +COUNT "belcourt castle" +COUNT +army +reserve +COUNT +plus +size +clothing +COUNT "mushroom kingdom" +COUNT "army reserve" +COUNT +the +british +embassy +COUNT "analog computer" +COUNT famous quotes +COUNT +georgian +architecture +COUNT georgian architecture +COUNT "the english restoration" +COUNT +george +r +brown +convention +center +COUNT +university +of +washington +COUNT "connecticut historical society" +COUNT +books +on +cd +COUNT +hotel +del +coronado +COUNT +analog +computer +COUNT "kansas city kings" +COUNT "little cars" +COUNT the garden of eden +COUNT "chicago teachers union" +COUNT "national book award" +COUNT clothing optional +COUNT +merry +christmas +COUNT plus size clothing +COUNT +ambassador +of +italy +COUNT +wildlife +photography +COUNT tv party +COUNT "danube river" +COUNT "the actors studio" +COUNT "digital scanning" +COUNT montessori schools +COUNT +little +cars +COUNT "abilene tx" +COUNT "xena warrior princess" +COUNT stone mountain +COUNT +phone +cases +COUNT graffiti art +COUNT +scottsdale +az +COUNT "international baseball" +COUNT +naked +news +COUNT +justin +timberlake +COUNT ace frehley +COUNT +san +francisco +COUNT "rob halford" +COUNT united states constitution +COUNT "mid continent airport" +COUNT new haven +COUNT "blue ridge parkway" +COUNT "automatic writing" +COUNT +third +trimester +COUNT "ellen degeneres show" +COUNT +bankruptcy +laws +COUNT jonathan daniel +COUNT +william +wallace +COUNT +new +york +towns +COUNT +cartoon +network +COUNT +kasota +stone +COUNT gun magazines +COUNT +mid +continent +airport +COUNT "weather underground" +COUNT analog computer +COUNT +flow +meter +COUNT national book award +COUNT connecticut post +COUNT "premier wine" +COUNT +new +haven +COUNT "body painting" +COUNT +abilene +tx +COUNT "san francisco" +COUNT +movie +theatres +COUNT "perfume bottles" +COUNT +new +jersey +police +COUNT +kristanna +loken +COUNT +international +baseball +COUNT flow meter +COUNT +central +community +college +COUNT +bmw +engines +COUNT ventura college +COUNT "table lamps" +COUNT +naomi +wallace +COUNT +danube +river +COUNT +city +in +iran +COUNT "kristanna loken" +COUNT +carolyn +jones +COUNT human trafficking +COUNT edith wharton +COUNT kansas city kings +COUNT "david koresh" +COUNT robert fuller +COUNT +long +legs +COUNT naomi wallace +COUNT +iq +scores +COUNT "time for kids" +COUNT "japan airlines" +COUNT +little +shop +of +horrors +COUNT table lamps +COUNT "glass works" +COUNT +portrait +studio +COUNT +interest +only +COUNT "child support" +COUNT +region +iv +COUNT +all +funds +COUNT "term life insurance" +COUNT eastern mennonite university +COUNT spiritual warfare +COUNT "cured of cancer" +COUNT "civil war battlefields" +COUNT abilene tx +COUNT "canon powershot" +COUNT +car +stereo +COUNT "david lee roth" +COUNT "intramuscular injections" +COUNT elizabeth vargas +COUNT +warren +county +COUNT +graffiti +art +COUNT "kidney transplant" +COUNT "round table" +COUNT "dexter michigan" +COUNT new england aquarium +COUNT "connecticut post" +COUNT +penny +stocks +COUNT +new +york +population +COUNT +jungle +boy +COUNT "iq scores" +COUNT +kitchen +accessories +COUNT "laborers international union of north america" +COUNT +robert +reed +COUNT +virginia +usa +COUNT good luck +COUNT +bass +fishing +COUNT "elliott smith" +COUNT prayer times +COUNT "mercury insurance" +COUNT "jungle boy" +COUNT "printer ink" +COUNT milwaukee newspaper +COUNT missy elliott +COUNT ancient egypt +COUNT +texas +state +legislature +COUNT +jonathan +daniel +COUNT "anderson hospital" +COUNT "trans siberian orchestra" +COUNT +chicago +teachers +union +COUNT portrait studio +COUNT +old +photos +COUNT "robert green ingersoll" +COUNT +personal +chef +COUNT time in denver +COUNT "kitchen accessories" +COUNT +adobe +buildings +COUNT "george r brown convention center" +COUNT kitchen accessories +COUNT +bladder +tumor +COUNT "low estrogen" +COUNT "microsoft frontpage" +COUNT hempstead new york +COUNT color combinations +COUNT +ron +keel +COUNT antonio cromartie +COUNT "robert fuller" +COUNT +general +motors +COUNT +the +oregonian +newspaper +COUNT +the +incredibles +COUNT "too faced" +COUNT +university +of +akron +COUNT +developmental +delays +COUNT +trendy +clothes +COUNT +famous +quotes +COUNT elliott smith +COUNT +hurricane +wilma +COUNT the oregonian newspaper +COUNT "borders books" +COUNT +chicago +bulls +COUNT the +COUNT trendy clothes +COUNT +gun +magazines +COUNT "justin timberlake" +COUNT +human +trafficking +COUNT +spiritual +warfare +COUNT care a lot +COUNT playa del rey +COUNT "the book of life" +COUNT little cars +COUNT "centerville high school" +COUNT "georgia public broadcasting" +COUNT bass fishing +COUNT "human trafficking" +COUNT +open +source +software +COUNT "missy elliott" +COUNT dexter michigan +COUNT boulder city nevada +COUNT +miami +dade +college +COUNT critical care medicine +COUNT +john +wilkes +booth +COUNT "pocket pc" +COUNT +animal +rights +COUNT "playa del rey" +COUNT "cheap hotels" +COUNT +italian +translation +COUNT "plus size clothing" +COUNT +dexter +michigan +COUNT niceville high school +COUNT +japan +airlines +COUNT +columbia +university +COUNT lord of the rings +COUNT robert reed +COUNT +home +business +COUNT "law dictionary" +COUNT "hurricane wilma" +COUNT freelance work +COUNT new jersey police +COUNT +the +progressive +COUNT david kim +COUNT "ace frehley" +COUNT +john +wellington +COUNT "sore muscles" +COUNT +low +estrogen +COUNT "music stands" +COUNT +ventura +college +COUNT +padre +island +COUNT "fluid power" +COUNT the news journal +COUNT +heart +disease +COUNT business consultants +COUNT little shop of horrors +COUNT "ventura college" +COUNT +avon +school +COUNT "developmental delays" +COUNT "pump it up" +COUNT jamie murray +COUNT +glass +works +COUNT "new york times best sellers list" +COUNT "john wellington" +COUNT the preakness +COUNT +kansas +city +kings +COUNT "hawk mountain" +COUNT hotel del coronado +COUNT microsoft frontpage +COUNT danube river +COUNT interracial love +COUNT "little brown jug" +COUNT "sesame street" +COUNT +business +consultants +COUNT "national security cutter" +COUNT +trans +siberian +orchestra +COUNT omaha symphony +COUNT +sky +news +COUNT "philadelphia phillies" +COUNT +edith +head +COUNT automatic writing +COUNT +the +breakfast +club +COUNT "new york population" +COUNT +zip +code +COUNT +true +religion +COUNT robert green ingersoll +COUNT "jefferson davis high school" +COUNT texas death row +COUNT bladder tumor +COUNT +perfume +bottles +COUNT "antonio cromartie" +COUNT "costume designers" +COUNT mood swings +COUNT +milan +tennessee +COUNT personal chef +COUNT +roundabout +theatre +COUNT justin timberlake +COUNT +calvin +klein +COUNT naked news +COUNT usb hub +COUNT "back surgery" +COUNT carolyn jones +COUNT "montgomery college" +COUNT +kidney +transplant +COUNT walk the line +COUNT +civil +war +battlefields +COUNT "interracial love" +COUNT "foam mattress" +COUNT +food +carts +COUNT "aishwarya rai" +COUNT +round +table +COUNT +becoming +a +widow +COUNT term life insurance +COUNT +worcester +state +college +COUNT +automatic +writing +COUNT "evening wear" +COUNT +lord +of +the +rings +COUNT +time +for +kids +COUNT +danbury +ct +COUNT +google +satellite +COUNT +consumer +affairs +COUNT +john +donne +COUNT +binghamton +new +york +COUNT "chicken noodle soup" +COUNT "tennis elbow" +COUNT john donne +COUNT third trimester +COUNT montgomery college +COUNT "freedom tower" +COUNT +ace +frehley +COUNT wisconsin attorney general +COUNT +corpus +christi +tx +COUNT trans siberian orchestra +COUNT "catholic answers" +COUNT "lost episode" +COUNT +water +filters +COUNT "bass fishing" +COUNT +anderson +hospital +COUNT books on cd +COUNT the english restoration +COUNT +antonio +cromartie +COUNT game downloads +COUNT +intramuscular +injections +COUNT +toxic +encephalopathy +COUNT "books on cd" +COUNT fluid power +COUNT +the +book +of +life +COUNT "state of louisiana" +COUNT true religion +COUNT "york photo" +COUNT "decorative windows" +COUNT adobe buildings +COUNT +the +actors +studio +COUNT "business consultants" +COUNT oxford dictionary +COUNT most improved player +COUNT "st petersburg high school" +COUNT centerville high school +COUNT "bankruptcy laws" +COUNT +national +book +award +COUNT +david +koresh +COUNT jaguar x type +COUNT david koresh +COUNT "hempstead new york" +COUNT "color combinations" +COUNT +texas +death +row +COUNT "ford modeling agency" +COUNT weather underground +COUNT intramuscular injections +COUNT animal rights +COUNT +evening +wear +COUNT glass works +COUNT "the british embassy" +COUNT google satellite +COUNT "food carts" +COUNT +centerville +high +school +COUNT "bladder tumor" +COUNT +pocket +pc +COUNT open source software +COUNT +robert +fuller +COUNT law dictionary +COUNT "time in denver" +COUNT sleep study +COUNT camp claiborne +COUNT ron keel +COUNT home loan +COUNT "clothing optional" +COUNT "critical care medicine" +COUNT virginia usa +COUNT worcester state college +COUNT evening wear +COUNT fatherless children +COUNT "wildlife photography" +COUNT +akron +beacon +COUNT +music +stands +COUNT "university of akron" +COUNT "akron beacon" +COUNT "domain names" +COUNT +the +movement +COUNT back surgery +COUNT ambassador of italy +COUNT "secretary of state" +COUNT shih tzu +COUNT "american academy of child and adolescent psychiatry" +COUNT +secretary +of +state +COUNT "sarah fisher" +COUNT "canadian real estate" +COUNT mushroom kingdom +COUNT kidney transplant +COUNT "the movement" +COUNT "corpus christi tx" +COUNT +mercury +insurance +COUNT +philadelphia +phillies +COUNT +time +in +denver +COUNT "flow meter" +COUNT texas state legislature +COUNT "home business" +COUNT "debra jo rupp" +COUNT internet fraud +COUNT heart disease +COUNT "bowel obstruction" +COUNT "los angeles daily news" +COUNT binghamton new york +COUNT jefferson davis high school +COUNT "cherry blossom" +COUNT aishwarya rai +COUNT +farmers +almanac +COUNT the incredibles +COUNT +borders +books +COUNT "naomi wallace" +COUNT +cheap +hotels +COUNT "open source software" +COUNT +chicken +coop +COUNT "trendy clothes" +COUNT +tennis +elbow +COUNT cartoon network +COUNT seal pictures +COUNT "fatherless children" +COUNT +medal +of +honor +COUNT +battle +of +the +bulge +COUNT times union +COUNT +american +funds +COUNT "the breakfast club" +COUNT edith head +COUNT interest only +COUNT "danbury ct" +COUNT "car stereo" +COUNT air mattress +COUNT "mercedes benz" +COUNT +body +painting +COUNT "ambassador of italy" +COUNT +united +states +constitution +COUNT corpus christi tx +COUNT +john +klein +COUNT pump it up +COUNT big boss man +COUNT "farmers almanac" +COUNT +"the who" +uk +COUNT power rangers ninja storm +COUNT "personal chef" +COUNT "walk the line" +COUNT +hsbc +bank +COUNT +game +downloads +COUNT "milan tennessee" +COUNT david thornton +COUNT merry christmas +COUNT "people having sex" +COUNT "law school rankings" +COUNT "chicago public schools" +COUNT "american funds" +COUNT army reserve +COUNT new york towns +COUNT international baseball +COUNT "texas death row" +COUNT "medal of honor" +COUNT "most improved player" +COUNT "penny stocks" +COUNT +aishwarya +rai +COUNT sesame street +COUNT "canary bird" +COUNT +montessori +schools +COUNT old photos +COUNT +power +rangers +ninja +storm +COUNT water filters +COUNT "true religion" +COUNT +york +photo +COUNT "hot springs south dakota" +COUNT "new york towns" +COUNT avon school +COUNT "prayer times" +COUNT +eastern +mennonite +university +COUNT +georgia +public +broadcasting +COUNT +ancient +egypt +COUNT personal loan +COUNT laborers international union of north america +COUNT +fluid +power +COUNT the globe newspaper +COUNT +music +videos +COUNT +zion +national +park +COUNT columbia university +COUNT "new haven" +COUNT "padre island" +COUNT "region iv" +COUNT helen of troy +COUNT +elizabeth +vargas +COUNT "university of washington" +COUNT +french +culinary +institute +COUNT +american +academy +of +child +and +adolescent +psychiatry +COUNT foam mattress +COUNT "virginia usa" +COUNT +connecticut +historical +society +COUNT borders books +COUNT +new +york +times +best +sellers +list +COUNT mercedes benz +COUNT "niceville high school" +COUNT +world +bank +president +COUNT +good +luck +COUNT rob halford +COUNT kasota stone +COUNT "adobe buildings" +COUNT rolex watches +COUNT the british embassy +COUNT "jamie murray" +COUNT +the +garden +of +eden +COUNT perfume bottles +COUNT city in iran +COUNT "phone cases" +COUNT king kalakaua +COUNT "chicken coop" +COUNT "portrait studio" +COUNT +cognitive +impairment +COUNT "interest only" +COUNT "georgian architecture" +COUNT +microsoft +frontpage +COUNT +oxford +dictionary +COUNT too faced +COUNT little brown jug +COUNT world bank president +COUNT +robert +green +ingersoll +COUNT +us +coast +guard +COUNT hawk mountain +COUNT phone cases +COUNT +sleep +study +COUNT +freelance +work +COUNT medal of honor +COUNT mid continent airport +COUNT +st +petersburg +high +school +COUNT +ear +ache +COUNT jungle boy +COUNT home business +COUNT +canadian +real +estate +COUNT +bowel +obstruction +COUNT +color +combinations +COUNT "montessori schools" +COUNT +decorative +windows +COUNT "milwaukee newspaper" +COUNT immigration to mexico +COUNT +ellen +degeneres +show +COUNT +griffith +observatory +COUNT university of akron +COUNT +western +herald +COUNT "chicago bulls" +COUNT +state +of +louisiana +COUNT +hempstead +new +york +COUNT american academy of child and adolescent psychiatry +COUNT +critical +care +medicine +COUNT american funds +COUNT "italian translation" +COUNT +wisconsin +attorney +general +COUNT ford modeling agency +COUNT ear ache +COUNT georgia public broadcasting +COUNT +david +lee +roth +COUNT +ugly +people +COUNT "general motors" +COUNT "long legs" +COUNT george r brown convention center +COUNT "critical care nurse" +COUNT +west +palm +beach +florida +COUNT "freelance work" +COUNT "city in iran" +COUNT "power rangers ninja storm" +COUNT +stone +mountain +COUNT "tallest trees in the world" +COUNT +the +globe +newspaper +COUNT "jonathan daniel" +COUNT warren county +COUNT milan tennessee +COUNT +usb +hub +COUNT "internet fraud" +COUNT +prayer +times +COUNT "the daily breeze" +COUNT xena warrior princess +COUNT "omaha symphony" +COUNT "napa auto parts" +COUNT ford parts +COUNT west palm beach florida +COUNT people having sex +COUNT national security cutter +COUNT iq scores +COUNT "vicenza italy" +COUNT canon powershot +COUNT +elise +neal +COUNT "texas state legislature" +COUNT "avon school" +COUNT +tv +party +COUNT the breakfast club +COUNT "john klein" +COUNT "miami dade college" +COUNT "binghamton new york" +COUNT +foam +mattress +COUNT +missy +elliott +COUNT "carolyn jones" +COUNT "immigration to mexico" +COUNT domain names +COUNT +napa +auto +parts +COUNT all funds +COUNT "times union" +COUNT "shih tzu" +COUNT printer ink +COUNT round table +COUNT +false +prophets +COUNT +walk +the +line +COUNT "william wallace" +COUNT "old photos" +COUNT canary bird +COUNT +premier +wine +COUNT "lord of the rings" +COUNT "robert reed" +COUNT "animal rights" +COUNT "famous quotes" +COUNT "hsbc bank" +COUNT cherry blossom +COUNT "worcester state college" +COUNT becoming a widow +COUNT chicago teachers union +COUNT "king kalakaua" +COUNT "zip code" +COUNT "bmw engines" +COUNT "the preakness" +COUNT padre island +COUNT "cognitive impairment" +COUNT +canon +powershot +COUNT pocket pc +COUNT "edith wharton" +COUNT "david kim" +COUNT wildlife photography +COUNT tom welling +COUNT miami dade college +COUNT decorative windows +COUNT costume designers +COUNT +law +school +rankings +COUNT +jefferson +davis +high +school +COUNT farmers almanac +COUNT john wellington +COUNT +little +brown +jug +COUNT +rob +halford +COUNT penny stocks +COUNT +chicago +public +schools +COUNT +critical +care +nurse +COUNT "john donne" +COUNT +debra +jo +rupp +COUNT +new +england +aquarium +COUNT movie theatres +COUNT +hot +springs +south +dakota +COUNT western herald +COUNT "music videos" +COUNT +weather +underground +COUNT "rolex watches" +COUNT sky news +COUNT danbury ct +COUNT "central community college" +COUNT ugly people +COUNT +edith +wharton +COUNT "toxic encephalopathy" +COUNT "warren county" +COUNT zion national park +COUNT +freedom +tower +COUNT long legs +COUNT "consumer affairs" +COUNT sore muscles +COUNT scottsdale az +COUNT "columbia university" +COUNT +american +south +COUNT +connecticut +post +COUNT connecticut historical society +COUNT cured of cancer +COUNT +care +a +lot +COUNT +pump +it +up +COUNT "john wilkes booth" +COUNT "calvin klein" +COUNT "game downloads" +COUNT critical care nurse +COUNT +the +english +restoration +COUNT "united states constitution" +COUNT +clothing +optional +COUNT +printer +ink +COUNT "sky news" +COUNT "the oregonian newspaper" +COUNT "seal pictures" +COUNT "zion national park" +COUNT "becoming a widow" +COUNT general motors +COUNT the movement +COUNT "ron keel" +COUNT graduate management admission test +COUNT state of louisiana +COUNT +internet +fraud +COUNT +table +lamps +COUNT french culinary institute +COUNT us coast guard +COUNT +reading +museum +COUNT "us coast guard" +COUNT "ancient egypt" +COUNT cheap hotels +COUNT +jamie +murray +COUNT +mood +swings +COUNT blue ridge parkway +COUNT music videos +COUNT "helen of troy" +COUNT david lee roth +COUNT toxic encephalopathy +COUNT "graffiti art" +COUNT catholic answers +COUNT who dares wins +COUNT "health literacy" +COUNT +niceville +high +school diff --git a/common/datasets/minimal.json b/common/datasets/minimal.json deleted file mode 100644 index bc8f5ba8b99..00000000000 --- a/common/datasets/minimal.json +++ /dev/null @@ -1,5 +0,0 @@ -{"url":"https://en.wikipedia.org/wiki?curid=1", "title":"Donald Trump", "body": "Donald Trump is the 45th and current resident of the United States of America."} -{"url":"https://en.wikipedia.org/wiki?curid=2", "title":"Barack Obama", "body": "Barack Obama was the 44th president of the United States of America."} -{"url":"https://en.wikipedia.org/wiki?curid=3", "title":"George W. Bush", "body": "George W. Bush (Dubya) was the 43rd president of the United States of America."} -{"url":"https://en.wikipedia.org/wiki?curid=4", "title":"Bill Clinton", "body": "Bill Clinton was the 42nd president of the United States of America."} -{"url":"https://en.wikipedia.org/wiki?curid=5", "title":"George H. W. Bush", "body": "George H. W. Bush was the 41st president of the United States of America."} \ No newline at end of file diff --git a/common/datasets/trump_test.json b/common/datasets/trump_test.json deleted file mode 100644 index 02d829aca9e..00000000000 --- a/common/datasets/trump_test.json +++ /dev/null @@ -1 +0,0 @@ -{"url":"https://en.wikipedia.org/wiki?curid=49000468","title":"Diamond and Silk","body":"\nDiamond and Silk\n\nLynnette Hardaway and Rochelle Richardson, better known by their stage name Diamond and Silk are an African American duo mainly active as video bloggers and YouTube personalities. Hardaway and her co-host Richardson are former Democrats. The duo came to wider prominence in 2015 as supporters of conservative Presidential candidate Donald Trump after posting a video criticizing Fox News host Megyn Kelly for asking irrelevant questions during the first GOP candidate debate. While they are not formally affiliated with the Trump campaign or paid by it, they have been urging other supporters of Trump to follow suit on social media and at rallies. They have also created a \"ditch and switch\" website explaining to voters which states are closed primaries and when the deadlines are for changing party affiliations. They are biological sisters from North Carolina who say they stand with the silent majority, voicing their opinions about \"media bias, political babble, and repetitive political tactics that they feel the average American is tired of being subjected to.\" \nThe duo first joined Donald Trump as the Stump for Trump Girls on stage at his Raleigh, North Carolina rally on December 4, 2015. They later riled up the crowd at the Trump rally on January 2, 2016, in Biloxi, Mississippi, that attracted more than 14,000 people. At the Biloxi rally, the duo urged Democrats and independents in the audience to \"ditch and switch\", \"i.e.\", to register as Republicans and vote for Donald Trump in the primary and general election. It is believed that these two sisters are having a big impact because Americans from different nationality are changing their party affiliation from Democrats and Independents to Republicans just to vote for Donald J. Trump.\n\n"} \ No newline at end of file diff --git a/common/queries/countries.txt b/common/queries/countries.txt deleted file mode 100644 index 2a4b3f5b2b5..00000000000 --- a/common/queries/countries.txt +++ /dev/null @@ -1,6 +0,0 @@ -United -States -+United +States -"United States" -Japan -France diff --git a/common/queries/misc.txt b/common/queries/misc.txt deleted file mode 100644 index 35e0b8fa351..00000000000 --- a/common/queries/misc.txt +++ /dev/null @@ -1,2 +0,0 @@ -nurse doctor dentist surgeon anesthesiologist anesthetist "respiratory therapist" cardiologist intensivist neonatologist dermatologist "emergency medical technician" endocrinologist geriatrician gastroenterologist haematologist phlebotomist hephrologist neurologist audiologist "speech language pathologist" oncologist "radiation therapist" opthamologist optometrist -tonkatsu takoyaki sushi "miso soup" ramen udon soba tsukemen "chicken nanban" karage karaage sashimi teishoku "curry rice" "hayashi rice" mochi omurice onigiri okayu gyudon donburi katsudon oyakodon tekkadon tempura "curry bread" gyoza okonomiyaki kushikatsu yakiniku yakitori diff --git a/common/queries/presidents.txt b/common/queries/presidents.txt deleted file mode 100644 index 1d256d0404a..00000000000 --- a/common/queries/presidents.txt +++ /dev/null @@ -1,8 +0,0 @@ -"donald trump" -"trump Donald" -"barack obama" -"george bush" -+george +bush -"george w. bush" -"george h. w. bush" -"bill clinton" diff --git a/common/queries/sampled_queries.txt b/common/queries/sampled_queries.txt deleted file mode 100644 index 9785336c78c..00000000000 --- a/common/queries/sampled_queries.txt +++ /dev/null @@ -1,100000 +0,0 @@ -LeBron James -Nancy Pelosi -Winter Olympics -Sergei Eisenstein -Florida shooting -Super Bowl 2018 -Kylie Jenner -Kylie Jenner -Quincy Jones -SAG Awards 2018 -Cloverfield Paradox -Carter G. Woodson -Jimmy Garoppolo -Vikings Vs Eagles -Virginia Woolf -Did the Groundhog See His Shadow -Paula Modersohn-Becker -Justin Timberlake -Oscar Nominations 2018 -Mark Salling -stock market -Carter G. Woodson -Florida shooting -Kylie Jenner Baby Girl -Patriots -Patriots -Super Bowl score -Olympic Medal Count -Elizabeth Blackwell -Winter Olympics -Walter Payton -NBA Trades -Warren Miller -Winter Olympics -James Baldwin -Super Bowl score -Patriots -Simona Halep -Grammys 2018 -Carter G. Woodson -Patriots -Carter G. Woodson -Alex Reimer -Carter G. Woodson -Carter G. Woodson -Super Bowl 2018 -Groundhog Day 2018 -Hostiles Movie -Kylie Jenner -Cloverfield Paradox -Kentucky shooting -Patriots -calculator -Patriots -Elizabeth Blackwell -Carter G. Woodson -Blake Griffin -Johnny Weir -Vanity Fair Cover -Lindsey Vonn -Melania Trump -Patriots -Mardi Gras 2018 -Grammys 2018 -Mardi Gras 2018 -SpaceX -Mark Salling -Sergei Eisenstein -Carter G. Woodson -Kylie Jenner -Jennifer Aniston -Fifty Shades Freed -Kelly Clark -Vic Damone -Super Bowl 2018 -Earthquake Today -Rasual Butler -Paula Modersohn-Becker -Mark Salling -Did the Groundhog See His Shadow -Patriots -Patriots -Florida shooting -Lee Miglin -Government Shutdown -Lakers -School Closings -Carter G. Woodson -Gregory Salcido -Fifty Shades Freed -Scandal -Wilder Penfield -Trey Gowdy -Wilder Penfield -Justin Timberlake -Paula Modersohn-Becker -Blake Griffin -Megan Barry -Government Shutdown 2018 -calculator -Fredo Santana -Super Bowl 2018 -Wilder Penfield -Montreal Cognitive Assessment -Elizabeth Blackwell -Sergei Eisenstein -Government Shutdown 2018 -MS13 -Florida shooting -NBA Trades -Robert Wagner -Carter G. Woodson -Wilder Penfield -Greg Monroe -Google Classroom -SAG Awards 2018 -Sergei Eisenstein -Carter G. Woodson -Forever My Girl -Carter G. Woodson -Sergei Eisenstein -Wilder Penfield -Patriots -Tom Brady -Dow Jones -Winter Olympics -What Time Is The Super Bowl -State of the Union -Winter Olympics -calculator -Florida shooting -Super Bowl 2018 -Wilder Penfield -Dolly Parton -Bitcoin Price -Super Bowl 2018 -LeBron James -Frank Reich -Edwin Jackson -Happy Valentines Day -Grammys 2018 -Olympic Medal Count -Google docs -Grammys 2018 -Virginia Woolf -Super Bowl score -Winter Olympics -Wilder Penfield -Super Bowl 2018 -Kristaps Porzingis -Virginia Woolf -Super Bowl 2018 -Justin Timberlake -calculator -IXL -Lady Bird -Wilder Penfield -Hostiles -Carter G. Woodson -Patriots -Florida shooting -Super Bowl 2018 -Altered Carbon -Amy Schumer -Greg Monroe -United States Postal Service -Carter G. Woodson -Winter Olympics -Government Shutdown -Paul Ryan -JUUL -Pro Bowl 2018 -Harley Barber -Grammys 2018 -Dow Jones -Lauren Davis -Grammys 2018 -Kylie Jenner -Mardi Gras 2018 -Wilder Penfield -Grammys 2018 -Pro Bowl 2018 -Google Classroom -Virginia Woolf -Vic Damone -Winter Olympics -Omarosa -Patriots -Grammys 2018 -Patriots -Super Bowl score -Black Panther -Larry Nassar -NBA Trades -Tom Brady daughter -Patriots -Memo -Daryle Singletary -School Closings -What Time Is The Super Bowl -Super Bowl Commercials 2018 -Cloverfield Paradox -Andrew Cunanan -Kylie Jenner -Elizabeth Blackwell -Tyler Hilinski -Shaun White -Larry Nassar -stock market -Justin Timberlake -Super Bowl 2018 -Carter G. Woodson -Sergei Eisenstein -Shaun White -Patriots -Mark Salling -Winter Olympics -Sergei Eisenstein -Tonga -School Closings -Valentines Day Images -Jennifer Aniston -Patriots -Government shutdown -Sal Castro Middle School -Wilder Penfield -Florida shooting -Super Blue Blood Moon -Kim Kardashian -Stock Market Crash Today -Tyler Hilinski -United States Of America Winter Olympics -Kylie Jenner -Patriots -Super Bowl score -school closings -Patriots -Patriots -Terrell Owens -Rob Porter -Winter Olympics -Super Bowl 2018 -Sergei Eisenstein -Tiger Woods -Elizabeth Blackwell -Winter Olympics -Carter G. Woodson -Super blue blood Moon -Super Bowl score -Friends The Movie 2018 -Blue Moon -Grammys 2018 -Valentines Day Memes -Government Shutdown Meaning -Naya Rivera -Super Bowl score -Rasual Butler -Patriots -Reg E Cathey -Groundhog Day 2018 -Lakers -Columbine -Bob Dole -Super Bowl score -Black Panther -Sergei Eisenstein -SpaceX -Wilder Penfield -Super Bowl Commercials 2018 -Florida shooting -Super Bowl 2018 -Paula Modersohn-Becker -Sergei Eisenstein -Zuleyka Rivera -Apolo Ohno -Kim Cattrall -Paula Modersohn-Becker -SpaceX -Kylie Jenner -Super Bowl score -Florida shooting -Johnny Weir -Paula Modersohn-Becker -Google Classroom -earthquake today -Virginia Woolf -Super Bowl score -Jalen Ramsey -Patriots -Johnny Weir -Google docs -Frank Reich -SpaceX -Virginia Woolf -Forever My Girl -Virginia Woolf -Virginia Woolf -Royal Rumble 2018 -Sergei Eisenstein -Virginia Woolf -Carter G. Woodson -Omarosa -Carter G. Woodson -Elizabeth Blackwell -Joe Kennedy -Wilder Penfield -Blue Ivy -Purdue Basketball -Obama portrait -Government Shutdown -Dow Jones -Lauren Davis -XFL -Virginia Woolf -Justin Timberlake -school closings -Cherry Seaborn -Winter Olympics -Valentines Day -Government shutdown 2018 -Obama portrait -Virginia Woolf -Kylie Jenner -Super Bowl 2018 -Carter G. Woodson -Edible Arrangements -Justin Timberlake -This Is Us -Alexander Polinsky -Grammys 2018 -Despacito -Phantom Thread -Carter G. Woodson -Justin Timberlake -Super Bowl score -Solo Trailer -Grammys 2018 -Chrissy Teigen -Kylie Jenner Baby Girl -Kylie Jenner -Paula Modersohn-Becker -Paula Modersohn-Becker -Government shutdown -Groundhog Day 2018 -Paula Modersohn-Becker -Happy Valentines Day -Taiwan Earthquake Today -SpaceX -Justin Timberlake -Deadpool 2 -CNN -Super Bowl score -Fred Savage -Johnny Manziel -Winter Olympics -Super Bowl score -Carter G. Woodson -Matt Patricia -Carter G. Woodson -Patriots -Jen Selter -Sergei Eisenstein -State of the Union -Grammys 2018 -Amy Schumer -Johnny Weir -Julie Ertz -Virginia Woolf -Paula Modersohn-Becker -Anna Kournikova -Tennys Sandgren -Government Shutdown -Sergei Eisenstein -Lonzo Ball -SpaceX -Government Shutdown Meaning -Paula Modersohn-Becker -Justin Timberlake -Paula Modersohn-Becker -Alex Smith -Sergei Eisenstein -Jamie Anderson -Super Bowl 2018 -Mikaela Shiffrin -Larry Nassar -Government Shutdown Meaning -Government shutdown -United States Postal Service -Scott Baio -Google Classroom -What Time Is The Super Bowl -Elton John -Florida shooting -Wilder Penfield -Winter Olympics -Wilder Penfield -Fredo Santana -Justin Timberlake -Elizabeth Blackwell -Jessica Chastain -Bitcoin Price -Dow Jones -Trump State of the Union -Chief Wahoo -Florida shooting -Florida shooting -Virginia Woolf -UFC 220 -Super Bowl 2018 -Tyler Hilinski -What Time Is The Super Bowl -Rob Delaney -Florida shooting -Woody Allen -Sergei Eisenstein -Super Bowl 2018 -Grammys 2018 -Super blue blood Moon -Aliona Savchenko -SpaceX -Paula Modersohn-Becker -Culture 2 -Super Bowl score -Kingdom Come Deliverance -Florida shooting -Chicago West -Chinese New Year 2018 -John Mahoney -H&r Block -Royal Rumble 2018 -Super Bowl 2018 -Sergei Eisenstein -DeMarcus Cousins -Sarah Barthel -Amy Schumer -Sergei Eisenstein -Alaska earthquake -Winter Olympics -Greg Monroe -Jimmy Garoppolo -Yu Darvish -Kristaps Porzingis -Super Bowl score -Valentines Day -Neil Diamond -Obama portrait -Wilder Penfield -Super Bowl 2018 -Paula Modersohn-Becker -NBC Sports -Mark Salling -Otto Warmbier -Black Panther -Sergei Eisenstein -Justin Timberlake -Mikaela Shiffrin -Winter Olympics -Super Bowl score -What Time Is The Super Bowl -Kylie Jenner -Government shutdown -Mexico earthquake -Kylie Jenner -Virginia Woolf -Ellen Pompeo -Justin Timberlake -H&r Block -Patriots -Super Bowl score -Grammys 2018 -Daytona 500 -Virginia Woolf -UFC 220 -Jenna Morasca -Fortnite New Map -Virginia Woolf -State of the Union -Super Bowl score -Pro Bowl 2018 -Carter G. Woodson -Super blue blood Moon -Alex Reimer -Ursula Le Guin -The Home Depot -Edible Arrangements -Florida shooting -Stormi -Groundhog Day 2018 -Paula Modersohn-Becker -Wilder Penfield -Obama portrait -Joel Taylor -Bitcoin Price -What Time Is The Super Bowl -Esteban Loaiza -Early Man -What Time Is The Super Bowl -Super Bowl score -Black Panther -Carter G. Woodson -Tsunami Warning -Virginia Woolf -Super Bowl score -Shaun White -Jennifer Aniston -Duke Basketball -Elizabeth Blackwell -Amy Schumer -Aaron Feis -Super Bowl score -Ash Wednesday -Florida shooting -Carter G. Woodson -Florida shooting -Wilder Penfield -Paula Modersohn-Becker -Stormi -Woody Allen -Mark Salling -Groundhog Day 2018 -Bradie Tennell -Winter Olympics -Memo -Jeremy London -Alex Smith -Patriots -Black Panther -Paula Modersohn-Becker -Florida shooting -Virginia Woolf -Incredibles 2 -Wilder Penfield -Puppy Bowl 2018 -Peter Rabbit -Patriots -Patriots -Sal Castro Middle School -Cavs -New California -Chinese New Year 2018 -Justin Timberlake -Patriots -Kylie Jenner -Virginia Woolf -Virginia Woolf -Wilder Penfield -Pro Bowl 2018 -Winter Olympics -Super Bowl 2018 -Kim Kardashian -Super Bowl 2018 -Jon Huntsman -Carter G. Woodson -Carter G. Woodson -Black Panther -Olympic Medal Count -Rasual Butler -Sergei Eisenstein -Florida shooting -Release The Memo -Florida shooting -What Time Is The Super Bowl -Florida shooting -Sergei Eisenstein -Greg Monroe -Omarosa -Jamie Anderson -Senior Bowl -Grammys 2018 -What Time Is The Super Bowl -Paula Modersohn-Becker -stock market -What Time Is The Super Bowl -Korea -Snapchat Update -Olympic medal count -Chinese New Year 2018 -Elizabeth Blackwell -Meteor -Jimmy Garoppolo -Super Bowl 2018 -Super Bowl score -Happy Valentines Day -Patriots -Winter Olympics -Fifty Shades Freed -New California -Carter G. Woodson -Rasual Butler -Real Madrid -State of the Union -Florida shooting -Tom Petty -SpaceX -Elizabeth Blackwell -Amy Schumer -Winter Olympics -Paula Modersohn-Becker -Sergei Eisenstein -Mardi Gras 2018 -Government shutdown -Solo Trailer -Super blue blood Moon -Amy Schumer -Super blue blood Moon -Government Shutdown 2018 -Winter Olympics -Winter Olympics -Patriots -Government Shutdown -Cherry Seaborn -Joe Kennedy -Jason Kelce -Jennifer Aniston -Super Bowl score -NBA Trades -Larry Nassar -Super Bowl score -Paula Modersohn-Becker -Patriots -Winter Olympics -Sammy Sosa -Super Bowl 2018 -State of the Union -Cherry Seaborn -Amy Schumer -Greg Monroe -Patriots -Paula Modersohn-Becker -Josh McDaniels -Carter G. Woodson -Tom Izzo -SAG Awards 2018 -SpaceX -Kim Kardashian -Carter G. Woodson -Shaun White -Grammys 2018 -Paula Modersohn-Becker -Alex Smith -SpaceX -Google Drive -Super blue blood Moon -Enzo Amore -Elizabeth Blackwell -Larry Nassar -Government Shutdown -Florida shooting -Government shutdown 2018 -Virginia Woolf -Winter Olympics -Super Bowl score -Did the Groundhog See His Shadow -Paula Modersohn-Becker -Winter Olympics -Elizabeth Blackwell -Elizabeth Blackwell -Cory Booker -Carrie Underwood -Mardi Gras 2018 -Daryle Singletary -Patriots -Winter Olympics -Elizabeth Blackwell -Super Bowl score -Justin Timberlake -Justin Timberlake -John Mahoney -Shaun White -XFL -Super blue blood Moon -Patriots -Super Bowl Commercials 2018 -Netflix Stock -Altered Carbon -Bob Dole -Larry Nassar -Virginia Woolf -Alessia Cara -Jennifer Aniston -NBA Trades -Super Bowl 2018 -Super Bowl score -Oscar Nominations 2018 -Winter Olympics -Elizabeth Blackwell -Virginia Woolf -Wilder Penfield -Government shutdown 2018 -Paula Modersohn-Becker -Virginia Woolf -Paula Modersohn-Becker -Paula Modersohn-Becker -Sarah Barthel -Den of Thieves -tsunami -Tiger Woods -Roger Federer -Florida shooting -Florida shooting -Danielle Herrington -Amy Schumer -Adam Rippon -Chinese New Year 2018 -Super Bowl score -SpaceX -What Time Is The Super Bowl -Sal Castro Middle School -Rasual Butler -Lari White -Virginia Woolf -What Time Is The Super Bowl -Happy Valentines Day -Super Bowl score -Groundhog Day 2018 -Winter Olympics -This Is Us -Luke Wilson -CNN -Yuzuru Hanyu -calculator -Carter G. Woodson -Carter G. Woodson -Steve Mcnair -Carter G. Woodson -SpaceX -Elizabeth Blackwell -Virginia Woolf -Post Malone -Super Bowl 2018 -SpaceX -Happy Valentines Day -Larry Nassar -Super Bowl 2018 -Chinese New Year 2018 -Florida shooting -Happy Valentines Day -Groundhog Day 2018 -Sergei Eisenstein -Bitcoin Price -Johnny Weir -Florida shooting -Chris Paul -Paula Modersohn-Becker -Super Bowl Commercials 2018 -School Closings -Carter G. Woodson -Super Bowl Commercials 2018 -Government Shutdown -Joel Taylor -Alaska earthquake -Virginia Woolf -Childish Gambino -Yahoo Finance -Shaun White -Grammys 2018 -State of the Union -Black Panther -Patriots -Chloe Kim -Vikings Vs Eagles -Wilder Penfield -Paula Modersohn-Becker -Carter G. Woodson -Sergei Eisenstein -Kylie Jenner -Super Bowl score -SAG Awards 2018 -Patti LuPone -Houston Rockets -Super Bowl score -Dwyane Wade -Sabrina Dhowre -Jason Kidd -Gianni Versace -Red Gerard -Elizabeth Blackwell -Red Gerard -CNN -NBA Trades -Patriots -Paula Modersohn-Becker -Patriots -Chinese New Year 2018 -Kratom -Alessia Cara -Super Bowl 2018 -Lena Zawaideh -NFC Championship Game 2018 -Google Drive -Paula Modersohn-Becker -Walter Payton -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl score -NBA Trades -Royal Rumble 2018 -What Time Is The Super Bowl -Patriots -Justin Timberlake -Super Bowl 2018 -Government shutdown 2018 -Florida shooting -Patriots -Brynn Cameron -Daryle Singletary -Super Bowl score -Paula Modersohn-Becker -Emily Sweeney -Paula Modersohn-Becker -Zion Williamson -Patriots -DeMarcus Cousins -Paula Modersohn-Becker -Jennifer Aniston -Sergei Eisenstein -Larry Nassar -Mardi Gras 2018 -Wilder Penfield -Wilder Penfield -Cavs -Happy Valentines Day -Scott Baio -Virginia Woolf -Elizabeth Blackwell -Grammys 2018 -Arsenal -Winter Olympics -Elton John -Government Shutdown 2018 -Patti LuPone -Carter G. Woodson -Florida shooting -Paula Modersohn-Becker -Obama portrait -Elizabeth Blackwell -Ncaa Basketball Top 25 -Super Bowl 2018 -Paula Modersohn-Becker -Alaska earthquake -Cavs -Alexa Commercial -Florida shooting -Government Shutdown -Anna Kournikova -Florida shooting -Happy Valentines Day -NBA Trades -Royal Rumble 2018 -Timor Leste -Mcdonald's -Elizabeth Blackwell -What Time Is The Super Bowl -Amtrak -SpaceX -Winter Olympics -Elizabeth Blackwell -Blood Moon -Super Bowl 2018 -Olympic medal count -Altered Carbon -Virginia Woolf -What Time Is The Super Bowl -Vikings Vs Eagles -Chicago West -Wilder Penfield -Super Bowl score -Virginia Woolf -This Is Us -Peter Rabbit -Rachel Brand -Greg Monroe -All Star Weekend 2018 -Bill Paxton -Super Bowl score -Larry Nassar -Justin Timberlake -Government Shutdown 2018 -Super Bowl 2018 -Elizabeth Blackwell -Shaun White -Valentines Day -Dow Jones -Super Bowl 2018 -Kylie Jenner -earthquake today -Peter Rabbit -Kylie Jenner Baby Girl -Bitcoin Price -Justin Timberlake -Sergei Eisenstein -Super blue blood Moon -Patriots -Joy Villa -Joshua Cooper Ramo -Carter G. Woodson -SpaceX -Super Bowl score -Super Bowl 2018 -Bitcoin Price -Patti LuPone -United States Of America Winter Olympics -Government Shutdown -Carter G. Woodson -Real Madrid -Hope Hicks -Matt Czuchry -Florida shooting -Black Panther -Ohio State basketball -Morgan Freeman -Larry Nassar -Joe Kennedy -Virginia Woolf -Government Shutdown -Super Bowl score -Portia de Rossi -Carter G. Woodson -Adam Rippon -Andrew Cunanan -Wilder Penfield -Memo -Jennifer Aniston -Hope Hicks -Paula Modersohn-Becker -Wilder Penfield -SpaceX -Justin Timberlake -Don Lemon -Dow Jones industrial average -Paula Modersohn-Becker -SpaceX -Elizabeth Blackwell -Real Madrid -Edwin Jackson -Red Gerard -James Harden -Royal Rumble 2018 -Super Bowl score -Florida shooting -Russell Wilson -Wilder Penfield -Bill Belichick -Sergei Eisenstein -Government Shutdown -Valentines Day Images -Carter G. Woodson -Government Shutdown Meaning -Mark Salling -Logan Paul -Bitcoin Price -Virginia Woolf -Chris Stapleton -What Time Is The Super Bowl -Ash Wednesday -Fredo Santana -Bitcoin Price -Terrell Owens -Drake -Cloverfield Paradox -Peter Rabbit -Super Bowl 2018 -Mardi Gras 2018 -Jenna Morasca -Den of Thieves -Paula Modersohn-Becker -Nancy Pelosi -SpaceX -Super Bowl 2018 -Sergei Eisenstein -Elizabeth Blackwell -Patriots -Women's March 2018 -Mike Fisher -Oscar Nominations 2018 -Johnny Weir -Isaiah Canaan -DeMarcus Cousins -Virginia Woolf -Oscar Gamble -Super blue blood Moon -Super Bowl score -Mark Salling -Government Shutdown -Happy Valentines Day -Mexico Vs Bosnia -Valentines Day -Wilder Penfield -Anna Kournikova -Derrick Rose -Red Gerard -Kylie Jenner -Winter Olympics -Shaun White -Super Bowl 2018 -Alaska earthquake -Patriots -Virginia Woolf -Friends The Movie 2018 -Kentucky shooting -Terrell Owens -Elizabeth Blackwell -Patriots -Super Bowl Commercials 2018 -Florida shooting -Luke Wilson -Paula Modersohn-Becker -Amazon HQ2 -Virginia Woolf -Patriots -NASA -Carter G. Woodson -Paula Modersohn-Becker -Alessia Cara -Sergei Eisenstein -Justin Timberlake -Government Shutdown -Carter G. Woodson -Winter Olympics -Florida shooting -Oscar Nominations 2018 -Winter Olympics -Ursula Le Guin -Grammys 2018 -SAG Awards 2018 -Sergei Eisenstein -Shaun White -Tom Brady -All Star Weekend 2018 -Russell Wilson -Grammys 2018 -Wilder Penfield -Government Shutdown -Super Bowl 2018 -Andrew McCabe -Naya Rivera -Elizabeth Blackwell -Justin Timberlake -Black Panther -Carter G. Woodson -Solo Trailer -Florida shooting -Wilder Penfield -Bob Dole -Larry Nassar -Patriots -Adam Rippon -Super Bowl score -Elizabeth Blackwell -School closings -Carter G. Woodson -Alaska earthquake -Lonzo Ball -Edwin Jackson -Patriots -Cloverfield Paradox -Larry Nassar -Super Bowl 2018 -Jason Kelce -Tom Petty -What Time Is The Super Bowl -Government shutdown 2018 -Alaska earthquake -Groundhog Day 2018 -Virginia Woolf -Pro Bowl 2018 -Elizabeth Blackwell -Sergei Eisenstein -Florida shooting -Government Shutdown Meaning -Steve Mcnair -Joe Kennedy -Justin Timberlake -Fidel Castro -James Harden -school closings -Women's March 2018 -Google Classroom -Obama portrait -Chris Paul -Vikings Vs Eagles -Wilder Penfield -Virginia Woolf -Winter Olympics -Pro Bowl 2018 -What Time Is The Super Bowl -Grammys 2018 -Florida shooting -Kylie Jenner -Paula Modersohn-Becker -Happy Valentines Day -Virginia Woolf -Marlon Brando -Blue Ivy -Happy Valentines Day -This Is Us -State of the Union -Winter Olympics -Patriots -Rett Syndrome -Johnny Weir -Sergei Eisenstein -Virginia Woolf -SpaceX -Altered Carbon -Super Bowl score -Patriots -Government shutdown -Sergei Eisenstein -Kylie Jenner -United States Of America Winter Olympics -Super blue blood Moon -Tara Lipinski -Justin Timberlake -Sergei Eisenstein -Peter Rabbit -Patriots -Pink -Red Gerard -Super Bowl score -NHL All Star Game -Black Panther -New England Patriots owner -Jennifer Aniston -Steve Mcnair -Matt Patricia -Patriots -Winter Olympics -Daytona 500 -Terrell Owens -Lil Pump -Super Bowl score -Maria Menounos -Elizabeth Blackwell -Blake Griffin -Super Bowl score -Apple stock -Grammys 2018 -Kylie Jenner Baby Girl -Mardi Gras 2018 -Zion Williamson -Google Drive -Dow Jones -SpaceX -Trump State of the Union -Snap Stock -Super Blue Blood Moon -Patriots -Patriots -Isaiah Thomas -Mikaela Shiffrin -Florida shooting -Kentucky shooting -Virginia Woolf -Childish Gambino -Florida shooting -Super Bowl 2018 -Groundhog Day 2018 -Carter G. Woodson -Florida shooting -Winter Olympics -calculator -Super Bowl 2018 -Super Bowl score -UFC 220 -Super Bowl 2018 -Carter G. Woodson -Patriots -Luke Wilson -Trump State of the Union -Jemele Hill -Patty Hearst -Chief Wahoo -Super Bowl 2018 -Virginia Woolf -Patriots -Sergei Eisenstein -12 Strong -Camila Cabello -Gods Plan -Florida shooting -Government Shutdown -Scott Baio -Elizabeth Blackwell -Elizabeth Blackwell -Jennifer Aniston -Super Bowl score -Elizabeth Blackwell -Luke Wilson -Florida shooting -Larry Nassar -SpaceX -school closings -Super Blue Blood Moon -Elizabeth Blackwell -Kingdom Come Deliverance -Carter G. Woodson -Super Bowl 2018 -Russell Wilson -Winter Olympics -Fifty Shades Freed -Super Bowl score -Happy Valentines Day -Winter Olympics -Dwyane Wade -Larry Nassar -Grammys 2018 -This Is Us -Winter Olympics -Paula Modersohn-Becker -Grammys 2018 -earthquake -Montreal Cognitive Assessment -Mardi Gras 2018 -Mikaela Shiffrin -Super Bowl score -XFL -Patriots -SpaceX -Fredo Santana -Government Shutdown Meaning -Deadpool 2 -Elizabeth Blackwell -XFL -Paula Modersohn-Becker -Chicago Weather -Houston Rockets -Super Bowl 2018 -Winter Olympics -Childish Gambino -Kylie Jenner -Adam Rippon -Patriots -Detroit Lions -Elon Musk -Super Bowl score -Marlon Brando -Celtics -Oscar Nominations 2018 -Grammys 2018 -Grammys 2018 -Sergei Eisenstein -Florida shooting -Groundhog Day 2018 -Pro Bowl 2018 -Winter Olympics -Paula Modersohn-Becker -Justin Timberlake -Elizabeth Blackwell -Deadpool 2 -Carter G. Woodson -Elizabeth Blackwell -Winter Olympics -Chinese New Year 2018 -Florida shooting -Florida shooting -Carl Higbie -Super Bowl score -Florida shooting -SpaceX -Mardi Gras 2018 -Kylie Jenner -Aaliyah -Paula Modersohn-Becker -Winter Olympics -Florida shooting -Groundhog Day 2018 -UFC 220 -Virginia Woolf -State of the Union -pissant -Justin Timberlake -Football Playoffs 2018 -Kylie Jenner -Tom Petty -Groundhog Day 2018 -Super Bowl 2018 -AFC Championship Game 2018 -Wilder Penfield -Super Bowl score -Omarosa -Grammys 2018 -Super Bowl 2018 halftime show -CNN -Rasual Butler -Wilder Penfield -Carter G. Woodson -Paula Modersohn-Becker -Wilder Penfield -Sergei Eisenstein -Wilder Penfield -Paula Modersohn-Becker -Chloe Kim -Elon Musk -Super Bowl 2018 -Carter G. Woodson -Wing Bowl 2018 -Patriots -Black Panther -Super Bowl score -Trump State of the Union -Super Bowl score -Kylie Jenner -Chris Paul -Patriots -Shaun White -Black Panther -Paula Modersohn-Becker -Winter Olympics -Winter Olympics -Mikaela Shiffrin -Carter G. Woodson -Memo -Chloe Kim -Fifty Shades Freed -Black Panther -Google Classroom -Senior Bowl -Google docs -Happy Valentines Day -Carter G. Woodson -Government shutdown 2018 -Sergei Eisenstein -Edwin Jackson -Carter G. Woodson -Super Bowl score -Elizabeth Blackwell -Duke Basketball -Dwyane Wade -SpaceX -Blake Griffin -Paula Modersohn-Becker -Ash Wednesday -Rasual Butler -Paula Modersohn-Becker -Daryle Singletary -Patriots -Westerville Ohio -Cloverfield Paradox -Elizabeth Blackwell -Elizabeth Blackwell -Patriots -Super Bowl 2018 -Paula Modersohn-Becker -Trump State of the Union -Mardi Gras 2018 -Mikaela Shiffrin -NHL All Star Game -Sergei Eisenstein -Virginia Woolf -Ted Bundy -LeBron James -Patriots -Dwyane Wade -Wilder Penfield -Carter G. Woodson -The Alienist -Patti LuPone -Sergei Eisenstein -Valentines Day Images -State of the Union -Lindsey Vonn -What Time Is The Super Bowl -Super Blue Blood Moon -Kylie Jenner -Happy Valentines Day -Kim Cattrall -Paula Modersohn-Becker -Patriots -Sergei Eisenstein -Carter G. Woodson -Groundhog Day 2018 -Forever My Girl -Winter Olympics -Black Panther -Champions League -Jason Kidd -Homeland -Elizabeth Blackwell -Paula Modersohn-Becker -Super blue blood Moon -Wilder Penfield -Tonga -Super Bowl Commercials 2018 -Super Bowl score -Brie Larson -Government Shutdown -Government shutdown 2018 -Tiger Woods -Larry Nassar -Government Shutdown -H&r Block -calculator -Carter G. Woodson -Florida shooting -Stock Market Crash Today -Chief Wahoo -SpaceX -Joe Kennedy -Winter Olympics -Bitcoin Price -Kylie Jenner -SpaceX -Super Bowl score -Vikings Vs Eagles -Kylie Jenner -Mark Salling -Carter G. Woodson -Lakers -Monster Hunter World -Wilder Penfield -Winter Olympics -Government shutdown -Sergei Eisenstein -State of the Union -Nba All Star 2018 -Paula Modersohn-Becker -Scott Baio -Super Bowl 2018 -Oscar Nominations 2018 -Cloverfield Paradox -Elizabeth Blackwell -Florida shooting -Oscar Nominations 2018 -SpaceX -Sergei Eisenstein -Justin Timberlake -Government Shutdown -Alex Smith -Patriots -Justin Timberlake -Classroom -Virginia Woolf -Government Shutdown -Vikings vs Eagles -Wilder Penfield -Virginia Woolf -Grammys 2018 -Andre Roberson -Peter Rabbit -Super Bowl 2018 -school closings -Ash Wednesday -Groundhog Day 2018 -Red Gerard -Super Bowl score -Mark E Smith -Sergei Eisenstein -Sergei Eisenstein -Carter G. Woodson -Oscar Nominations 2018 -Dwyane Wade -Government Shutdown -Korea -Maze Runner: The Death Cure -Paula Modersohn-Becker -Carrie Underwood -Wilder Penfield -Outback Steakhouse -Red Gerard -Valentines Day -Super Bowl score -Wilder Penfield -Blue Moon -Mark Salling -Florida shooting -Happy Valentines Day -Shaun White -Patriots -Oscar Nominations 2018 -Justin Timberlake -What Time Is The Super Bowl -Government shutdown -Culture 2 -Johnny Manziel -Reg E Cathey -Virginia Woolf -Andrew Cunanan -New California -Kesha Grammy -Carter G. Woodson -Friends movie -Super Bowl 2018 -Olympic medal count -Hillary Clinton -Venom -Mark Salling -Tonga -Sergei Eisenstein -NBA Trades -NBC Sports -Solo Trailer -Super Bowl score -Super Bowl 2018 -Stan Lee -Super Bowl 2018 -Patriots -Bitcoin Price -What Time Is The Super Bowl -Real Madrid -Rodney Hood -Super blue blood Moon -Paula Modersohn-Becker -Super Bowl score -Ann Curry -Patriots -Florida shooting -Paula Modersohn-Becker -Winter Olympics -Super Bowl 2018 -Super Blue Blood Moon -Government Shutdown -NBC Sports -Kylie Jenner -New California -Super Bowl score -Government shutdown 2018 -Lil Pump -Mark Salling -Google Classroom -Portia de Rossi -Paula Modersohn-Becker -Sergei Eisenstein -Sergei Eisenstein -State of the Union -Mark Salling -Super Bowl 2018 -Alessia Cara -Chloe Kim -Sergei Eisenstein -Sergei Eisenstein -Carter G. Woodson -Rihanna -school closings -Government Shutdown -Paula Modersohn-Becker -Sergei Eisenstein -Larry Nassar -Justin Timberlake -Carter G. Woodson -Winter Olympics -Memo -Jimmy Kimmel -Virginia Woolf -What Time Is The Super Bowl -Justin Timberlake -Paula Modersohn-Becker -Jane Fonda -Oscar Nominations 2018 -Paula Modersohn-Becker -Reg E Cathey -Memo -What Time Is The Super Bowl -Cavs -Elizabeth Blackwell -Natalie Wood -Fredo Santana -Justin Timberlake -Google Drive -Tara Lipinski -Government shutdown 2018 -Patriots -Tom Petty -Wilder Penfield -Super Bowl 2018 -Government shutdown -Celtics -Carter G. Woodson -Justin Timberlake -Government Shutdown -What Time Is The Super Bowl -SZA -Super Bowl 2018 -Carter G. Woodson -Pro Bowl 2018 -Carter G. Woodson -Pro Bowl 2018 -Winter Olympics -pissant -Simona Halep -United States Postal Service -Caroline Wozniacki -Blood Moon -Kylie Jenner Baby Girl -Caroline Wozniacki -Carter G. Woodson -SAG Awards 2018 -Super Bowl 2018 -Super Bowl 2018 -Super Bowl score -Alaska earthquake -Sergei Eisenstein -Fredo Santana -Obama portrait -SAG Awards 2018 -Wilder Penfield -Puppy Bowl 2018 -Government Shutdown -Super Bowl 2018 -Groundhog Day 2018 -Winter Olympics -Elizabeth Blackwell -Black Panther -Paula Modersohn-Becker -Virginia Woolf -Shaun White -Johnny Manziel -Elizabeth Blackwell -What Time Is The Super Bowl -Paula Modersohn-Becker -Joshua Cooper Ramo -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl 2018 -Sergei Eisenstein -Vikings Vs Eagles -Women's March 2018 -Winter Olympics -Johnny Manziel -Bitcoin Price -Super Bowl score -Florida shooting -School Closings -Wilder Penfield -Super Bowl score -United States Of America Winter Olympics -Den of Thieves -Westminster Dog Show 2018 -SpaceX -Elizabeth Blackwell -Government Shutdown -Winter Olympics -Oscar Nominations 2018 -Virginia Woolf -Paula Modersohn-Becker -Google Classroom -Warren Miller -Kylie Jenner -New England Patriots owner -Alex Smith -Vikings Vs Eagles -Paula Modersohn-Becker -Government Shutdown 2018 -Venom -Lena Zawaideh -Super Bowl 2018 -Winter Olympics -Happy Valentines Day -State of the Union -Elizabeth Blackwell -Wilder Penfield -tsunami -Chief Wahoo -Paula Modersohn-Becker -Patriots -Patriots -Super Bowl 2017 -Paula Modersohn-Becker -United States Of America Winter Olympics -Betty White -Super Bowl score -Fifty Shades Freed -Paula Modersohn-Becker -SpaceX -Sergei Eisenstein -Elizabeth Blackwell -Kylie Jenner -Carter G. Woodson -Bitcoin Price -Juventus -This is Us -Bitcoin Price -Jennifer Aniston -Happy Valentines Day -Government Shutdown -Wilder Penfield -Government Shutdown -Jennifer Aniston -Government shutdown -Elizabeth Blackwell -Virginia Woolf -Valentines Day -Justin Timberlake -Nba All Star Draft -Google Classroom -Carter G. Woodson -SZA -Blake Griffin -Simona Halep -Cloverfield Paradox -Wilder Penfield -Groundhog Day 2018 -Mark Salling -Virginia Woolf -Super Bowl score -National Pizza Day -Jane Fonda -Justin Timberlake -Elizabeth Blackwell -NHL All Star Game -Sergei Eisenstein -Dow Jones -Grammys 2018 -SpaceX -Rasual Butler -Kylie Jenner Baby Girl -This Is Us -Kylie Jenner -Mark Salling -Patriots -What Time Is The Super Bowl -Robert Mueller -Yu Darvish -Sergei Eisenstein -Phantom Thread -Daniel Kaluuya -Carter G. Woodson -Winter Olympics -Elizabeth Blackwell -Despacito -CNN -Paula Modersohn-Becker -Edible Arrangements -Black Panther -Dow Jones -Super Bowl Commercials 2018 -NBA Trades -Portia de Rossi -State of the Union -Elizabeth Blackwell -Joel Taylor -Sergei Eisenstein -Adam Rippon -Grammys 2018 -The 15:17 to Paris -Andrew Cunanan -Florida shooting -Tony Romo -Virginia Woolf -Black Panther -Super Bowl score -Shaun White -Super Bowl score -Grammys 2018 -Super Bowl Commercials 2018 -What Time Is The Super Bowl -Women's March 2018 -Winter Olympics -Super Bowl score -Super Bowl 2018 -Dennis Edwards -State of the Union -What Time Is The Super Bowl -Get Out -Kylie Jenner Baby Girl -Super Bowl 2018 -Elon Musk -Super blue blood Moon -Kirstjen Nielsen -Mardi Gras 2018 -NBA Trades -Harley Barber -Government Shutdown -Patriots -Virginia Woolf -Sergei Eisenstein -Chicago West -Paula Modersohn-Becker -Paula Modersohn-Becker -Patriots -Paula Modersohn-Becker -Classroom -Super Bowl 2018 -Quentin Tarantino -Justin Timberlake -Super Bowl score -Winter Olympics -Obama portrait -Peter Rabbit -Cavs -Super Bowl 2018 -Chloe Kim -Super Bowl 2018 -State of the Union -Elizabeth Blackwell -Super Bowl 2018 -Mardi Gras 2018 -Dow Jones -Carter G. Woodson -Black Panther -Lady Bird -Winter Olympics -Virginia Woolf -Black Panther -Shaun White -Super Bowl 2018 halftime show -Grammys 2018 -Wilder Penfield -Puppy Bowl 2018 -Happy Valentines Day -Neil Diamond -Fredo Santana -LeBron James -Blake Griffin -Google Classroom -Super Bowl 2018 -Carter G. Woodson -Dow Jones -Carter G. Woodson -Steve Wynn -Amazon Stock -Patriots -Florida shooting -Did the Groundhog See His Shadow -Presidents Day 2018 -Mikaela Shiffrin -Kylie Jenner -Florida shooting -Government Shutdown -Patriots -Katie Couric -Justin Timberlake -Super Bowl 2018 -lady gaga grammys -Justin Timberlake -Elizabeth Blackwell -Super Bowl score -Larry Nassar -Super Bowl 2018 -Shaun White -Florida shooting -John Mahoney -Chicago Weather -Scott Baio -Larry Nassar -Carter G. Woodson -Patriots -SpaceX -Altered Carbon -Government Shutdown Meaning -Omarosa -Virginia Woolf -Florida shooting -Super Bowl score -XFL -Carter G. Woodson -Happy Valentines Day -Harley Barber -Ar 15 -NBA Trades -Stormi -Real Madrid -Ash Wednesday -Celtics -Virginia Woolf -Florida shooting -Vikings Vs Eagles -Blake Griffin -Kim Cattrall -Justin Timberlake -Alessia Cara -SpaceX -Elizabeth Blackwell -Chicago Weather -SAG Awards 2018 -SpaceX -Joshua Cooper Ramo -Sergei Eisenstein -Virginia Woolf -Happy Valentines Day -Obama portrait -Solo Trailer -Virginia Woolf -Patriots -Paula Modersohn-Becker -This Is Us -Carter G. Woodson -Carter G. Woodson -Meteor -Chloe Kim -Bitcoin Price -Obama portrait -The 15:17 to Paris -Government Shutdown -Jason Momoa -Paula Modersohn-Becker -SpaceX -Chicago West -Adam Rippon -Elizabeth Blackwell -Justin Timberlake -Tom Petty -Ash Wednesday -Florida shooting -United States Of America Winter Olympics -Winter Olympics -Winter Olympics -Alex Smith -LeBron James -Chris Long -Elton John -What Time Is The Super Bowl -Vikings Vs Eagles -Paula Modersohn-Becker -Elizabeth Blackwell -Larry Nassar -Super Bowl score -National Pizza Day -Incredibles 2 -Super Bowl score -Super Bowl score -Robert Mueller -Florida shooting -Paula Modersohn-Becker -SpaceX -Terry Bradshaw -Maddie Mastro -Kylie Jenner -Carter G. Woodson -Sting -national signing day 2018 -Elizabeth Blackwell -Winter Olympics -Sergei Eisenstein -Grammys 2018 -Kylie Jenner -Johnny Weir -Super Bowl score -Valentines Day -SpaceX -Patriots -Paula Modersohn-Becker -Grammys 2018 -Dow Jones -Carrie Underwood -Dwyane Wade -LeBron James -Earthquake Today -Warren Miller -Tom Petty -Patriots -Elizabeth Blackwell -Friends movie -Florida shooting -Tom Brady daughter -Kesha Grammy -SpaceX -Patriots -Meteor -Detroit Lions -Dow Jones -Google Classroom -Super Bowl 2018 -Fredo Santana -12 Strong -Patriots -Florida shooting -Florida shooting -Government Shutdown -Super Bowl 2018 -Paula Modersohn-Becker -Carter G. Woodson -Zion Williamson -Carter G. Woodson -Carter G. Woodson -Andrew Cunanan -Sergei Eisenstein -CNN -Sergei Eisenstein -Aliona Savchenko -Jason Kelce -Wilder Penfield -Super Bowl Commercials 2018 -Amy Schumer -SpaceX -Paula Modersohn-Becker -Julie Ertz -SpaceX -XFL -Wilder Penfield -Virginia Woolf -Patriots -Florida shooting -Super Bowl score -Sergei Eisenstein -SpaceX -Florida shooting -Groundhog Day 2018 -Winter Olympics -BitConnect -Groundhog Day 2018 -Virginia Woolf -Virginia Woolf -School Closings -Laura Ingraham -Paula Modersohn-Becker -Justin Timberlake -Sergei Eisenstein -Patriots -Cory Booker -Release The Memo -Super Bowl score -Pro Bowl 2018 -Florida shooting -Wilder Penfield -Patriots -Caroline Wozniacki -fake news awards -Virginia Woolf -Virginia Woolf -Real Madrid -Kylie Jenner -Larry Nassar -calculator -XFL -Grammys 2018 -Kesha -Rob Porter -Markelle Fultz -Arsenal -Kentucky shooting -Happy Valentines Day -Carter G. Woodson -Kylie Jenner -Elizabeth Blackwell -Justin Timberlake -Sergei Eisenstein -Google Classroom -State of the Union -Virginia Woolf -What Time Is The Super Bowl -Tyler Hilinski -Paula Modersohn-Becker -Cloverfield Paradox -Elizabeth Blackwell -Elizabeth Blackwell -Google Classroom -Memo -Super Bowl score -Lil Xan -Black Panther -Sergei Eisenstein -Larry Nassar -Rob Delaney -Government Shutdown -Kentucky shooting -Super Bowl score -Kesha -Solo Trailer -Call Me by Your Name -calculator -Altered Carbon -Joy Villa -What Time Is The Super Bowl -Super Bowl 2018 -Elizabeth Blackwell -Paula Modersohn-Becker -Patriots -Wilder Penfield -Winter Olympics -Super Bowl 2018 -Florida shooting -Winter Olympics -Kylie Jenner -What Time Is The Super Bowl -Trump State of the Union -Hope Hicks -Alison Brie -Virginia Woolf -Ash Wednesday -Mueller -Super blue blood Moon -Rob Porter -Paula Modersohn-Becker -Justin Timberlake -Groundhog Day 2018 -Paula Modersohn-Becker -SpaceX -Chinese New Year 2018 -Winter Olympics -Warren Miller -Chipper Jones -calculator -Altered Carbon -Winter Olympics -school closings -Dennis Edwards -Josh McDaniels -Virginia Woolf -Super Bowl 2018 -Patriots -Blake Griffin -United States Of America Winter Olympics -Manchester United -Google Classroom -Patriots -Paula Modersohn-Becker -What Time Is The Super Bowl -Winchester -Elizabeth Blackwell -Carter G. Woodson -Elton John -Florida shooting -Shaun White -Wilder Penfield -Kylie Jenner -Virginia Woolf -What Time Is The Super Bowl -Bitcoin Price -Happy Valentines Day -SAG Awards 2018 -Chicago Weather -Chris Stapleton -Patriots -Tomi Lahren -Devin Nunes -Black Panther -Wilder Penfield -What Time Is The Super Bowl -Super Bowl score -Sergei Eisenstein -What Time Is The Super Bowl -Wilder Penfield -What Time Is The Super Bowl -Bitcoin Price -Paula Modersohn-Becker -Wilder Penfield -Paula Modersohn-Becker -Super Bowl 2018 -Dow Jones -Super Bowl 2018 -Kylie Jenner -Justin Timberlake -Carl Higbie -Grammys 2018 -Portia de Rossi -Cavs -Super Bowl 2018 -Elizabeth Blackwell -Justin Timberlake -Sergei Eisenstein -Yahoo Finance -Super Bowl score -Trump State of the Union -Bitcoin Price -Puppy Bowl 2018 -Johnny Weir -Elizabeth Blackwell -Kentucky shooting -Kesha Grammy -Terrell Owens -Kim Kardashian -Toys R Us -Dow Jones -Chris Stapleton -Paula Modersohn-Becker -Government Shutdown -Super Bowl score -Best Superbowl Commercials 2018 -Memo -Carter G. Woodson -Paula Modersohn-Becker -Edwin Jackson -SpaceX -Winter Olympics -Den of Thieves -New England Patriots owner -Friends The Movie 2018 -Super blue blood Moon -Winter Olympics -Winter Olympics -SAG Awards 2018 -Black Panther -Steve Mcnair -Grammys 2018 -SAG Awards 2018 -Kylie Jenner -Government Shutdown -Kevin Love -This Is Us -Josh McDaniels -Patriots -Warren Miller -Red Gerard -Florida shooting -Super Bowl score -Mark Salling -Government Shutdown -Winter Olympics -Virginia Woolf -UFC 220 -This Is Us -Women's March 2018 -Winter Olympics -Memo -Carter G. Woodson -Josh Allen -Justin Timberlake -Grammys 2018 -Google Classroom -Florida shooting -Shaun White -Dow Jones -Mark E Smith -Carter G. Woodson -Mueller -Omarosa -Wilder Penfield -State of the Union -Justin Timberlake -Government shutdown -Ash Wednesday -Solo Trailer -Kylie Jenner -Super Bowl 2018 -Wilder Penfield -Government Shutdown -Cnbc -Patriots -CBS Sports -Gods Plan -Justin Timberlake -Elizabeth Blackwell -Sergei Eisenstein -Did the Groundhog See His Shadow -Tara Lipinski -Virginia Woolf -Patriots -Super Bowl score -Virginia Woolf -Paul Ryan -Justin Timberlake -Sergei Eisenstein -This is Us -Royal Rumble 2018 -calculator -SZA -Patriots -State of the Union -VIX -Super Bowl 2018 -Winter Olympics -Grammys 2018 -Russell Wilson -Cavs -Kylie Jenner -Tom Brady -Sergei Eisenstein -Government Shutdown -Black Panther -SpaceX -Shaun White -Den of Thieves -Grammys 2018 -Florida shooting -Mikaela Shiffrin -Groundhog Day 2018 -What Time Is The Super Bowl -Virginia Woolf -SpaceX -Elizabeth Blackwell -Florida shooting -Cloverfield Paradox -CNN -New England Patriots owner -Carter G. Woodson -Elon Musk -Sergei Eisenstein -Red Gerard -NBA Trades -Larry Nassar -Kylie Jenner -Grammys 2018 -Elizabeth Blackwell -Super Bowl Commercials 2018 -United States Postal Service -Samson -Super Bowl 2018 -Elizabeth Blackwell -Solo Trailer -Celebrity Big Brother cast -Vikings Vs Eagles -Zion Williamson -Wonder Woman -Mardi Gras 2018 -calculator -Aaron Fies -Virginia Woolf -Patriots -Winter Olympics -Super Bowl score -Wilder Penfield -Wilder Penfield -Carter G. Woodson -Shaun White -Chloe Kim -Justin Timberlake -Larry Nassar -Vikings Vs Eagles -Black Panther -Carter G. Woodson -Grammys 2018 -Bitcoin Price -What Time Is The Super Bowl -Google docs -Stormi -Elizabeth Blackwell -Patriots -School Closings -Black Panther -Reg E Cathey -Super Bowl score -Elizabeth Blackwell -Mike Tomlin -Bitcoin Price -Mardi Gras 2018 -Patriots -Larry Nassar -Steven Tyler -Camila Cabello -Dwyane Wade -Carter G. Woodson -Happy Valentines Day -Virginia Woolf -Amy Schumer -Sergei Eisenstein -Winter Olympics -Kesha Grammy -Wilder Penfield -Google Classroom -Super Bowl score -shutdown -NBA Trades -Kim Cattrall -Sergei Eisenstein -Bitcoin Price -Cavs -Lunar eclipse -Oar Olympics -Dwyane Wade -Carrie Underwood -Kim Kardashian -Patriots -Pro Bowl 2018 -Super blue blood Moon -Oscar Nominations 2018 -Trump State of the Union -Valentines Day -Megan Barry -Cherry Seaborn -Chloe Kim -Elizabeth Blackwell -Obama portrait -Shaun White -Super Bowl score -Alex Reimer -Virginia Woolf -Royal Rumble 2018 -Dwyane Wade -Jimmy Garoppolo -Peter Rabbit -Sergei Eisenstein -Super Bowl score -Black Panther -Elizabeth Blackwell -Bitcoin Price -calculator -Google Classroom -Grammys 2018 -Jason Momoa -Florida shooting -Paula Modersohn-Becker -Winter Olympics -Patriots -The Home Depot -Bob Marley -Lindsey Vonn -Blake Griffin Trade -Happy Valentines Day -Super Bowl score -NBA Trades -Virginia Woolf -Alaska earthquake -Carter G. Woodson -Super Bowl score -Bob Dole -Royal Rumble 2018 -Grammys 2018 -Childish Gambino -Emily Sweeney -Kylie Jenner -What Time Is The Super Bowl -Super Bowl score -Mike Fisher -Super Bowl 2018 -Virginia Woolf -Carter G. Woodson -Google Classroom -Carter G. Woodson -AR-15 -Kesha -Elton John -Tyler Hilinski -Grammys 2018 -Super Bowl score -Virginia Woolf -Kylie Jenner -Carter G. Woodson -Kylie Jenner -Winter Olympics -Shaun White -Megan Barry -Stormi -Elizabeth Blackwell -Grammys 2018 -Wilder Penfield -Virginia Woolf -Google docs -Shaun White -Virginia Woolf -Andrew Cunanan -Florida shooting -Dow Jones -Olympic Medal Count -Valentines Day Images -Sergei Eisenstein -Tyler Hilinski -Grammys 2018 -Johnny Weir -Super Bowl 2018 -Gianni Versace -Hope Hicks -Super Bowl score -Elizabeth Blackwell -Wilder Penfield -Presidents Day 2018 -Daryle Singletary -Tammy Duckworth -Grammys 2018 -Oscar Gamble -Virginia Woolf -Memo -Malcom Butler -DeMarcus Cousins -Government Shutdown Meaning -Chris Paul -LeBron James -Super Bowl 2018 -Did the Groundhog See His Shadow -Nancy Pelosi -Snapchat Update -Sergei Eisenstein -John Mahoney -Adam Rippon -Oscar Nominations 2018 -PlayStation Network -Florida shooting -calculator -Justin Timberlake -Sergei Eisenstein -Vic Damone -SpaceX -Red Gerard -Chicago Weather -Joe Kennedy -Shaun White -Vanity Fair Cover -Florida shooting -This Is Us -Florida shooting -Simona Halep -Tyler Hilinski -Meteor -Shaun White -Wilder Penfield -Vikings Vs Eagles -Columbine -Montreal Cognitive Assessment -Super Blue Blood Moon -Government shutdown -State of the Union -What Time Is The Super Bowl -Stormi -Malcom Butler -Shaun White -Post Malone -Valentines Day Images -Super Bowl 2018 -Sean McVay -Alessia Cara -Super Bowl 2018 -Mueller -Larry Nassar -Larry Nassar -Despacito -Patriots -Justin Timberlake -Wilder Penfield -Valentine's Day -Winter Olympics -Wilder Penfield -Meteor -Joe Kennedy -Patriots -Super Bowl score -Super Bowl score -Carter G. Woodson -school closings -National Pizza Day -Bitcoin Price -Will Ferrell -Paula Modersohn-Becker -Winter Olympics -Patriots -Grammys 2018 -Super Bowl 2018 -Paula Modersohn-Becker -Sergei Eisenstein -Bitcoin Price -Puppy Bowl 2018 -Government Shutdown -Nintendo Labo -luge -Meteor -Elizabeth Blackwell -Vanity Fair Cover -Virginia Woolf -Mavic Air -Princess Eugenie -Patriots -Super Bowl 2018 -NBA Trades -Mark Salling -Government Shutdown -Carter G. Woodson -Sergei Eisenstein -Bill Paxton -Columbine Shooting -Robby Anderson -Tom Petty -Happy Valentines Day -Winter Olympics -calculator -Kylie Jenner -Caroline Wozniacki -Carter G. Woodson -Winter Olympics -Virginia Woolf -SAG Awards 2018 -Mark Salling -Winter Olympics -Elizabeth Blackwell -Amy Schumer -Virginia Woolf -State of the Union -Phantom Thread -Dwyane Wade -Culture 2 -Super Bowl 2018 -fake news awards -Paula Modersohn-Becker -NBA Trades -What Time Is The Super Bowl -Trayvon Martin -SAG Awards 2018 -Elizabeth Blackwell -Alex Smith -Wilder Penfield -Google docs -Wilder Penfield -Paula Modersohn-Becker -Bitcoin Price -Presidents Day 2018 -Kentucky shooting -Winter Olympics -Kim Cattrall -Vikings Vs Eagles -Zion Williamson -Emily Sweeney -Wilder Penfield -Shaun White -Terrell Owens -Black Panther -What Time Is The Super Bowl -This is Us -Alaska earthquake -Wilder Penfield -Patriots -Paula Modersohn-Becker -Childish Gambino -Paula Modersohn-Becker -Reg E Cathey -Virginia Woolf -Paula Modersohn-Becker -Solo Trailer -Obama portrait -shutdown -Super Bowl Commercials 2018 -Paula Modersohn-Becker -Super Bowl 2018 -Paula Modersohn-Becker -Kylie Jenner -Elizabeth Blackwell -Puppy Bowl 2018 -government shutdown -Sergei Eisenstein -SpaceX -Florida shooting -State of the Union -Justin Timberlake -Elizabeth Blackwell -Justin Timberlake -Elton John -Patti LuPone -Winter Olympics -Vikings Vs Eagles -Edwin Jackson -Mark Salling -Carter G. Woodson -Winter Olympics -Columbine Shooting -Wilder Penfield -SpaceX -Wilder Penfield -Conor McGregor -Wilder Penfield -Isaiah Thomas -Sergei Eisenstein -Patriots -Government Shutdown -Carter G. Woodson -Black Lightning -Wilder Penfield -Black Panther -Mexico Vs Bosnia -Trump State of the Union -Chief Wahoo -Elizabeth Blackwell -SpaceX -Dwyane Wade -Sergei Eisenstein -Florida shooting -Sergei Eisenstein -Virginia Woolf -Eli Manning -Virginia Woolf -Kylie Jenner -State of the Union -Patriots -Sergei Eisenstein -School Closings -Larry Nassar -Adam Rippon -Valentines Day -Vikings Vs Eagles -Super Bowl 2018 -tsunami -Wilder Penfield -Isaiah Canaan -Patriots -Grammys 2018 -State of the Union -Government Shutdown -Carter G. Woodson -Winter Olympics -Happy Valentines Day -Carter G. Woodson -Did the Groundhog See His Shadow -Elizabeth Blackwell -Justin Timberlake -Patriots -Vince McMahon -Kim Cattrall -Valentines Day Images -Kim Kardashian -Justin Timberlake -Winter Olympics -Virginia Woolf -Shiffrin -Virginia Woolf -Kylie Jenner Baby Girl -Lee Miglin -Elizabeth Blackwell -Paula Modersohn-Becker -Maze Runner: The Death Cure -Patriots -Winter Olympics -What Time Is The Super Bowl -Chipper Jones -Mcdonald's -Virginia Woolf -Ash Wednesday -Patriots -The Home Depot -Robert Wagner -Paula Modersohn-Becker -Winter Olympics -Super Bowl score -Patriots -Isaiah Thomas -SAG Awards 2018 -Jennifer Aniston -Rampage -Mark Salling -State of the Union -Virginia Woolf -Super Bowl score -Kylie Jenner -Paula Modersohn-Becker -Virginia Woolf -Fifty Shades Freed -Google Classroom -Vikings Vs Eagles -Winter Olympics -Meteor -Virginia Woolf -Rodney Hood -SpaceX -Amy Schumer -Solo Trailer -Earthquake -Apolo Ohno -Florida shooting -Larry Nassar -Friends movie -Aaron Hernandez -Bitcoin Price -Duke Basketball -Elizabeth Blackwell -Bitcoin Price -Edible Arrangements -Steven Tyler -Grammys 2018 -Carter G. Woodson -Super Bowl 2018 -Pink -Carter G. Woodson -Sergei Eisenstein -Rasual Butler -Virginia Woolf -Carter G. Woodson -Patriots -Groundhog Day 2018 -Larry Nassar -Wilder Penfield -Elizabeth Blackwell -This Is Us -Patriots -Super Bowl score -This Is Us -Mikaela Shiffrin -Patriots -Super Bowl score -Dwyane Wade -Sergei Eisenstein -Paula Modersohn-Becker -Trump State of the Union -Meteor -Vince McMahon -Virginia Woolf -SpaceX -Justin Timberlake -Grammys 2018 -Government Shutdown -Wilder Penfield -Virginia Woolf -Grammys 2018 -Trump State of the Union -Obama portrait -Elizabeth Blackwell -Super Bowl 2018 -Rasual Butler -Patriots -Florida shooting -Grammys 2018 -Mark Salling -Adam Rippon -Winter Olympics -Virginia Woolf -Carter G. Woodson -Patriots -Elizabeth Blackwell -The 15:17 to Paris -Black Panther -Super Bowl 2018 -Winter Olympics -Virginia Woolf -Super Bowl Commercials 2018 -Super blue blood Moon -Florida shooting -Kawhi Leonard -Paula Modersohn-Becker -Samson -The Home Depot -Mark Salling -Sergei Eisenstein -Google Drive -Quincy Jones -Shaun White -Super Bowl Commercials 2018 -Wilder Penfield -Winter Olympics -Greg Monroe -Super Bowl 2018 -Patriots -Tessa Virtue -Kesha -Florida shooting -XFL -Dow Jones -State of the Union -Winter Olympics -Virginia Woolf -AR-15 -Grammys 2018 -Elizabeth Blackwell -Kylie Jenner -Government shutdown 2018 -Football Playoffs 2018 -Google Classroom -Super Bowl score -Terrell Owens -Trump State of the Union -Kylie Jenner -Super Bowl 2018 -Trump State of the Union -Super Bowl 2018 -Elizabeth Blackwell -Florida shooting -Winter Olympics -Shaun White -Adam Rippon -Carter G. Woodson -Bellator 192 -Johnny Weir -Drive -Winter Olympics -Happy Valentines Day -Cavs -Aaron Feis -Super Blue Blood Moon -Hope Hicks -UFC 220 -Elizabeth Blackwell -Sergei Eisenstein -Sergei Eisenstein -Florida shooting -Royal Rumble 2018 -Elizabeth Blackwell -Kylie Jenner -Winter Olympics -Elizabeth Blackwell -Black Panther -Super Bowl Commercials 2018 -State of the Union -Patriots -Patriots -Olympic Medal Count -IXL -Joe Kennedy -Blake Griffin -Adam Rippon -Government Shutdown -James Harden -Bitcoin Price -Super Bowl Commercials 2018 -Chloe Kim -Joy Villa -Den of Thieves -SpaceX -What Time Is The Super Bowl -Kentucky shooting -Florida shooting -NBA Trades -Daryle Singletary -Kelly Clark -Valentines Day -Johnny Weir -Wilder Penfield -Virginia Woolf -School Closings -Get Out -Terrell Owens -Paula Modersohn-Becker -Winter Olympics -Patriots -Grammys 2018 -Google Classroom -Mattie Larson -Despacito -Frank Reich -SAG Awards 2018 -Edible Arrangements -Virginia Woolf -Pyeongchang 2018 Olympic Winter Games -Wilder Penfield -Wilder Penfield -Grammys 2018 -Dow Jones -Patti LuPone -Super Bowl 2018 -Prince William -Olympic Medal Count -SpaceX -Patriots -NBA Trades -Obama portrait -What Time Is The Super Bowl -Florida shooting -Mark Salling -Kentucky shooting -Carter G. Woodson -Patriots -Anna Kournikova -Super Bowl 2018 -Super Bowl Winners -Super Bowl 2018 -Dow Jones -Adam Rippon -Cavs -national signing day 2018 -Super Bowl 2018 -Patriots -Super Bowl score -Patriots -Elizabeth Blackwell -Mr Rogers -Patriots -Den of Thieves -Virginia Woolf -Super Bowl 2018 -Pro Bowl 2018 -Government Shutdown -Bradie Tennell -Caroline Wozniacki -Patriots -Patriots -Carter G. Woodson -Super Bowl score -Altered Carbon -Fifty Shades Freed -Virginia Woolf -Government Shutdown Meaning -Patriots -Chloe Kim -Government Shutdown -Elizabeth Blackwell -Robert Wagner -CNN -Carter G. Woodson -H&r Block -Uma Thurman -State of the Union -Chinese New Year 2018 -SpaceX -Super Bowl score -Groundhog Day 2018 -Patriots -Super Bowl score -NBA Trades -Super Bowl score -Kylie Jenner Baby Girl -Dow Jones -Carter G. Woodson -SpaceX -Winter Olympics -Black Lightning -Elizabeth Blackwell -Elizabeth Blackwell -Grey's Anatomy -SpaceX -Rob Porter -Florida shooting -Government Shutdown Meaning -Wilder Penfield -Tom Brady daughter -Blake Griffin -Houston Rockets -Wilder Penfield -Trey Gowdy -Carter G. Woodson -calculator -Super Bowl 2018 -Women's March 2018 -Paula Modersohn-Becker -Kylie Jenner -Happy Valentines Day -Joe Kennedy -Super Bowl score -Sergei Eisenstein -Valentines Day -Scott Baio -Justin Timberlake -Grammys 2018 -Eli Manning -Paula Modersohn-Becker -Steve Wynn -Elizabeth Blackwell -Kylie Jenner -VIX -State of the Union -Government Shutdown 2018 -Florida shooting -Larry Nassar -Elizabeth Blackwell -United States Of America Winter Olympics -Super Bowl score -Tammy Duckworth -Red Gerard -Kylie Jenner -Sergei Eisenstein -Tonga -Dane Cook -Justin Timberlake -Wilder Penfield -Super Bowl 2018 -Elton John -SpaceX -Tom Petty -Carter G. Woodson -Super Bowl 2018 -Nintendo Labo -Super Bowl score -Super Bowl score -Winter Olympics -Patriots -Edwin Jackson -Omarosa -Wilder Penfield -Chris Paul -Justin Timberlake -Government Shutdown 2018 -Elizabeth Blackwell -Kylie Jenner -Elizabeth Blackwell -Super Bowl 2018 -Paula Modersohn-Becker -Florida shooting -Alex Smith -Sergei Eisenstein -Wilder Penfield -Hope Hicks -Winter Olympics -Patriots -Celtics -Super Bowl score -Kylie Jenner -Winter Olympics -Sergei Eisenstein -Elizabeth Blackwell -Jason Kelce -Adam Rippon -Carter G. Woodson -Larry Nassar -Camila Cabello -Did the Groundhog See His Shadow -Lunar eclipse -Patriots -Wilder Penfield -Patriots -SpaceX -Jeremy London -Paula Modersohn-Becker -Florida shooting -XFL -Super Bowl 2018 -Columbine -Josh McDaniels -Virginia Woolf -Carter G. Woodson -Tom Brady -Outback Steakhouse -Kylie Jenner -Mardi Gras 2018 -Gianni Versace -Super Bowl score -Winter Olympics -National Pizza Day -Kentucky shooting -Valentines Day Memes -Will Ferrell -Jeremy London -Fidel Castro -Kim Cattrall -Super Bowl score -Elizabeth Blackwell -Drive -Super blue blood Moon -Kylie Jenner Baby Girl -Florida shooting -Red Gerard -Mary And The Witch's Flower -Rob Delaney -Solo Trailer -Houston Rockets -Alex Smith -Paula Modersohn-Becker -Sergei Eisenstein -Black Panther -Florida shooting -Wilder Penfield -Super Bowl score -Alex Smith -Dow Jones -Winter Olympics -Florida shooting -Blake Griffin -Sergei Eisenstein -Carter G. Woodson -Super Bowl 2018 -Valentine's Day -Kesha -Uma Thurman -Cavs -Stock Market Crash Today -Ted Bundy -SpaceX -Winter Olympics -What Time Is The Super Bowl -Vikings vs Eagles -Culture 2 -Dua Lipa -Hostiles -Super Bowl score -Sergei Eisenstein -Toys R Us -Patriots -Cloverfield Paradox -Valentines Day Images -Ncaa Basketball Top 25 -Google Drive -Carter G. Woodson -stock market -Winter Olympics -Lady Bird -Cavs -Sergei Eisenstein -Pro Bowl 2018 -Andre the Giant -XFL -Super Bowl 2018 -Carter G. Woodson -Obama portrait -Bitcoin Price -NBA Trades -Carter G. Woodson -Winchester -Incredibles 2 -Rose McGowan -Kentucky shooting -Vikings Vs Eagles -Olympic medal count -Super Bowl 2018 -Patriots -Larry Nassar -Wilder Penfield -Kawhi Leonard -Virginia Woolf -Did the Groundhog See His Shadow -Winter Olympics -Winter Olympics -Paula Modersohn-Becker -Justin Timberlake -Pro Bowl 2018 -Paula Modersohn-Becker -Columbine -Mark Salling -Virginia Woolf -Paula Modersohn-Becker -Jessica Chastain -Samson -Valentines Day Memes -Grey's Anatomy -Elizabeth Blackwell -Carter G. Woodson -Super Bowl score -All Star Weekend 2018 -Groundhog Day 2018 -Winter Olympics -Wilder Penfield -Elizabeth Blackwell -Chloe Kim -Derrick Rose -Patriots -Fb Stock -Virginia Woolf -Wilder Penfield -Peter Rabbit -Wilder Penfield -Hope Hicks -Carter G. Woodson -Super Bowl 2018 -Government Shutdown -Super Bowl 2018 -Red Gerard -Roger Federer -Did the Groundhog See His Shadow -Florida shooting -Sting -Paula Modersohn-Becker -Purdue basketball -Patriots -Caitlin McHugh -Super Bowl score -Alex Reimer -Winter Olympics -Government Shutdown -Wilder Penfield -Women's March 2018 -Carter G. Woodson -Super Bowl 2018 -Winter Olympics -Dow Jones -Shaun White -Virginia Woolf -Elizabeth Blackwell -Paula Modersohn-Becker -Kylie Jenner -Florida shooting -Happy Valentines Day -Vikings Vs Eagles -Paula Modersohn-Becker -Florida shooting -Adam Rippon -Joel Taylor -Kylie Jenner -Grammys 2018 -Cherry Seaborn -Sergei Eisenstein -Bitcoin Price -What Time Is The Super Bowl -Super blue blood Moon -This is Us -Government Shutdown Meaning -Florida shooting -John Mahoney -Earthquake Today -Reg E Cathey -Paula Modersohn-Becker -Omarosa -Alaska earthquake -Super Bowl score -Elizabeth Blackwell -Super Bowl score -SpaceX -SpaceX -Jennifer Aniston -Pro Bowl 2018 -Megan Barry -This is Us -Virginia Woolf -Cavs -Cherry Seaborn -Sergei Eisenstein -Wilder Penfield -Bruno Mars -Lena Zawaideh -Alaska earthquake -Daryle Singletary -Elizabeth Blackwell -Oscar Nominations 2018 -Wilder Penfield -Grammys 2018 -Paula Modersohn-Becker -Florida shooting -Super Bowl score -Jamie Anderson -Florida shooting -Justin Timberlake -Kylie Jenner -School Closings -Vanessa Trump -Virginia Woolf -Dwyane Wade -Edible Arrangements -Wilder Penfield -Sergei Eisenstein -Release The Memo -Lorenzo Cain -Wilder Penfield -Carter G. Woodson -Virginia Woolf -Paula Modersohn-Becker -Paula Modersohn-Becker -Carter G. Woodson -Elizabeth Blackwell -Alex Smith -Winter Olympics -Paula Modersohn-Becker -Cherry Seaborn -Virginia Woolf -Florida shooting -Tom Brady -Carter G. Woodson -Shaun White -Snap Stock -Yahoo Finance -Olympic Medal Count -DeMarcus Cousins -What Time Is The Super Bowl -Sergei Eisenstein -Kylie Jenner -This Is Us -Wilder Penfield -Kentucky shooting -Obama portrait -Florida shooting -Real Madrid -Sergei Eisenstein -Government Shutdown 2018 -Florida shooting -Sergei Eisenstein -Government shutdown 2018 -Wilder Penfield -Presidents Day 2018 -Sergei Eisenstein -Solo Trailer -Florida shooting -Winter Olympics -Government Shutdown Meaning -Patriots -Sergei Eisenstein -Wilder Penfield -Wilder Penfield -Shaun White -Patriots -Mark Salling -Real Madrid -OKC Thunder -NBA Trades -SpaceX -SZA -Winter Olympics -Wilder Penfield -Tammy Duckworth -Elizabeth Blackwell -Kim Kardashian -This Is Us -Red Gerard -Dow Jones -Super Bowl score -Paula Modersohn-Becker -Sergei Eisenstein -Virginia Woolf -Elizabeth Blackwell -What Time Is The Super Bowl -Jennifer Aniston -Elizabeth Blackwell -Winter Olympics -Sergei Eisenstein -What Time Is The Super Bowl -Marlon Brando -Black Panther -Elizabeth Blackwell -Patriots -Super Bowl 2018 -Wilder Penfield -Black Panther -Grammys 2018 -Sergei Eisenstein -Fredo Santana -Super blue blood Moon -Happy Valentines Day -Kentucky shooting -Did the Groundhog See His Shadow -What Time Is The Super Bowl -Vikings Vs Eagles -Florida shooting -Zion Williamson -Kylie Jenner -Winter Olympics -SpaceX -NBA Trades -Super blue blood Moon -Walter Payton -Dow Jones -Mark Salling -Elizabeth Blackwell -Virginia Woolf -Memo -Portia de Rossi -Government Shutdown -Shaun White -Bitcoin Price -Paula Modersohn-Becker -State of the Union -Happy Valentines Day -Super Bowl 2018 -What Time Is The Super Bowl -Elizabeth Blackwell -Camila Cabello -Carter G. Woodson -Kim Kardashian -Shaun White -Justin Timberlake -Adam Hicks -CBS Sports -Wilder Penfield -Alex Smith -Kentucky shooting -Tyler Hilinski -Trump State of the Union -Lindsey Vonn -Women's March 2018 -Patriots -Winter Olympics -Virginia Woolf -Larry Nassar -Patriots -NHL All Star Game -Carter G. Woodson -Andrew Cunanan -Women's March 2018 -Super Bowl 2018 -School Closings -Megan Barry -SpaceX -Elizabeth Blackwell -Den of Thieves -Super Bowl score -Super blue blood Moon -Paula Modersohn-Becker -Paula Modersohn-Becker -Government Shutdown -Carter G. Woodson -tsunami -Justin Timberlake -Venom -Virginia Woolf -NSA -Rasual Butler -Jason Kelce -Carter G. Woodson -Danielle Herrington -Florida shooting -Florida shooting -Vikings Vs Eagles -Chief Wahoo -Super blue blood Moon -Government shutdown -Manchester United -Sergei Eisenstein -SpaceX -Winter Olympics -Daryle Singletary -XFL -Tyler Hilinski -Sergei Eisenstein -Jimmy Garoppolo -Florida shooting -United States Postal Service -Edwin Jackson -Florida shooting -Super Bowl 2018 -Florida shooting -Waco -Patriots -Winter Olympics -Carter G. Woodson -Shaun White -UFC 220 -Kirstjen Nielsen -Super Bowl score -Wilder Penfield -Patriots -Black Panther -Paula Modersohn-Becker -Deadpool 2 -SAG Awards 2018 -Vikings Vs Eagles -Chloe Kim -Jemele Hill -Peter Rabbit -Elizabeth Blackwell -SAG Awards 2018 -Kentucky shooting -Elizabeth Blackwell -Chloe Kim -Sergei Eisenstein -Julie Ertz -Winter Olympics -Virginia Woolf -Aaron Hernandez -Super Bowl 2018 -Winter Olympics -Sergei Eisenstein -Florida shooting -Virginia Woolf -Valentines Day -This is Us -Super Bowl score -Fredo Santana -Florida shooting -Elizabeth Blackwell -Elizabeth Blackwell -Super blue blood Moon -Kylie Jenner -Lauren Davis -Elizabeth Blackwell -Paula Modersohn-Becker -What Time Is The Super Bowl -Elizabeth Blackwell -Super Bowl 2018 -Super Bowl 2018 -Vikings Vs Eagles -Wilder Penfield -Obama portrait -Paula Modersohn-Becker -Carter G. Woodson -Carter G. Woodson -Rasual Butler -Paula Modersohn-Becker -Shaun White -Dane Cook -Wilder Penfield -Chinese New Year 2018 -SpaceX -Virginia Woolf -Carter G. Woodson -Patriots -Warren Miller -Robby Anderson -Super Bowl 2018 -This Is Us -State of the Union -Winter Olympics -Winter Olympics -Kelly Clark -Chief Wahoo -Enzo Amore -Super Bowl score -Elizabeth Blackwell -Patriots -Greg Monroe -Winter Olympics -Trump State of the Union -Super Bowl 2018 -Super Bowl score -Culture 2 -Grammys 2018 -Groundhog Day 2018 -Carter G. Woodson -Peter Rabbit -Paula Modersohn-Becker -Wilder Penfield -Roger Federer -What Time Is The Super Bowl -Patriots -Government Shutdown -Paula Modersohn-Becker -Rasual Butler -XFL -Super Bowl score -SAG Awards 2018 -Government Shutdown -Steve Mcnair -Black Panther -Mark Salling -Paula Modersohn-Becker -Terrell Owens -Super Bowl 2018 -Kylie Jenner -Hostiles -Elizabeth Blackwell -Mark Salling -Cherry Seaborn -Aliona Savchenko -Mark Salling -Bill Parcells -Grammys 2018 -Chris Paul -SpaceX -Culture 2 -Groundhog Day 2018 -Winter Olympics -Florida shooting -School Closings -Carter G. Woodson -Tyler Hilinski -Winter Olympics -Tyler Hilinski -Jennifer Aniston -Super blue blood Moon -Winter Olympics -Rodney Hood -Wilder Penfield -Vanessa Trump -Dow Jones -Korea -Patriots -Trey Gowdy -Grammys 2018 -XFL -Patriots -Jamie Anderson -Government Shutdown -Pro Bowl 2018 -Heath Ledger -Carter G. Woodson -Elizabeth Blackwell -Nadal -Mikaela Shiffrin -Rodney Hood -Joe Kennedy -Shaun White -National Pizza Day -Kim Kardashian -Rihanna -AFC Championship Game 2018 -Virginia Woolf -Winter Olympics -Duke Basketball -SpaceX -Carter G. Woodson -Vikings Vs Eagles -Paula Modersohn-Becker -NBA Trades -Sergei Eisenstein -Virginia Woolf -Larry Nassar -Larry Nassar -Mark Salling -Wilder Penfield -Wing Bowl 2018 -What Time Is The Super Bowl -Cherry Seaborn -Mark Salling -Carter G. Woodson -Despacito -XFL -Dow Jones -Cavs -Chinese New Year 2018 -Lady Bird -State of the Union -Carter G. Woodson -Blake Griffin -Florida shooting -Lil Xan -Fredo Santana -Pink -Super Bowl score -Grammys 2018 -Oscar Nominations 2018 -Wilder Penfield -Robert Mueller -Chloe Kim -NBA Trades -State of the Union -XFL -Groundhog Day 2018 -Sergei Eisenstein -Cnbc -Kentucky shooting -Elizabeth Blackwell -school closings -Virginia Woolf -Paula Modersohn-Becker -Sergei Eisenstein -NBA Trades -Kim Kardashian -Kitty Kat West -Amy Schumer -Government Shutdown -Memo -Duke Basketball -Sea Of Thieves -Winter Olympics -Winter Olympics -Blake Griffin -Florida shooting -Jason Kidd -Super Bowl 2018 -Ash Wednesday -Wilder Penfield -Did the Groundhog See His Shadow -Yahoo Finance -Carter G. Woodson -Kylie Jenner -What Time Is The Super Bowl -Florida shooting -Tammy Duckworth -Vikings Vs Eagles -Royal Rumble 2018 -Virginia Woolf -Kim Kardashian -Super Bowl Commercials 2018 -Women's March 2018 -Scott Baio -Nadal -Super Bowl score -Paul Ryan -Westerville Ohio -Quentin Tarantino -Virginia Woolf -Did the Groundhog See His Shadow -SpaceX -Sergei Eisenstein -Call Me by Your Name -DeMarcus Cousins -SpaceX -Tom Izzo -Outback Steakhouse -fake news awards -Daryle Singletary -Deadpool 2 -NBA Trades -SpaceX -Happy Valentines Day -SpaceX -Valentines Day -Kim Kardashian -Groundhog Day 2018 -SpaceX -Black Panther -Super Bowl Commercials 2018 -Chloe Kim -Justin Timberlake -Vikings Vs Eagles -Winter Olympics -Super Bowl 2018 -Paula Modersohn-Becker -Super blue blood Moon -Super Bowl 2018 -Derrick Rose -Lena Zawaideh -Rachel Brand -Elizabeth Blackwell -Super Bowl score -Sergei Eisenstein -Justin Timberlake -Lonzo Ball -Groundhog Day 2018 -Bitcoin Price -Wilder Penfield -Larry Nassar -Winchester -Paula Modersohn-Becker -Winter Olympics -Luke Wilson -Dow Jones -Florida shooting -Virginia Woolf -Meteor -Korea -Lady Doritos -When We First Met -Government Shutdown 2018 -Nancy Pelosi -Carter G. Woodson -Virginia Woolf -Chloe Kim -Winter Olympics -Chicago West -Celtics -Patriots -Patriots -Alex Smith -This is Us -Florida shooting -Tsunami Warning -Andrew Cunanan -Paula Modersohn-Becker -Rodney Hood -Enzo Amore -Toys R Us -Paula Modersohn-Becker -Kylie Jenner -Julie Bowen -John Mahoney -Paula Modersohn-Becker -Winter Olympics -Jacob Copeland -Super Bowl 2018 -Tyler Hilinski -SpaceX -Winter Olympics -What Time Is The Super Bowl -Lindsey Vonn -Paula Modersohn-Becker -Carter G. Woodson -Isaiah Canaan -Paula Modersohn-Becker -Apolo Ohno -Luke Wilson -Jennifer Aniston -Patriots -Elizabeth Blackwell -Winter Olympics -Super blue blood Moon -Mark Salling -Elizabeth Blackwell -Super blue blood Moon -Lonzo Ball -Florida shooting -Winter Olympics -Super Bowl score -Mark Salling -Dow Jones -Super Bowl 2018 -Patriots -School Closings -Paula Modersohn-Becker -Chloe Kim -Obama portrait -What Time Is The Super Bowl -Cloverfield Paradox -Ash Wednesday -Paula Modersohn-Becker -Michigan State -Carter G. Woodson -Blake Griffin -Super Bowl 2018 -Carter G. Woodson -Elizabeth Blackwell -Elizabeth Blackwell -Florida shooting -Winter Olympics -Nba All Star Draft -Shaun White -Mark Salling -Kylie Jenner -Florida shooting -Justin Timberlake -Super Bowl 2018 -Florida shooting -Wilder Penfield -Government Shutdown -Larry Nassar -Wilder Penfield -Super blue blood Moon -Roger Federer -Once Upon a Time -Paula Modersohn-Becker -Tyler Hilinski -Wilder Penfield -Kylie Jenner Baby Girl -Quincy Jones -What Time Is The Super Bowl -Sergei Eisenstein -SAG Awards 2018 -Super Bowl score -Robert Mueller -Super Bowl score -Patriots -Mikaela Shiffrin -Carter G. Woodson -Lakers -Virginia Woolf -Justin Timberlake -Justin Timberlake -Grammys 2018 -Black Panther -Chicago West -Sting -Cloverfield Paradox -NFC Championship Game 2018 -Super Bowl 2018 -This Is Us -Elizabeth Blackwell -Super Bowl score -Adam Hicks -Florida shooting -Isaiah Thomas -Paula Modersohn-Becker -Jennifer Aniston -Super Bowl score -Sergei Eisenstein -Josh McDaniels -Chloe Kim -Altered Carbon -What Time Is The Super Bowl -Super blue blood Moon -Patriots -Bob Marley -Elizabeth Blackwell -Sergei Eisenstein -Carter G. Woodson -Jason Kelce -Kentucky shooting -Detroit Lions -Groundhog Day 2018 -NFC Championship Game 2018 -Atlanta Weather -Simona Halep -Simona Halep -Elizabeth Blackwell -VIX -What Time Is The Super Bowl -Elizabeth Blackwell -Super Bowl 2018 -Paula Modersohn-Becker -Justin Timberlake -Groundhog Day 2018 -Wilder Penfield -Wilder Penfield -AR-15 -Justin Timberlake -Vince McMahon -Jason Kelce -Virginia Woolf -School Closings -Justin Timberlake -Paula Modersohn-Becker -Justin Timberlake -Yoel Romero -Justin Timberlake -Wilder Penfield -Super Bowl score -Kylie Jenner -Black Panther -Elizabeth Blackwell -Paula Modersohn-Becker -Bitcoin Price -Virginia Woolf -Florida shooting -Paula Modersohn-Becker -Winter Olympics -Super Bowl 2018 -Obama portrait -Kylie Jenner -Carter G. Woodson -Patriots -Hostiles -Wilder Penfield -Wilder Penfield -Government Shutdown -Eli Manning -Super Bowl 2018 -Edwin Jackson -Cedi Osman -Alex Smith -Snapchat Update -Super Bowl score -Sergei Eisenstein -The 15:17 to Paris -Elizabeth Blackwell -Government Shutdown -Patriots -Jennifer Aniston -Obama portrait -Super Bowl score -Patriots -Wilder Penfield -Zion Williamson -Paula Modersohn-Becker -Grammys 2018 -Vikings Vs Eagles -Chipper Jones -Sergei Eisenstein -Winter Olympics -Carter G. Woodson -SpaceX -Winter Olympics -Omarosa -Winter Olympics -Natalie Wood -Wilder Penfield -What Time Is The Super Bowl -Government Shutdown -Grammys 2018 -Super Blue Blood Moon -Government shutdown 2018 -stock market -Royal Rumble 2018 -Oscar Nominations 2018 -SpaceX -Virginia Woolf -Super Bowl score -Super Bowl 2018 -Sergei Eisenstein -Sergei Eisenstein -Patriots -Super Bowl 2018 -Winter Olympics -Elizabeth Blackwell -Rampage -Paula Modersohn-Becker -Super Bowl score -Fifty Shades Freed -Wilder Penfield -Carter G. Woodson -VIX -Olympic medal count -Paula Modersohn-Becker -Olympic Medal Count -Elizabeth Blackwell -Carter G. Woodson -Vikings Vs Eagles -New England Patriots owner -Nascar Schedule -Elizabeth Blackwell -Elizabeth Blackwell -Snapchat Update -Pink -Grammys 2018 -Grammys 2018 -Paula Modersohn-Becker -Winter Olympics -Shaun White -Tyler Hilinski -Florida shooting -Wilder Penfield -Get Out -Quincy Jones -SpaceX -Justin Timberlake -Patriots -Virginia Woolf -Virginia Woolf -Super Bowl 2018 -Larry Nassar -Altered Carbon -Amazon HQ2 -Wilder Penfield -Elizabeth Blackwell -Vikings vs Eagles -Larry Nassar -Patriots -Government Shutdown -Trey Gowdy -Super Bowl 2018 -SpaceX -Florida shooting -Super Bowl score -UFC 220 -Virginia Woolf -Vikings Vs Eagles -Alessia Cara -Carter G. Woodson -Super blue blood Moon -Sergei Eisenstein -Justin Timberlake -Joe Kennedy -LeBron James -Wilder Penfield -What Time Is The Super Bowl -Virginia Woolf -Winter Olympics -Super Bowl score -Kylie Jenner -Paula Modersohn-Becker -Johnny Weir -Winter Olympics -Google docs -State of the Union -Carter G. Woodson -Florida shooting -Doomsday Clock -Carter G. Woodson -Rodney Hood -FC Barcelona -Patriots -Trayvon Martin -Elizabeth Blackwell -Super Bowl 2018 -Kylie Jenner Baby Girl -Larry Nassar -SAG Awards 2018 -Chloe Kim -Florida shooting -UFC 220 -What Time Is The Super Bowl -Government Shutdown -Carter G. Woodson -Patriots -Altered Carbon -Vikings vs Eagles -Kesha -Groundhog Day 2018 -Elizabeth Blackwell -Government shutdown 2018 -Carter G. Woodson -slides -Virginia Woolf -Happy Valentines Day -Happy Valentines Day -Super Bowl 2018 -Josh McDaniels -Patriots -Paula Modersohn-Becker -Sergei Eisenstein -Blake Griffin -Atlanta Weather -What Time Is The Super Bowl -Government Shutdown -Justin Timberlake -Carter G. Woodson -Farmers Insurance Open 2018 -Patriots -Chicago West -Paula Modersohn-Becker -Evgenia Medvedeva -Solo Trailer -NBC Sports -Virginia Woolf -Uma Thurman -Kentucky shooting -State of the Union -Wilder Penfield -Larry Nassar -State of the Union -SpaceX -SpaceX -Patriots -Elton John -Wilder Penfield -Mardi Gras 2018 -Winter Olympics -Super Bowl Commercials 2018 -Valentines Day Cards -Cloverfield Paradox -SpaceX -Justin Timberlake -Solo Trailer -Did the Groundhog See His Shadow -What Time Is The Super Bowl -Mardi Gras 2018 -Obama portrait -Paula Modersohn-Becker -Phantom Thread -Justin Timberlake -Super Bowl score -Florida shooting -Frank Reich -Carter G. Woodson -NFC Championship Game 2018 -Royal Rumble 2018 -NBC Sports -Wilder Penfield -Patriots -Solo Trailer -Rasual Butler -Florida shooting -Virginia Woolf -12 Strong -Wilder Penfield -Rob Delaney -Jennifer Aniston -Kylie Jenner -Dow Jones industrial average -Justin Timberlake -Florida shooting -SpaceX -Carter G. Woodson -Royal Rumble 2018 -Megan Barry -Jamie Anderson -Super Bowl 2018 -Jason Kelce -Super Bowl score -calculator -Memo -Elton John -Virginia Woolf -Virginia Woolf -Super Bowl Winners -VIX -Justin Timberlake -Elizabeth Blackwell -Oscar Nominations 2018 -Alaska earthquake -Den of Thieves -State of the Union -Anastasia Bryzgalova -VIX -Super Bowl score -Alessia Cara -What Time Is The Super Bowl -Grammys 2018 -Lou Anna Simon -Tom Petty -Dow Jones -Paula Modersohn-Becker -Paula Modersohn-Becker -Sergei Eisenstein -Nintendo Labo -Florida shooting -Grey's Anatomy -Virginia Woolf -Sergei Eisenstein -Maze Runner: The Death Cure -Winter Olympics -Virginia Woolf -Patriots -Super Bowl score -What Time Is The Super Bowl -SpaceX -CBS Sports -NBA Trades -AFC Championship Game 2018 -Elizabeth Blackwell -Government Shutdown -Elizabeth Blackwell -Carter G. Woodson -Super Bowl 2018 -Gianni Versace -Elizabeth Blackwell -Wilder Penfield -Den of Thieves -Justin Timberlake -Patriots -Vanessa Marcil -Mark Salling -Oscar Nominations 2018 -Johnny Weir -Terrell Owens -Royal Rumble 2018 -Paula Modersohn-Becker -Virginia Woolf -State of the Union -Jamie Anderson -Dane Cook -Wilder Penfield -Government Shutdown -Kodak Black -Justin Timberlake -Virginia Woolf -Scott Baio -Happy Valentines Day -Zuleyka Rivera -Sea Of Thieves -Sting -Carter G. Woodson -Mikaela Shiffrin -SAG Awards 2018 -Florida shooting -Virginia Woolf -Florida shooting -Virginia Woolf -Government Shutdown -Winter Olympics -Shaun White -SpaceX -Patriots -James Maslow -Larry Nassar -Maddie Mastro -Florida shooting -Government Shutdown Meaning -Isaiah Canaan -What Time Is The Super Bowl -Sergei Eisenstein -Elizabeth Blackwell -Larry Nassar -Cherry Seaborn -Carter G. Woodson -Patriots -Paula Modersohn-Becker -Paula Modersohn-Becker -Paula Modersohn-Becker -Virginia Woolf -tsunami -Super blue blood Moon -Groundhog Day 2018 -What Time Is The Super Bowl -Mikaela Shiffrin -Gianni Versace -Olympic medal count -Olympic medal count -Florida shooting -Johnny Weir -Paula Modersohn-Becker -Tom Brady daughter -Kylie Jenner Baby Girl -Puppy Bowl 2018 -Elizabeth Blackwell -Elizabeth Blackwell -Lil Xan -Wilder Penfield -Wilder Penfield -Bitcoin Price -Super Bowl score -Release The Memo -Carter G. Woodson -School Closings -Fredo Santana -SpaceX -Government Shutdown -Patriots -Patriots -New California -Fredo Santana -Ash Wednesday -Dow Jones -Patriots -Alaska earthquake -Dow Jones industrial average -Obama portrait -State of the Union -Childish Gambino -Super Bowl score -Outback Steakhouse -Juventus -Florida shooting -Sergei Eisenstein -Grammys 2018 -Wilder Penfield -Super Bowl 2018 -12 Strong -Dwyane Wade -Vikings Vs Eagles -Omarosa -Purdue basketball -Wilder Penfield -Sergei Eisenstein -Daniel Kaluuya -Edible Arrangements -Kris Dunn -Princess Eugenie -Carter G. Woodson -AFC Championship Game 2018 -Patriots -What Time Is The Super Bowl -Paula Modersohn-Becker -Grammys 2018 -Dane Cook -Puppy Bowl 2018 -Blake Griffin Trade -Vincent Zhou -Lauren Davis -Winter Olympics -Carter G. Woodson -Justin Timberlake -Grammys 2018 -Anthony Davis -Edible Arrangements -Royal Rumble 2018 -Josh McDaniels -Sergei Eisenstein -Joy Villa -Kodak Black -Black Panther -Blake Griffin -Virginia Woolf -Patriots -Lunar eclipse -Kylie Jenner -Super blue blood Moon -Ronaldinho -Sergei Eisenstein -Super blue blood Moon -Winter Olympics -Alexander Polinsky -Wilder Penfield -Wilder Penfield -Florida shooting -Paula Modersohn-Becker -Carter G. Woodson -National Pizza Day -SpaceX -Ar 15 -This Is Us -Paul Ryan -Chicago West -Super Bowl 2018 -Vanity Fair Cover -Dwyane Wade -Super Bowl score -Groundhog Day 2018 -XFL -Mardi Gras 2018 -Florida shooting -Kylie Jenner -Valentines Day Memes -12 Strong -Carter G. Woodson -Zuleyka Rivera -Super Bowl score -Virginia Woolf -Paula Modersohn-Becker -NFC Championship Game 2018 -Super Bowl 2018 -Larry Nassar -Paula Modersohn-Becker -Kesha -Patriots -Vikings Vs Eagles -Winter Olympics -Kesha Grammy -Winter Olympics -United States Of America Winter Olympics -National Pizza Day -Bitcoin Price -Quincy Jones -Sergei Eisenstein -CNN -Florida shooting -Kylie Jenner -Larry Nassar -Wilder Penfield -Sean McVay -Super Bowl score -Robert Wagner -Florida shooting -Justin Timberlake -Virginia Woolf -Groundhog Day 2018 -Happy Valentines Day -Cavs -Paula Modersohn-Becker -Winter Olympics -Kylie Jenner -Josh McDaniels -Florida shooting -NFC Championship Game 2018 -Winter Olympics -Arsenal -Mary And The Witch's Flower -Chicago West -Cavs -Homeland -Vic Damone -Vikings vs Eagles -Super Bowl score -Jessica Chastain -Winter Olympics -Duke Basketball -Super Bowl score -Ohio State basketball -Black Lightning -Winter Olympics -Virginia Woolf -Korea -Super Bowl 2018 -Super Bowl score -Bitcoin Price -New England Patriots owner -Justin Timberlake -Costco Wholesale -Elizabeth Blackwell -Ronaldinho -Lunar eclipse -Bitcoin Price -Sergei Eisenstein -Kim Kardashian -Larry Nassar -Super Bowl score -Groundhog Day 2018 -Dow Jones -SpaceX -Black Panther -Super Bowl 2018 -Grammys 2018 -Winter Olympics -Groundhog Day 2018 -Mardi Gras 2018 -Norovirus -Super Bowl score -Patriots -Groundhog Day 2018 -Tara Lipinski -Alaska earthquake -Johnny Weir -Solo Trailer -Justin Timberlake -Larry Nassar -Patriots -Florida shooting -Carter G. Woodson -XFL -Patriots -Obama portrait -Kristaps Porzingis -Sergei Eisenstein -Elizabeth Blackwell -Super Bowl score -Google Classroom -Florida shooting -Lil Pump -Carter G. Woodson -Super Bowl score -Government shutdown 2018 -Adam Rippon -Camila Cabello -Sergei Eisenstein -Elizabeth Blackwell -Super Bowl 2018 -Alessia Cara -Solo Trailer -Carter G. Woodson -Lari White -Wilder Penfield -Elizabeth Blackwell -Super Bowl 2018 halftime show -Super Bowl score -Shaun White -Larry Nassar -Black Panther -Joe Kennedy -Florida shooting -Super blue blood Moon -Virginia Woolf -Florida shooting -SpaceX -Dennis Edwards -Puppy Bowl 2018 -Super Bowl 2018 -Sergei Eisenstein -Super Bowl score -Super Bowl score -Hostiles -Super Bowl score -Grammys 2018 -Carter G. Woodson -Grammys 2018 -Enzo Amore -Gianni Versace -Oscar Nominations 2018 -Wilder Penfield -Vikings Vs Eagles -Montreal Cognitive Assessment -Elizabeth Blackwell -Sergei Eisenstein -Grammys 2018 -Lil Pump -Chloe Kim -Groundhog Day 2018 -Rodney Hood -National Pizza Day -Super Bowl 2018 -Did the Groundhog See His Shadow -Kesha Grammy -Patriots -Oscar Nominations 2018 -Super Bowl Commercials -Winter Olympics -Google Classroom -Winter Olympics -Paula Modersohn-Becker -Scott Baio -Obama portrait -Florida shooting -Daryle Singletary -Super Bowl score -luge -Winter Olympics -Duke Basketball -Ar 15 -Lou Anna Simon -Paula Modersohn-Becker -Chicago West -Google docs -Justin Timberlake -Eli Manning -Super Bowl score -United States Of America Winter Olympics -Super Bowl 2018 -Tyler Hilinski -Ash Wednesday -Virginia Woolf -Black Panther -Patriots -Elizabeth Blackwell -Paula Modersohn-Becker -Royal Rumble 2018 -AR-15 -Super Bowl 2018 -School Closings -Justin Timberlake -Google Classroom -Oscar Nominations 2018 -Virginia Woolf -Government Shutdown -Patriots -Blake Griffin -Super Bowl 2018 -Super Bowl 2018 -Elizabeth Blackwell -Wilder Penfield -Royal Rumble 2018 -Black Panther -Justin Timberlake -UFC 220 -Alexa Commercial -Larry Nassar -Government Shutdown -Toys R Us -Florida shooting -Sergei Eisenstein -Fredo Santana -Wilder Penfield -Winter Olympics -Super Bowl score -Paula Modersohn-Becker -Super Bowl score -Olympic medal count -Culture 2 -Amy Schumer -Royal Rumble 2018 -Meteor -XIV -Paula Modersohn-Becker -Shaun White -Larry Nassar -Grammys 2018 -Black Panther -Paula Modersohn-Becker -Did the Groundhog See His Shadow -Wilder Penfield -Elizabeth Blackwell -Kylie Jenner -Kylie Jenner -What Time Is The Super Bowl -Walter Payton -Happy Valentines Day -Den of Thieves -Grammys 2018 -Quincy Jones -Oscar Nominations 2018 -Stan Lee -Patriots -Carter G. Woodson -Super Bowl score -Super Bowl Commercials 2018 -Sergei Eisenstein -Royal Rumble 2018 -Virginia Woolf -shutdown -Anna Kournikova -Carter G. Woodson -Larry Nassar -Oscar Nominations 2018 -Sergei Eisenstein -Megan Barry -Sergei Eisenstein -calculator -Patriots -Wilder Penfield -Happy Valentines Day -State of the Union -Paula Modersohn-Becker -Snapchat Update -Dow Jones -Peter Rabbit -Obama portrait -Pro Bowl 2018 -Did the Groundhog See His Shadow -Robert Wagner -Tyler Hilinski -Johnny Weir -Virginia Woolf -Virginia Woolf -Shaun White -DeMarcus Cousins -Dwyane Wade -Jennifer Aniston -Florida shooting -Shaun White -Andrew Cunanan -Alison Brie -Chloe Kim -Wilder Penfield -Lindsey Vonn -Black Panther -Virginia Woolf -Amy Schumer -Carter G. Woodson -Sergei Eisenstein -Joe Kennedy -Rose McGowan -Super Bowl score -Winter Olympics -Maze Runner: The Death Cure -Mardi Gras 2018 -Wonder Woman -Lady Bird -Dow Jones -Oar Olympics -Winter Olympics -SpaceX -Virginia Woolf -Super Bowl 2018 -Valentines Day -Super blue blood Moon -Groundhog Day 2018 -Drake -Florida shooting -Florida shooting -Sergei Eisenstein -Steve Wynn -Super Blue Blood Moon -Valentines Day -Valentines Day -Carter G. Woodson -Shaun White -North Korean cheerleaders -Kylie Jenner -Carter G. Woodson -Duke Basketball -Waco -Patriots -Super Bowl 2018 -One Day At A Time -Super Bowl Commercials 2018 -Chloe Kim -Blake Griffin -Valentines Day -Google docs -Rodney Hood -Blue Ivy -Government Shutdown -Carter G. Woodson -Sergei Eisenstein -Virginia Woolf -Google Drive -NBA Trades -Grammys 2018 -Florida shooting -Ash Wednesday -Farmers Insurance Open 2018 -Winter Olympics -Sergei Eisenstein -Super Bowl score -Shaun White -Chicago Weather -Fredo Santana -Government Shutdown -Alessia Cara -Florida shooting -SpaceX -Vikings Vs Eagles -Patriots -Carter G. Woodson -Carter G. Woodson -Government Shutdown -Kentucky shooting -Florida shooting -Solo Trailer -Paula Modersohn-Becker -Government Shutdown Meaning -Super Bowl 2018 -Super Bowl score -Stock Market Crash Today -Kylie Jenner Baby Girl -Paula Modersohn-Becker -Classroom -Mardi Gras 2018 -Ash Wednesday -Virginia Woolf -Oscar Nominations 2018 -Patriots -Patriots -Kylie Jenner -Patriots -Justin Timberlake -Super Bowl 2018 -Bill Belichick -Kristaps Porzingis -Anastasia Bryzgalova -Super Bowl score -National Pizza Day -Waco -Winter Olympics -Dwyane Wade -Esteban Loaiza -Mikaela Shiffrin -Wilder Penfield -Omarosa -Hostiles -Andrew Cunanan -Mark Salling -Jason Kelce -Presidents Day 2018 -Larry Nassar -Winter Olympics -Grammys 2018 -Brie Larson -Justin Timberlake -Super Bowl score -Groundhog Day 2018 -Sergei Eisenstein -Sergei Eisenstein -Virginia Woolf -Florida shooting -Andrew Cunanan -Naya Rivera -Patriots -Bitcoin Price -Did the Groundhog See His Shadow -Lil Pump -Altered Carbon -Ronaldinho -Super Bowl 2018 -Super Bowl score -Grey's Anatomy -Kylie Jenner -Wilder Penfield -Lil Pump -Adam Rippon -Groundhog Day 2018 -Mark Salling -school closings -What Time Is The Super Bowl -Wilder Penfield -Virginia Woolf -Larry Nassar -Adam Rippon -Wilder Penfield -Vikings Vs Eagles -What Time Is The Super Bowl -Apolo Ohno -Jennifer Aniston -Larry Nassar -Wilder Penfield -Shaun White -Carter G. Woodson -Lady Bird -Happy Valentines Day -Patriots -Groundhog Day 2018 -Zion Williamson -Carter G. Woodson -Florida shooting -Brynn Cameron -Wilder Penfield -Super Bowl 2018 -Bernie Sanders -SpaceX -Patriots -Wilder Penfield -Super Bowl score -Sergei Eisenstein -Wilder Penfield -New England Patriots owner -Super Bowl score -Grammys 2018 -Wilder Penfield -Dow Jones -Super Bowl score -Florida shooting -Kentucky shooting -Winter Olympics -Super Bowl score -Super Bowl 2018 -Super Bowl 2018 -Tammy Duckworth -Elizabeth Blackwell -Elizabeth Blackwell -Sergei Eisenstein -National Pizza Day -Obama portrait -Dow Jones -Winter Olympics -Elizabeth Blackwell -KSI Vs Weller -Government Shutdown Meaning -Paula Modersohn-Becker -Luke Wilson -Google docs -Dwyane Wade -Government shutdown -Mikaela Shiffrin -Paula Modersohn-Becker -Kratom -Pink -Super Bowl 2018 -Carter G. Woodson -SpaceX -Andre Roberson -Altered Carbon -Zion Williamson -Super Bowl 2018 -Kylie Jenner -Larry Nassar -Patriots -Kesha Grammy -Sergei Eisenstein -AFC Championship Game 2018 -Dow Jones -Rose McGowan -This Is Us -Super Bowl 2018 -Virginia Woolf -Dow Jones -LeBron James -Carter G. Woodson -Terry Bradshaw -Super Bowl 2018 -Dow Jones -Virginia Woolf -What Time Is The Super Bowl -Kylie Jenner -Mark Salling -What Time Is The Super Bowl -State of the Union -Kylie Jenner -Carter G. Woodson -Kylie Jenner -Florida shooting -Pro Bowl 2018 -Robert Wagner -Kentucky shooting -Elizabeth Blackwell -Google docs -Kylie Jenner Baby Girl -Elizabeth Blackwell -Justin Timberlake -Florida shooting -Westminster Dog Show 2018 -Nintendo Labo -Carter G. Woodson -Chloe Kim -Winter Olympics -Super Bowl 2018 -Virginia Woolf -Erykah Badu -Sergei Eisenstein -Virginia Woolf -Groundhog Day 2018 -Paula Modersohn-Becker -Kentucky shooting -Ellen DeGeneres -AFC Championship Game 2018 -Kentucky shooting -Pro Bowl 2018 -Super blue blood Moon -Super Bowl 2018 halftime show -Despacito -Royal Rumble 2018 -Patriots -Carter G. Woodson -Oscar Nominations 2018 -Elton John -Red Gerard -Shaun White -Adam Rippon -Omarosa -Jessica Chastain -New England Patriots owner -School closings -Elizabeth Blackwell -Mike Vrabel -Bruno Mars -Lari White -Government shutdown -Mike Vrabel -Paula Modersohn-Becker -Chinese New Year 2018 -Megan Barry -Government shutdown -Elizabeth Blackwell -Quincy Jones -Larry Nassar -School Closings -Paula Modersohn-Becker -Patriots -Black Panther -What Time Is The Super Bowl -Wilder Penfield -Lee Miglin -What Time Is The Super Bowl -Childish Gambino -Virginia Woolf -Rodney Hood -Super Bowl 2018 -Government Shutdown -Sergei Eisenstein -Trump State of the Union -The 15:17 to Paris -Pro Bowl 2018 -Luke Wilson -SpaceX -Black Panther -Super Bowl score -Robert Wagner -Fortnite New Map -Patriots -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl score -Rob Gronkowski -Super Bowl score -Patriots -Cryptocurrency News -Carter G. Woodson -Olive Garden -Super Bowl Winners -Omarosa -Presidents Day 2018 -Sergei Eisenstein -What Time Is The Super Bowl -Government Shutdown -Virginia Woolf -Bitcoin Price -What Time Is The Super Bowl -Paula Modersohn-Becker -SpaceX -Cryptocurrency News -SpaceX -Chinese New Year 2018 -Government Shutdown -Elizabeth Blackwell -Winter Olympics -Sergei Eisenstein -Pro Bowl 2018 -Derrick Rose -What Time Is The Super Bowl -SpaceX -Paula Modersohn-Becker -Virginia Woolf -Larry Nassar -Drake -Florida shooting -SpaceX -Florida shooting -Alexa Commercial -Google docs -Walter Payton -Virginia Woolf -Wilder Penfield -Carter G. Woodson -Vikings Vs Eagles -Shaun White -Pro Bowl 2018 -Super Bowl 2018 -stock market -Winter Olympics -Elizabeth Blackwell -Carter G. Woodson -This Is Us -Solo Trailer -Super Bowl 2018 -Elizabeth Blackwell -Olive Garden -Malcom Butler -Winter Olympics -Super Bowl 2018 -Terrell Owens -Virginia Woolf -Winter Olympics -Sergei Eisenstein -Paula Modersohn-Becker -Florida shooting -Omarosa -What Time Is The Super Bowl -Government Shutdown -Super Bowl Winners -Sergei Eisenstein -Pro Bowl 2018 -Super Bowl 2018 -Tomi Lahren -Pro Bowl 2018 -Florida shooting -Mardi Gras 2018 -Super Bowl 2018 -Patriots -Dow Jones -Elizabeth Blackwell -Anastasia Bryzgalova -Costco Wholesale -What Time Is The Super Bowl -Patriots -Virginia Woolf -Black Panther -Florida shooting -Super Bowl score -Vikings Vs Eagles -Paula Modersohn-Becker -Elton John tickets -SpaceX -Virginia Woolf -Rasual Butler -Wilder Penfield -Nancy Pelosi -Puppy Bowl 2018 -UFC 220 -Stock Market Crash Today -Lunar eclipse -Super Bowl 2018 -Carter G. Woodson -What Time Is The Super Bowl -Wilder Penfield -Vanessa Marcil -Robert Wagner -Kylie Jenner -This Is Us -Den of Thieves -Paula Modersohn-Becker -Childish Gambino -UFC 220 -Paula Modersohn-Becker -Google docs -Westminster Dog Show 2018 -What Time Is The Super Bowl -Larry Nassar -Omarosa -Super Bowl 2018 -Grammys 2018 -Louise Linton -Grammys 2018 -Elizabeth Blackwell -Mark Salling -State of the Union -Paula Modersohn-Becker -Government Shutdown -Super Bowl score -Groundhog Day 2018 -Sergei Eisenstein -Johnny Weir -Winter Olympics -Grammys 2018 -Johnny Weir -Sergei Eisenstein -Rodney Hood -Virginia Woolf -Elton John -Grammys 2018 -Super Bowl 2018 -Winter Olympics -Oar Olympics -Super Bowl 2018 -Olympics 2018 -Chloe Kim -Joshua Cooper Ramo -Doomsday Clock -United States Of America Winter Olympics -Grammys 2018 -Super blue blood Moon -Wilder Penfield -Virginia Woolf -Winter Olympics -Adam Rippon -Mark Salling -Shiffrin -Winter Olympics -Patriots -Rasual Butler -stock market -Natalie Wood -Sergei Eisenstein -Columbine -Patriots -Lindsey Vonn -Carter G. Woodson -Cryptocurrency News -Elton John -Kylie Jenner -Winter Olympics -Oscar Nominations 2018 -Women's March 2018 -Best Superbowl Commercials 2018 -NBA Trades -Government Shutdown -Winter Olympics -Ash Wednesday -Wilder Penfield -SpaceX -Grammys 2018 -Elizabeth Blackwell -Reg E Cathey -Justin Timberlake -Super Bowl Commercials 2018 -Winter Olympics -Justin Timberlake -Kylie Jenner -Alaska earthquake -Winter Olympics -Larry Nassar -Johnny Weir -Super Bowl Winners -Government shutdown -Patriots -Kim Kardashian -Carter G. Woodson -NBA Trades -Alaska earthquake -Paula Modersohn-Becker -Patriots -Blake Griffin -SpaceX -Football Playoffs 2018 -Patriots -Government Shutdown -Portia de Rossi -Happy Valentines Day -Dow Jones -Elizabeth Blackwell -Winter Olympics -Vikings vs Eagles -Elizabeth Blackwell -Virginia Woolf -Dow Jones -Kylie Jenner -What Time Is The Super Bowl -Steve Wynn -Fredo Santana -Kim Kardashian -Gigi Hadid -Shani Davis -Virginia Woolf -Super Bowl Commercials 2018 -Super Bowl score -Virginia Woolf -Shaun White -Lorenzo Cain -Virginia Woolf -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl score -Patti LuPone -Vikings Vs Eagles -Government Shutdown 2018 -Super Bowl 2018 -Paula Modersohn-Becker -Kylie Jenner -Reg E Cathey -Patriots -Super Blue Blood Moon -Rasual Butler -Super Bowl score -Paula Modersohn-Becker -Super Bowl 2018 -Mavic Air -Patriots -SAG Awards 2018 -Terry Bradshaw -Elizabeth Blackwell -Shani Davis -Celtics -Fifty Shades Freed -Sergei Eisenstein -Will Ferrell -Florida shooting -Larry Nassar -What Time Is The Super Bowl -Memo -Patriots -Florida shooting -Justin Timberlake -Super Bowl 2018 -Florida shooting -Patriots -Sergei Eisenstein -Amy Schumer -Super Bowl 2018 -Louise Linton -Mark Salling -Kylie Jenner Baby Girl -Elizabeth Blackwell -Kylie Jenner -Release The Memo -Justin Timberlake -Justin Timberlake -Black Panther -SZA -National Pizza Day -Wilder Penfield -Sergei Eisenstein -Kingdom Come Deliverance -Atlanta Weather -Esteban Loaiza -Justin Timberlake -Omarosa -This Is Us -Super Bowl 2018 -Elizabeth Blackwell -Paula Modersohn-Becker -Sergei Eisenstein -Olympic medal count -Jennifer Aniston -Winter Olympics -Rasual Butler -Ash Wednesday -Super blue blood Moon -Kentucky shooting -Government Shutdown Meaning -Lakers -Grammys 2018 -Winter Olympics -Super Bowl 2018 -Bitcoin Price -AFC Championship Game 2018 -Blake Griffin -Dwyane Wade -Florida shooting -State of the Union -Dow Jones -Rasual Butler -Sergei Eisenstein -Government Shutdown Meaning -Fifty Shades Freed -Super Blue Blood Moon -Sergei Eisenstein -Obama portrait -Super Bowl 2018 -Yura Min -Kylie Jenner -Virginia Woolf -Chicago West -Dow Jones -Did the Groundhog See His Shadow -Mark Salling -Virginia Woolf -Kentucky shooting -Wilder Penfield -Jen Selter -Kylie Jenner -Adam Rippon -Kylie Jenner -Government shutdown 2018 -Justin Timberlake -Super Bowl score -Shaun White -What Time Is The Super Bowl -This is Us -Wilder Penfield -Virginia Woolf -Patriots -Classroom -Did the Groundhog See His Shadow -Patriots -Natalie Wood -Cloverfield Paradox -Carter G. Woodson -XFL -Super Bowl 2018 -Winter Olympics -Classroom -Super Bowl 2018 -Andrew Cunanan -Yahoo Finance -Carter G. Woodson -Dwyane Wade -Brynn Cameron -Patriots -Paula Modersohn-Becker -Elizabeth Blackwell -Mark Salling -Carter G. Woodson -Winter Olympics -Sergei Eisenstein -Super Bowl score -Rihanna -Super Bowl 2018 -Fredo Santana -Virginia Woolf -Paula Modersohn-Becker -Virginia Woolf -Government Shutdown -Fredo Santana -Paula Modersohn-Becker -Wilder Penfield -Fredo Santana -XFL -Paula Modersohn-Becker -Super Bowl 2018 -Lonzo Ball -Kim Cattrall -Chloe Kim -Vanessa Marcil -XFL -Wilder Penfield -Florida shooting -Celtics -Grammys 2018 -Lakers -Justin Timberlake -Rasual Butler -Sergei Eisenstein -Brie Larson -What Time Is The Super Bowl -Super Bowl Commercials 2018 -Winter Olympics -Patriots -Carter G. Woodson -This Is Us -Carter G. Woodson -Cloverfield Paradox -Peter Rabbit -Happy Valentines Day -Super Blue Blood Moon -Paula Modersohn-Becker -school closings -Elizabeth Blackwell -Trump State of the Union -Vikings vs Eagles -Wilder Penfield -Joel Taylor -Super Bowl 2018 -Sergei Eisenstein -Altered Carbon -Kim Kardashian -Virginia Woolf -Paula Modersohn-Becker -Super Bowl score -Markelle Fultz -What Time Is The Super Bowl -Snap Stock -Super Bowl score -Bitcoin Price -Happy Valentines Day -Megan Barry -shutdown -Winter Olympics -Government Shutdown -Shaun White -government shutdown -Ant Man and the Wasp -School Closings -Obama portrait -Super Bowl Commercials 2018 -Mark Salling -Rasual Butler -Justin Timberlake -Winter Olympics -Paula Modersohn-Becker -Happy Valentines Day -Classroom -Enzo Amore -Hope Hicks -State of the Union -Maze Runner: The Death Cure -UFC 220 -SpaceX -Virginia Woolf -Valentines Day -NASCAR -United States Postal Service -Blake Griffin -Elizabeth Blackwell -State of the Union -Groundhog Day 2018 -Elizabeth Blackwell -Rasual Butler -Patti LuPone -CNN -Alessia Cara -Virginia Woolf -Grammys 2018 -Bill Belichick -State of the Union -Vikings vs Eagles -Elizabeth Blackwell -Shaun White -Fortnite New Map -Meteor -Obama portrait -Carter G. Woodson -Vic Damone -Super Bowl score -Monster Hunter World -Steve Wynn News -Super Bowl score -Valentines Day Memes -Super Bowl 2018 -Nba All Star 2018 -Jessica Chastain -What Time Is The Super Bowl -Vikings vs Eagles -Google docs -Paula Modersohn-Becker -John Mahoney -Omarosa -Florida shooting -Florida shooting -Sergei Eisenstein -Jason Kelce -Kentucky shooting -Winter Olympics -Mardi Gras 2018 -Super Bowl 2018 -Larry Nassar -Jessica Chastain -Super Bowl 2018 -Wilder Penfield -Sergei Eisenstein -Justin Timberlake -Carter G. Woodson -Wilder Penfield -Rasual Butler -Jacob Copeland -Paula Modersohn-Becker -Kylie Jenner -Sergei Eisenstein -Government Shutdown -Sergei Eisenstein -Super Bowl 2018 -Elizabeth Blackwell -Sergei Eisenstein -Valentines Day -Childish Gambino -Government Shutdown -Florida shooting -Blood Moon -CNN -LeBron James -SpaceX -Presidents Day 2018 -Royal Rumble 2018 -Sergei Eisenstein -Super Bowl score -Mark Salling -Brynn Cameron -Patriots -Happy Valentines Day -SpaceX -Wilder Penfield -Florida shooting -Duke Basketball -SpaceX -SpaceX -Winter Olympics -Kylie Jenner -Florida shooting -Super Bowl score -Vikings Vs Eagles -State of the Union -Jennifer Aniston -Patti LuPone -Elizabeth Blackwell -Mark E Smith -Happy Valentines Day -Elton John -Happy Valentines Day -Super Bowl score -Kylie Jenner Baby Girl -pissant -Lonzo Ball -Andrew Cunanan -Kylie Jenner -Super Bowl score -Virginia Woolf -Mark Salling -Virginia Woolf -Happy Valentines Day -Elizabeth Blackwell -Government Shutdown -UFC 220 -Winter Olympics -Winter Olympics -Bob Dole -Paula Modersohn-Becker -Kodak Black -Shaun White -Super blue blood Moon -Cloverfield Paradox -Solo Trailer -Super Bowl 2018 -Chicago West -Caitlin McHugh -Paula Modersohn-Becker -Winter Olympics -Cloverfield Paradox -Sergei Eisenstein -Kirstjen Nielsen -Mark Salling -Dow Jones -Kesha Grammy -What Time Is The Super Bowl -Sergei Eisenstein -Virginia Woolf -Kylie Jenner -Robert Wagner -Elizabeth Blackwell -Lady Doritos -Wilder Penfield -Dow Jones -Cavs -Super Bowl score -Camila Cabello -Florida shooting -Elizabeth Blackwell -Sergei Eisenstein -Sammy Sosa -Wilder Penfield -KSI Vs Weller -Paula Modersohn-Becker -Government shutdown -Fredo Santana -Elizabeth Blackwell -Patriots -Carter G. Woodson -Super Bowl 2018 -Super Bowl score -Solo Trailer -Wilder Penfield -UFC 220 -Carter G. Woodson -Utah Jazz -New England Patriots owner -Omarosa -Super Bowl score -Super Bowl score -Super Bowl score -Sergei Eisenstein -Elizabeth Blackwell -SpaceX -Sergei Eisenstein -Tammy Duckworth -Incredibles 2 -Virginia Woolf -Andrew Cunanan -Olympic medal count -12 Strong -Justin Timberlake -Turpin -Paula Modersohn-Becker -Black Panther -SAG Awards 2018 -What Time Is The Super Bowl -Duke Basketball -Paula Modersohn-Becker -Paula Modersohn-Becker -Luke Wilson -Tony Romo -Dow Jones -Paula Modersohn-Becker -Grammys 2018 -Jason Kelce -Bellator 192 -Wilder Penfield -Valentines Day Memes -Venom -Paula Modersohn-Becker -Mark Salling -Bradie Tennell -Larry Nassar -Elizabeth Blackwell -Patriots -Virginia Woolf -Larry Nassar -Bradie Tennell -Patriots -Sergei Eisenstein -Donald Trump Jr -Roger Federer -Super Bowl 2018 -Justin Timberlake -Virginia Woolf -Government Shutdown -Paula Modersohn-Becker -School Closings -Sergei Eisenstein -Carter G. Woodson -What Time Is The Super Bowl -Carter G. Woodson -Cavs -Paul Ryan -Carter G. Woodson -Elizabeth Blackwell -Carter G. Woodson -Virginia Woolf -Super Blue Blood Moon -Riverdale -Robinhood -Florida shooting -February -Carter G. Woodson -State of the Union -Winter Olympics -Blake Griffin -Super Bowl score -Carter G. Woodson -Elizabeth Blackwell -Patriots -Elizabeth Blackwell -Black Panther -Presidents Day 2018 -Super Bowl score -Paula Modersohn-Becker -Daryle Singletary -Obama portrait -Government Shutdown -Sergei Eisenstein -Super Bowl score -Sergei Eisenstein -SpaceX -Korea -Olympic Medal Count -SAG Awards 2018 -Carter G. Woodson -Carter G. Woodson -Justin Timberlake -Grammys 2018 -Tiger Woods -Elizabeth Blackwell -Paula Modersohn-Becker -Elizabeth Blackwell -Sabrina Dhowre -Patriots -Olympics 2018 -Patriots -Vanessa Trump -Super Bowl score -Patriots -Super Bowl 2018 -Rodney Hood -Camila Cabello -Government Shutdown -Elizabeth Blackwell -Bill Belichick -Wilder Penfield -Bob Dole -Daryle Singletary -Winter Olympics -Larry Nassar -Scott Baio -Super Bowl score -Virginia Woolf -Matt Patricia -What Time Is The Super Bowl -Jason Kidd -Chinese New Year 2018 -PlayStation Network -Florida shooting -Government shutdown -Alex Smith -Chloe Kim -Cavs -Mardi Gras 2018 -Winter Olympics -Government Shutdown -Rodney Hood -Patriots -Kesha -Virginia Woolf -Kylie Jenner -Grammys 2018 -Paula Modersohn-Becker -Virginia Woolf -Women's March 2018 -Celebrity Big Brother cast -Florida shooting -Paul Ryan -Virginia Woolf -Government Shutdown -Carter G. Woodson -Real Madrid -Did the Groundhog See His Shadow -Elizabeth Blackwell -Virginia Woolf -Super Bowl 2018 -Patriots -Kim Cattrall -Sergei Eisenstein -Olympic Medal Count -Super Bowl score -Jason Kelce -Wilder Penfield -Dow Jones industrial average -Cloverfield Paradox -Tonga -Dow Jones -Harley Barber -Winter Olympics -Winter Olympics -Larry Nassar -Paula Modersohn-Becker -Jessica Chastain -calculator -Florida shooting -Rose McGowan -Portia de Rossi -Ursula Le Guin -Duke Basketball -Vanessa Trump -Government Shutdown -Grammys 2018 -Altered Carbon -Elizabeth Blackwell -State of the Union -State of the Union -Winter Olympics -Olympic Medal Count -Wilder Penfield -Sergei Eisenstein -Elizabeth Blackwell -Government Shutdown Meaning -Winter Olympics -Larry Nassar -Patriots -calculator -NBA Trades -Larry Nassar -Florida shooting -Chicago West -Jessica Chastain -Tyler Hilinski -Larry Nassar -What Time Is The Super Bowl -Super Bowl 2018 -Florida shooting -Olympic Medal Count -Virginia Woolf -Adam Rippon -Florida shooting -Trump State of the Union -Winter Olympics -Wilder Penfield -Wilder Penfield -Black Panther -Shaun White -Sergei Eisenstein -SAG Awards 2018 -Winter Olympics -Tonga -Kirstjen Nielsen -Groundhog Day 2018 -The 15:17 to Paris -Dwyane Wade -Natalie Portman -The 15:17 to Paris -Super Bowl Commercials 2018 -Did the Groundhog See His Shadow -State of the Union -Ted Bundy -Valentines Day -Florida shooting -Patriots -Neil Diamond -Patriots -SpaceX -Cory Booker -Sergei Eisenstein -Cavs -Paula Modersohn-Becker -Super Bowl 2018 -Solo Trailer -Jason Kidd -Super Bowl 2018 -Black Panther -Larry Nassar -Carter G. Woodson -Super Bowl score -Carter G. Woodson -Elizabeth Blackwell -Super Bowl score -What Time Is The Super Bowl -Paula Modersohn-Becker -The Resident -United States Postal Service -New California -Cloverfield Paradox -Rodney Hood -Patriots -Elizabeth Blackwell -Dane Cook -Super Bowl score -Patriots -NBA Trades -Erykah Badu -Justin Timberlake -Carter G. Woodson -Cloverfield Paradox -Wilder Penfield -Paula Modersohn-Becker -Mikaela Shiffrin -Shaun White -Sergei Eisenstein -Patriots -Kylie Jenner -Paula Modersohn-Becker -Alex Reimer -Florida shooting -Sergei Eisenstein -Virginia Woolf -Carter G. Woodson -Virginia Woolf -Super Bowl 2018 -Alessia Cara -Oscar Nominations 2018 -Wilder Penfield -Hope Hicks -Kylie Jenner -Kylie Jenner -Bitcoin Price -Wilder Penfield -Paula Modersohn-Becker -Virginia Woolf -Sergei Eisenstein -Immaculate Conception -Fredo Santana -Super Bowl score -school closings -Paula Modersohn-Becker -Super Bowl 2018 -Adam Rippon -Trump State of the Union -Pro Bowl 2018 -Government Shutdown -Altered Carbon -Justin Timberlake -Government shutdown -Jamie Anderson -United States Of America Winter Olympics -SAG Awards 2018 -Simona Halep -Trump State of the Union -Tiger Woods -Google docs -Alessia Cara -Florida shooting -Justin Timberlake -The Alienist -Larry Nassar -Super Bowl score -Justin Timberlake -Winter Olympics -Andrew Cunanan -Pink -Justin Timberlake -Happy Valentines Day -Patriots -Kim Cattrall -Memo -Government Shutdown -Valentines Day -Vanessa Marcil -Shaun White -State of the Union -Grammys 2018 -Cavs -Florida shooting -Kylie Jenner -Paula Modersohn-Becker -Dennis Edwards -John Mahoney -Super Bowl 2018 -Tom Brady -Sergei Eisenstein -Paula Modersohn-Becker -Daryle Singletary -Natalie Wood -Sergei Eisenstein -Carter G. Woodson -Patriots -Super Bowl 2018 -Derrick Rose -Florida shooting -Blake Griffin -Super Bowl 2018 -tsunami -Luke Wilson -Patriots -Wilder Penfield -Super Bowl score -Kylie Jenner -Altered Carbon -Did the Groundhog See His Shadow -Winter Olympics -Government Shutdown -New England Patriots owner -Sergei Eisenstein -Toys R Us -Paula Modersohn-Becker -Sergei Eisenstein -Florida shooting -Paula Modersohn-Becker -Government Shutdown -Virginia Woolf -Florida shooting -Carter G. Woodson -Carter G. Woodson -Patriots -SpaceX -Patriots -Sandy Hook -Kentucky shooting -Stormi -Florida shooting -Paula Modersohn-Becker -Kim Cattrall -Winter Olympics -Happy Valentines Day -Patriots -Marlon Brando -Sergei Eisenstein -Gigi Hadid -Arsenal -NBA Trades -Dow Jones -Sergei Eisenstein -Patriots -Venom -Super Bowl score -12 Strong -Winter Olympics -Doomsday Clock -Dow Jones -Super Bowl 2018 -Anastasia Bryzgalova -Elizabeth Blackwell -Wilder Penfield -Justin Timberlake -Sergei Eisenstein -Oscar Nominations 2018 -Virginia Woolf -Logan Paul -Nadal -State of the Union -Blue Moon -NBA Trades -Virginia Woolf -Patriots -Patriots -Derrick Rose -Patriots -Happy Valentines Day -Wilder Penfield -Kentucky shooting -Kylie Jenner Baby Girl -Royal Rumble 2018 -Sergei Eisenstein -Government Shutdown -Sergei Eisenstein -Carter G. Woodson -Kim Kardashian -Virginia Woolf -Carter G. Woodson -Florida shooting -Sergei Eisenstein -Kylie Jenner -Paula Modersohn-Becker -United States Of America Winter Olympics -SpaceX -Yoel Romero -What Time Is The Super Bowl -Pink -Fredo Santana -Super Bowl 2018 -Daryle Singletary -Patriots -Winter Olympics -Simona Halep -Alison Brie -Johnny Weir -Larry Nassar -Elizabeth Blackwell -Vikings vs Eagles -Patriots -Nba All Star Draft -Elizabeth Blackwell -Winter Olympics -Reg E Cathey -Olympic Medal Count -Wilder Penfield -Daryle Singletary -school closings -Sergei Eisenstein -Winter Olympics -Celebrity Big Brother cast -Virginia Woolf -Mcdonald's -Venom -XFL -Stormi -Solo Trailer -Super Bowl 2018 -Patriots -Super Bowl Commercials 2018 -Kylie Jenner -Chicago West -NBA Trades -Carter G. Woodson -Adam Rippon -Virginia Woolf -Kristaps Porzingis -Houston Rockets -Mark Salling -Black Panther -Elizabeth Blackwell -Duke Basketball -Blood Moon -Winter Olympics -Patti LuPone -Virginia Woolf -Elizabeth Blackwell -Mark Salling -Oscar Nominations 2018 -Justin Timberlake -Shaun White -Winter Olympics -Groundhog Day 2018 -Hostiles -Patriots -Shaun White -Super Bowl score -Black Panther -Patriots -Did the Groundhog See His Shadow -Vince McMahon -Friends movie -Bitcoin Price -Sergei Eisenstein -Elizabeth Blackwell -Virginia Woolf -Paula Modersohn-Becker -Alaska earthquake -Elizabeth Blackwell -Montreal Cognitive Assessment -Kylie Jenner -Grammys 2018 -Bitcoin Price -Grammys 2018 -Andrew Cunanan -Harley Barber -Shaun White -Super Bowl Commercials 2018 -Alex Smith -Bitcoin Price -Nancy Pelosi -United States Of America Winter Olympics -Super Bowl score -Sergei Eisenstein -Super Bowl score -Winter Olympics -Winter Olympics -Esteban Loaiza -Grammys 2018 -Carter G. Woodson -Cloverfield Paradox -Winter Olympics -Hostiles -Kim Cattrall -Detroit Lions -Mardi Gras 2018 -XFL -Florida shooting -Mark Salling -Paula Modersohn-Becker -Justin Timberlake -Anna Kournikova -Carter G. Woodson -Government Shutdown -Florida shooting -Alex Smith -Vince McMahon -Patriots -Grammys 2018 -School Closings -Sea Of Thieves -Paula Modersohn-Becker -Norovirus -Omarosa -Paula Modersohn-Becker -happy new year in Chinese -Elizabeth Blackwell -Grammys 2018 -Mark Salling -Dow Jones -Wilder Penfield -SpaceX -Rob Porter -Larry Nassar -Mark Salling -New England Patriots owner -Fredo Santana -Patriots -NSA -Patriots -Aaron Feis -Winter Olympics -Daniel Kaluuya -Eli Manning -Manchester United -Alaska earthquake -State of the Union -Kesha -Super Bowl score -Rodney Hood -Oscar Nominations 2018 -Patriots -Carter G. Woodson -This Is Us -Groundhog Day 2018 -Black Panther -Amazon HQ2 -State of the Union -Brie Larson -Did the Groundhog See His Shadow -Groundhog Day 2018 -Elizabeth Blackwell -Real Madrid -Florida shooting -Olympic medal count -Winter Olympics -Justin Timberlake -Super Bowl score -SpaceX -Kentucky shooting -Montreal Cognitive Assessment -Super Bowl score -Winter Olympics -Classroom -Sergei Eisenstein -Carter G. Woodson -Winter Olympics -Shaun White -Kirstjen Nielsen -Dwyane Wade -Kesha -Paula Modersohn-Becker -Paula Modersohn-Becker -Blake Griffin -Edible Arrangements -Camila Cabello -Florida shooting -Ash Wednesday -Grammys 2018 -Daryle Singletary -Wilder Penfield -Chinese New Year 2018 -Super Bowl score -SpaceX -Florida shooting -Larry Nassar -SpaceX -The First Purge -Florida shooting -Super Bowl score -Elizabeth Blackwell -Edible Arrangements -Elizabeth Blackwell -Super Bowl score -Super Bowl 2018 -Wilder Penfield -Florida shooting -Wilder Penfield -Winter Olympics -Florida shooting -State of the Union -Hope Hicks -School closings -Larry Nassar -Steve Wynn -Virginia Woolf -Kylie Jenner -Super Bowl score -Paula Modersohn-Becker -Wilder Penfield -Virginia Woolf -Florida shooting -Super Bowl Commercials 2018 -Florida shooting -Oscar Nominations 2018 -Trump State of the Union -Patriots -Joe Kennedy -Florida shooting -Jimmy Garoppolo -Bob Dole -Kylie Jenner Baby Girl -Larry Nassar -Red Gerard -Wilder Penfield -Winter Olympics -Carter G. Woodson -Winter Olympics -Vikings vs Eagles -What Time Is The Super Bowl -Rasual Butler -Kentucky shooting -NBA Trades -Ash Wednesday -Kylie Jenner -Super Bowl 2018 -Altered Carbon -Happy Valentines Day -Super Blue Blood Moon -Bitcoin Price -Highline College -Ash Wednesday -SpaceX -Alaska earthquake -Amazon Stock -Patriots -Kylie Jenner -Patriots -Mark Salling -Elizabeth Blackwell -Paula Modersohn-Becker -Stormi -Super blue blood Moon -State of the Union -Happy Valentines Day -CNN -Super Bowl score -Nintendo Labo -Dow Jones -Wilder Penfield -Cloverfield Paradox -Oscar Nominations 2018 -Hope Hicks -Super Bowl 2018 -Justin Timberlake -Sergei Eisenstein -Shaun White -Kylie Jenner Baby Girl -Justin Timberlake -Carter G. Woodson -XIV -Government shutdown -Paula Modersohn-Becker -What Time Is The Super Bowl -Kylie Jenner Baby Girl -Virginia Woolf -Senior Bowl -Elizabeth Blackwell -Friends The Movie 2018 -Chinese New Year 2018 -SpaceX -What Time Is The Super Bowl -Wilder Penfield -Grammys 2018 -Brynn Cameron -Blue Moon -Paula Modersohn-Becker -Natalie Wood -LeBron James -Peter Rabbit -Wilder Penfield -Tom Izzo -Sergei Eisenstein -Wilder Penfield -What Time Is The Super Bowl -Kelsey Grammer -Adam Rippon -Super Bowl 2018 -Winter Olympics -Government Shutdown -Winter Olympics -Wilder Penfield -Elizabeth Blackwell -Ash Wednesday -Louise Linton -Grammys 2018 -Black Panther -Kylie Jenner -SpaceX -Olympic Medal Count -Wilder Penfield -What Time Is The Super Bowl -Oscar Nominations 2018 -Josh McDaniels -Alessia Cara -Omarosa -Patriots -calculator -This is Us -Altered Carbon -Super Bowl score -Virginia Woolf -Elizabeth Blackwell -Cryptocurrency News -earthquake -Uma Thurman -SpaceX -Kentucky shooting -Oscar Nominations 2018 -Patriots -Vanity Fair Cover -Johnny Weir -Adam Rippon -Bob Dole -Pro Bowl 2018 -NBA Trades -Arsenal -Outback Steakhouse -Mark Salling -Carter G. Woodson -Virginia Woolf -Bitcoin Price -Presidents Day 2018 -Super Bowl score -Paula Modersohn-Becker -Tsunami Warning -Sandy Hook -Paula Modersohn-Becker -Mr Rogers -Wilder Penfield -Edwin Jackson -Warren Miller -Florida shooting -Carter G. Woodson -SpaceX -Paul Ryan -NBA Trades -Winter Olympics -Kylie Jenner -Royal Rumble 2018 -Wilder Penfield -Kylie Jenner -Jennifer Aniston -Winter Olympics -Florida shooting -Grammys 2018 -Justin Timberlake -Ant Man and the Wasp -Virginia Woolf -Isaiah Thomas -Elizabeth Blackwell -Florida shooting -Happy Valentines Day -Betty White -Kylie Jenner -Kentucky shooting -Carter G. Woodson -Virginia Woolf -Patriots -Kim Cattrall -Dow Jones -Don Lemon -National Pizza Day -Nancy Pelosi -SpaceX -H&r Block -Outback Steakhouse -Gianni Versace -Sergei Eisenstein -Kim Kardashian -Super Bowl 2018 -Alaska earthquake -Arsenal -Paula Modersohn-Becker -Pyeongchang 2018 Olympic Winter Games -Quentin Tarantino -Release The Memo -John Mahoney -Dow Jones -Sergei Eisenstein -IXL -New England Patriots owner -Virginia Woolf -Jason Kidd -Valentine's Day -Winter Olympics -Florida shooting -Dow Jones -Robinhood -Carter G. Woodson -Grammys 2018 -Kim Cattrall -Carter G. Woodson -Winter Olympics -Wilder Penfield -Toys R Us -DeMarcus Cousins -Dow Jones -Sergei Eisenstein -government shutdown -New England Patriots owner -Happy Valentines Day -What Time Is The Super Bowl -Chris Stapleton -Marlon Brando -Tonga -Virginia Woolf -Russell Wilson -Kristaps Porzingis -Tyler Hilinski -Florida shooting -Edwin Jackson -Utah Jazz -Patriots -Super Bowl score -XFL -Virginia Woolf -Carter G. Woodson -Sergei Eisenstein -Paula Modersohn-Becker -Grammys 2018 -Super Bowl 2018 -Google Classroom -Elizabeth Blackwell -Carter G. Woodson -Patriots -Julie Ertz -Lady Doritos -What Time Is The Super Bowl -School closings -Toys R Us -Larry Nassar -NBA Trades -John Mahoney -Virginia Woolf -Virginia Woolf -Super Bowl score -Sergei Eisenstein -Vikings Vs Eagles -Andrew Cunanan -Paula Modersohn-Becker -Kylie Jenner -Super Bowl 2018 -Kesha Grammy -Virginia Woolf -This Is Us -Valentines Day -Mikaela Shiffrin -Alexander Polinsky -Kylie Jenner -Super Bowl 2018 -Cavs -Virginia Woolf -SpaceX -Altered Carbon -UFC 220 -Super Bowl score -Kesha -Florida shooting -Justin Timberlake -Sergei Eisenstein -Dow Jones -Michigan State -Jessica Chastain -Trump State of the Union -Steven Tyler -Snapchat Update -stock market -Did the Groundhog See His Shadow -Paula Modersohn-Becker -Super Bowl score -calculator -State of the Union -Super blue blood Moon -Winter Olympics -Elizabeth Blackwell -Sergei Eisenstein -Winter Olympics -SpaceX -Elizabeth Blackwell -Paula Modersohn-Becker -Elizabeth Blackwell -Wilder Penfield -UFC 220 -Ash Wednesday -Super Bowl score -What Time Is The Super Bowl -Winter Olympics -Patti LuPone -Elton John -Tiger Woods -Wilder Penfield -school closings -Happy Valentines Day -State of the Union -Kylie Jenner -Terrell Owens -Super Bowl score -Super Bowl 2018 -Patriots -Uma Thurman -Red Gerard -Kodak Black -Justin Timberlake -Elton John -Paula Modersohn-Becker -Kesha -Dwyane Wade -Grammys 2018 -What Time Is The Super Bowl -Paula Modersohn-Becker -Florida shooting -Carter G. Woodson -Super Bowl Commercials -Kim Kardashian -When We First Met -Deadpool 2 -Government Shutdown -United States Of America Winter Olympics -Super Bowl 2018 -Super blue blood Moon -Carter G. Woodson -Sergei Eisenstein -Memo -Wilder Penfield -Super Bowl 2018 -Joel Taylor -Justin Timberlake -Kylie Jenner -Alex Smith -Kylie Jenner -Nascar Schedule -Rodney Hood -Patriots -Winter Olympics -Andrew McCabe -Justin Timberlake -Dow Jones -Vikings vs Eagles -Peter Rabbit -Florida shooting -Black Panther -Super Bowl 2018 -XFL -Kylie Jenner -Justin Timberlake -Justin Timberlake -Patriots -SpaceX -Kim Kardashian -Grammys 2018 -Donald Trump Jr -Lunar eclipse -Super Bowl 2018 -Jacob Copeland -Wilder Penfield -XFL -Virginia Woolf -SpaceX -Bitcoin Price -Super Bowl score -SAG Awards 2018 -Patriots -Virginia Woolf -Paula Modersohn-Becker -Virginia Woolf -Chinese New Year 2018 -Elton John -Deadpool 2 -Valentines Day -The 15:17 to Paris -Winter Olympics -Super Bowl score -Florida shooting -Cloverfield Paradox -Shaun White -Elizabeth Blackwell -Google docs -Virginia Woolf -Chicago Weather -What Time Is The Super Bowl -Paula Modersohn-Becker -Did the Groundhog See His Shadow -What Time Is The Super Bowl -Amy Schumer -Celtics -Bitcoin Price -NASCAR -Carter G. Woodson -Adam Rippon -Super Bowl 2018 -Post Malone -Paula Modersohn-Becker -Government shutdown -Justin Timberlake -Elizabeth Blackwell -calculator -Sarah Barthel -Valentines Day Memes -Montreal Cognitive Assessment -Grammys 2018 -Sergei Eisenstein -United States Of America Winter Olympics -Pro Bowl 2018 -Virginia Woolf -Super Bowl 2018 -Frederick Douglass -Culture 2 -Kylie Jenner -Maze Runner: The Death Cure -Kylie Jenner -Florida shooting -Winchester -Sergei Eisenstein -Government shutdown 2018 -Super Bowl score -Happy Valentines Day -Peter Rabbit -Justin Timberlake -Kim Kardashian -Paula Modersohn-Becker -Winter Olympics -Hope Hicks -Sergei Eisenstein -Rett Syndrome -Mark Salling -Sergei Eisenstein -State of the Union -Super Bowl score -Red Gerard -Matt Patricia -Black Panther -Virginia Woolf -Government Shutdown Meaning -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl 2018 -Super blue blood Moon -What Time Is The Super Bowl -Chris Long -Shaun White -Rasual Butler -Winter Olympics -Chloe Kim -Paula Modersohn-Becker -Kristaps Porzingis -Super Bowl 2018 -Joe Kennedy -This Is Us -Winter Olympics -Wilder Penfield -Super Bowl 2018 -Wilder Penfield -Paula Modersohn-Becker -Winter Olympics -Elizabeth Blackwell -Winter Olympics -Super Bowl 2018 -Kevin Durant -Winter Olympics -Carter G. Woodson -Quincy Jones -Elizabeth Blackwell -SZA -Groundhog Day 2018 -Sal Castro Middle School -Mcdonald's -Super Bowl score -Government Shutdown -Larry Nassar -Grammys 2018 -SpaceX -Carter G. Woodson -Samson -Patriots -Luke Wilson -Winter Olympics -Carter G. Woodson -Super Bowl score -Did the Groundhog See His Shadow -Kylie Jenner -Super Bowl score -Vikings Vs Eagles -Obama portrait -Sergei Eisenstein -Friends movie -NBA Trades -Virginia Woolf -Jeff Flake -Chinese New Year 2018 -Edwin Jackson -Anna Kournikova -Memo -Wilder Penfield -Larry Nassar -Mikaela Shiffrin -Kesha Grammy -Super Bowl 2018 -Wilder Penfield -Gus Kenworthy -Florida shooting -Trump State of the Union -Virginia Woolf -Ash Wednesday -Grammys 2018 -Florida shooting -Super Bowl 2018 -Groundhog Day 2018 -Super blue blood Moon -Korea -Jalen Ramsey -Patriots -Virginia Woolf -Grammys 2018 -Jason Kelce -Mark Salling -Super blue blood Moon -Winter Olympics -Patriots -Government shutdown -Virginia Woolf -Justin Timberlake -Shaun White -Winter Olympics -What Time Is The Super Bowl -Blake Griffin Trade -Carter G. Woodson -Virginia Woolf -Super Bowl score -SpaceX -Dow Jones -Sergei Eisenstein -Government Shutdown -Grammys 2018 -Virginia Woolf -State of the Union -Mark Salling -Kentucky shooting -Childish Gambino -Todd Haley -Carter G. Woodson -Winter Olympics -Eli Manning -Elizabeth Blackwell -Release The Memo -Patriots -Grammys 2018 -Mark Salling -Google Classroom -Wilder Penfield -Toys R Us -Shaun White -Florida shooting -Super Bowl Commercials -Kylie Jenner -Jane Fonda -Virginia Woolf -State of the Union -Tom Brady daughter -Elizabeth Blackwell -Winter Olympics -Grammys 2018 -Mikaela Shiffrin -Sergei Eisenstein -Google Drive -Sergei Eisenstein -Carter G. Woodson -Elizabeth Blackwell -Bitcoin Price -Super blue blood Moon -What Time Is The Super Bowl -Government shutdown 2018 -Scott Baio -Justin Timberlake -Kesha Grammy -Sergei Eisenstein -Florida shooting -Florida shooting -Sting -Groundhog Day 2018 -Hillary Clinton -Virginia Woolf -CNN -Blake Griffin -Lunar eclipse -Super Bowl 2017 -Adam Rippon -Isaiah Canaan -Amazon stock -Sergei Eisenstein -Paula Modersohn-Becker -Carter G. Woodson -Ronaldinho -Super Bowl score -Wilder Penfield -Wilder Penfield -Johnny Weir -Gods Plan -Vikings vs Eagles -Fifty Shades Freed -Grammys 2018 -Government shutdown -Super Bowl Commercials 2018 -Virginia Woolf -Blake Griffin Trade -Black Panther -Joe Kennedy -Mark Salling -Robert Wagner -Kylie Jenner -Rodney Hood -Bruno Mars -Puppy Bowl 2018 -The Home Depot -Super Bowl 2018 -Paula Modersohn-Becker -Justin Timberlake -Ohio State basketball -Kesha -SpaceX -Outback Steakhouse -Elizabeth Blackwell -Fredo Santana -Kesha -Super Bowl score -SpaceX -Winter Olympics -Hostiles Movie -Emily Sweeney -Wilder Penfield -Super Bowl Commercials -Arsenal -Bitcoin Price -Elizabeth Blackwell -Paula Modersohn-Becker -Oscar Nominations 2018 -Fredo Santana -Carter G. Woodson -Florida shooting -Elizabeth Blackwell -Kylie Jenner -Wilder Penfield -Carter G. Woodson -What Time Is The Super Bowl -Mark Salling -Justin Timberlake -Winter Olympics -Paula Modersohn-Becker -Elizabeth Blackwell -Wonder Woman -Fredo Santana -Super Bowl 2018 -What Time Is The Super Bowl -UFC 220 -Larry Nassar -SpaceX -Sergei Eisenstein -Dow Jones -Mark Salling -Charissa Thompson -Elizabeth Blackwell -SZA -Jennifer Aniston -Paula Modersohn-Becker -Justin Timberlake -Carter G. Woodson -Carter G. Woodson -Andrew Cunanan -Winter Olympics -Justin Timberlake -Virginia Woolf -Dow Jones -Carter G. Woodson -Venom -Alessia Cara -Jennifer Aniston -Super Bowl score -Sergei Eisenstein -Happy Valentines Day -Super Bowl 2018 -SAG Awards 2018 -Bruno Mars -SAG Awards 2018 -Paula Modersohn-Becker -Patriots -Solo Trailer -VIX -Patriots -Zion Williamson -Alaska earthquake -Paula Modersohn-Becker -Amy Schumer -Johnny Weir -Super Bowl score -Johnny Weir -Andrew Cunanan -Kylie Jenner -Sergei Eisenstein -Elizabeth Blackwell -Sergei Eisenstein -Puppy Bowl 2018 -Dow Jones -stock market -Wilder Penfield -Childish Gambino -Super Bowl 2018 -Florida shooting -John Mahoney -NBA Trades -Super Bowl score -Super Bowl score -Elizabeth Blackwell -Blake Griffin -Adam Rippon -Reg E Cathey -Happy Valentines Day -Florida shooting -Gus Kenworthy -Bruno Mars -Super Bowl Commercials 2018 -Carter G. Woodson -Vikings Vs Eagles -Adam Rippon -Wilder Penfield -SAG Awards 2018 -Super Blue Blood Moon -Super Bowl score -What Time Is The Super Bowl -Google Classroom -The 15:17 to Paris -Justin Timberlake -Winter Olympics -Kylie Jenner -Blue Moon -Super Bowl 2018 -Vanity Fair Cover -Winter Olympics -Mikaela Shiffrin -Winter Olympics -Dane Cook -Carter G. Woodson -Mikaela Shiffrin -Kylie Jenner -Carter G. Woodson -Winter Olympics -Super Bowl score -Oscar Nominations 2018 -Jennifer Aniston -Johnny Weir -Patriots -The 15:17 to Paris -Patriots -Sergei Eisenstein -Sergei Eisenstein -Patriots -Google Classroom -SpaceX -Virginia Woolf -SpaceX -Patriots -Chipper Jones -Sarah Barthel -Super Bowl 2018 -Jason Kelce -Wilder Penfield -Carter G. Woodson -Google Drive -Virginia Woolf -Kylie Jenner -Carter G. Woodson -calculator -Winter Olympics -SpaceX -Chicago West -Elizabeth Blackwell -Josh McDaniels -Cherry Seaborn -Red Gerard -Rob Porter -Carter G. Woodson -Government Shutdown -Patriots -Solo Trailer -Carter G. Woodson -Grammys 2018 -Carter G. Woodson -Happy Valentines Day -Paula Modersohn-Becker -State of the Union -Justin Timberlake -12 Strong -Sergei Eisenstein -Virginia Woolf -Bitcoin Price -Super Bowl 2018 -Government shutdown 2018 -Real Madrid -National Pizza Day -Sergei Eisenstein -Super Bowl 2018 -Elizabeth Blackwell -Obama portrait -Paula Modersohn-Becker -What Time Is The Super Bowl -Virginia Woolf -Carter G. Woodson -Fortnite New Map -Super Bowl Commercials 2018 -Groundhog Day 2018 -Paula Modersohn-Becker -Vikings Vs Eagles -Google Drive -Super Bowl 2018 -Despacito -Memo -United States Of America Winter Olympics -Shaun White -Winter Olympics -Obama portrait -This Is Us -Super Bowl 2018 -Rose McGowan -Bitcoin Price -NFL Honors -school closings -Mark Salling -Carter G. Woodson -Sergei Eisenstein -Josh McDaniels -Celtics -Winter Olympics -Winter Olympics -Oscar Nominations 2018 -Patriots -Virginia Woolf -Patriots -Mikaela Shiffrin -Alex Reimer -fake news awards -Super Bowl score -Larry Nassar -Winter Olympics -Paula Modersohn-Becker -Winter Olympics -Super Bowl score -Kylie Jenner -Kim Kardashian -Immaculate Conception -Friends movie -Shibutani -Elizabeth Blackwell -Rob Porter -Dow Jones -SpaceX -Nba All Star Draft -Carter G. Woodson -Vikings Vs Eagles -Doomsday Clock -Elizabeth Blackwell -Carter G. Woodson -Paula Modersohn-Becker -Sergei Eisenstein -Sergei Eisenstein -John Mahoney -Andre the Giant -Solo Trailer -Groundhog Day 2018 -Senior Bowl -Carter G. Woodson -State of the Union -calculator -Florida shooting -Solo Trailer -Patriots -Johnny Weir -Rose McGowan -Shaun White -Carter G. Woodson -Virginia Woolf -Royal Rumble 2018 -Dow Jones -Shaun White -Shaun White -Elizabeth Blackwell -Nba All Star Draft -Solo Trailer -Winter Olympics -Caroline Wozniacki -Florida shooting -Carter G. Woodson -Wilder Penfield -Rodney Hood -Super Bowl score -Isaiah Canaan -Daryle Singletary -Joe Kennedy -Sea Of Thieves -Government Shutdown -Senior Bowl -Steve Wynn -SpaceX -Groundhog Day 2018 -Nathan Chen -Super Bowl 2018 -State of the Union -Olympic medal count -Reg E Cathey -Hostiles -Kylie Jenner -Virginia Woolf -Chinese New Year 2018 -Super blue blood Moon -Memo -Super Bowl score -Super Bowl score -Patriots -Patriots -Super Bowl score -Celtics -Florida shooting -Virginia Woolf -Tiger Woods -Paula Modersohn-Becker -Elton John -Grammys 2018 -Amy Schumer -Adam Rippon -Winter Olympics -Wilder Penfield -Kim Kardashian -Celebrity Big Brother cast -Oscar Nominations 2018 -Wilder Penfield -Megan Barry -Black Panther -Cavs -Larry Nassar -Carter G. Woodson -Grammys 2018 -UFC 220 -Government shutdown 2018 -Solo Trailer -Halsey -Sergei Eisenstein -Grammys 2018 -Altered Carbon -Alaska earthquake -AR-15 -Sergei Eisenstein -Yu Darvish -Isaiah Thomas -Wilder Penfield -Carter G. Woodson -Super blue blood Moon -Wilder Penfield -Wilder Penfield -Florida shooting -Mark Salling -XFL -Obama portrait -Grammys 2018 -Florida shooting -Vikings vs Eagles -Eli Manning -Chris Stapleton -Paula Modersohn-Becker -What Time Is The Super Bowl -Valentines Day -Winter Olympics -Wilder Penfield -Winter Olympics -Patti LuPone -Shaun White -Bitcoin Price -Dow Jones -Chloe Kim -John Mahoney -Winter Olympics -Paula Modersohn-Becker -What Time Is The Super Bowl -Bill Paxton -Patriots -Paula Modersohn-Becker -Elizabeth Blackwell -Super blue blood Moon -Florida shooting -Jennifer Aniston -Larry Nassar -Super Bowl score -SpaceX -SpaceX -Super Bowl 2018 -Kim Kardashian -Wilder Penfield -Real Madrid -Wilder Penfield -Sergei Eisenstein -Senior Bowl -Dwyane Wade -Vikings Vs Eagles -Super blue blood Moon -Wilder Penfield -Megan Barry -Justin Timberlake -Virginia Woolf -Justin Timberlake -Sergei Eisenstein -The 15:17 to Paris -Super Bowl 2018 -Robert Wagner -Mikaela Shiffrin -Women's March 2018 -Florida shooting -Virginia Woolf -Did the Groundhog See His Shadow -calculator -Eli Manning -Kelly Clark -Oscar Nominations 2018 -Super Bowl 2018 -Florida shooting -Winter Olympics -Carter G. Woodson -Government Shutdown -Lady Doritos -Sergei Eisenstein -happy new year in Chinese -Hillary Clinton -Solo Trailer -Florida shooting -Sergei Eisenstein -Blake Griffin -Super Bowl score -Google Classroom -Winter Olympics -Google docs -OKC Thunder -Uma Thurman -Kim Kardashian -Anna Kournikova -Cnbc -Government Shutdown 2018 -Super Bowl Commercials -Government shutdown -Elizabeth Blackwell -Trump State of the Union -Groundhog Day 2018 -Super Bowl score -SAG Awards 2018 -Super Bowl 2018 -Alessia Cara -Groundhog Day 2018 -NSA -Paula Modersohn-Becker -Virginia Woolf -Super Bowl score -Halsey -Carter G. Woodson -Patriots -Winter Olympics -Olive Garden -Carter G. Woodson -Justin Timberlake -Carter G. Woodson -Vikings Vs Eagles -Alaska earthquake -The 15:17 to Paris -Paula Modersohn-Becker -Bitcoin Price -Dow Jones -Virginia Woolf -Chris Fischer -Vikings vs Eagles -Super Bowl score -Rasual Butler -The 15:17 to Paris -Amazon Stock -Edwin Jackson -This Is Us -SpaceX -Chloe Kim -Puppy Bowl 2018 -Winter Olympics -Ncaa Basketball Top 25 -Homeland -Virginia Woolf -Super Bowl score -Google Drive -Carter G. Woodson -Super Bowl 2018 -Fredo Santana -Paula Modersohn-Becker -Virginia Woolf -Carter G. Woodson -Mikaela Shiffrin -Solo Trailer -Virginia Woolf -Paula Modersohn-Becker -Justin Timberlake -Grammys 2018 -Sergei Eisenstein -Dwyane Wade -Dwyane Wade -Oscar Nominations 2018 -Larry Nassar -Sergei Eisenstein -Ash Wednesday -Florida shooting -Virginia Woolf -Vanessa Trump -Edwin Jackson -Patriots -Virginia Woolf -Blake Griffin -Virginia Woolf -NHL All Star Game -Florida shooting -Virginia Woolf -Elizabeth Blackwell -Yu Darvish -Elizabeth Blackwell -calculator -Arsenal -Johnny Weir -Elizabeth Blackwell -What Time Is The Super Bowl -Sergei Eisenstein -Government Shutdown 2018 -Vikings Vs Eagles -Ursula Le Guin -Paula Modersohn-Becker -Patriots -Kylie Jenner -Virginia Woolf -LeBron James -Wilder Penfield -Paula Modersohn-Becker -Shaun White -Culture 2 -Mikaela Shiffrin -Uma Thurman -Paula Modersohn-Becker -Alex Smith -Paula Modersohn-Becker -Tom Petty -Bitcoin Price -Joshua Cooper Ramo -Wilder Penfield -Paula Modersohn-Becker -Robert Wagner -Roger Federer -Phantom Thread -Juventus -Kylie Jenner -Jessica Chastain -Kesha -SpaceX -Paula Modersohn-Becker -Dow Jones -Isaiah Canaan -Government shutdown -Paul Ryan -Paula Modersohn-Becker -Happy Valentines Day -Virginia Woolf -Amy Schumer -Super Bowl 2018 -luge -Elizabeth Blackwell -Kelsey Grammer -Winter Olympics -Wilder Penfield -Groundhog Day 2018 -Vikings vs Eagles -Paula Modersohn-Becker -Super Bowl 2018 -Quincy Jones -Virginia Woolf -Jason Kelce -Robert Wagner -Patriots -Winter Olympics -Virginia Woolf -Virginia Woolf -Carter G. Woodson -Paula Modersohn-Becker -Florida shooting -Lena Zawaideh -Den of Thieves -Super Bowl score -What Time Is The Super Bowl -Kodak Black -Kylie Jenner -Vince McMahon -Lunar eclipse -Amazon HQ2 -Carter G. Woodson -Elton John -Google Drive -Super Bowl 2018 -Fredo Santana -Sergei Eisenstein -XFL -Alison Brie -Blue Ivy -Paula Modersohn-Becker -Den of Thieves -Patriots -Sergei Eisenstein -Google docs -Tom Petty -Groundhog Day 2018 -Carter G. Woodson -Black Panther -Alex Smith -Kratom -Ohio State basketball -Jennifer Aniston -Ted Bundy -Carter G. Woodson -Winter Olympics -Larry Nassar -Amtrak -Doomsday Clock -XFL -Shiffrin -Government shutdown 2018 -Carter G. Woodson -Andrew Cunanan -Paula Modersohn-Becker -Government Shutdown Meaning -Happy Valentines Day -NBA Trades -Obama portrait -Sandy Hook -Winter Olympics -Andrew Cunanan -Paula Modersohn-Becker -Obama portrait -Tammy Duckworth -Mark Salling -State of the Union -Mark Salling -Justin Timberlake -Kylie Jenner -SpaceX -Alison Brie -Drake -Alex Smith -Virginia Woolf -Kesha -Wilder Penfield -NBA Trades -Winchester -Carter G. Woodson -Altered Carbon -Grammys 2018 -Carter G. Woodson -Patriots -Senior Bowl -Mark Salling -Super blue blood Moon -Dow Jones -Deadpool 2 -Groundhog Day 2018 -Government Shutdown Meaning -Patriots -Elizabeth Blackwell -Ash Wednesday -Government Shutdown -Mikaela Shiffrin -Super Bowl score -Super Bowl 2018 -Super Bowl 2018 -Virginia Woolf -What Time Is The Super Bowl -Super Bowl score -Amy Schumer -Obama portrait -Grammys 2018 -Paula Modersohn-Becker -Elizabeth Blackwell -Bob Marley -Carter G. Woodson -Memo -Government Shutdown -Google Classroom -Super Bowl score -Paula Modersohn-Becker -SpaceX -Wilder Penfield -Rasual Butler -Kentucky shooting -Valentines Day Cards -Super Bowl 2018 -Patriots -Wilder Penfield -Carter G. Woodson -Sergei Eisenstein -Paula Modersohn-Becker -Shaun White -What Time Is The Super Bowl -Virginia Woolf -New England Patriots owner -Amazon Stock -Duke Basketball -Super Bowl 2018 -Halsey -Oscar Nominations 2018 -Sergei Eisenstein -Florida shooting -Florida shooting -Winter Olympics -What Time Is The Super Bowl -Government shutdown 2018 -Super Bowl 2018 -Elizabeth Blackwell -Greg Monroe -Memo -Grammys 2018 -Florida shooting -Carter G. Woodson -Winter Olympics -Groundhog Day 2018 -UFC 220 -Super Bowl Commercials 2018 -Patriots -Winter Olympics -Paula Modersohn-Becker -Sergei Eisenstein -Black Panther -Wilder Penfield -Rose McGowan -SpaceX -Groundhog Day 2018 -Paula Modersohn-Becker -Virginia Woolf -Winter Olympics -Super blue blood Moon -Larry Nassar -Happy Valentines Day -Alessia Cara -Omarosa -New England Patriots owner -Rihanna -Winter Olympics -Winter Olympics -DeMarcus Cousins -Mark Salling -Paula Modersohn-Becker -Celebrity Big Brother cast -Virginia Woolf -Virginia Woolf -Elizabeth Blackwell -SpaceX -Bitcoin Price -Derrick Rose -Solo Trailer -NBA Trades -NBA Trades -Patriots -Zion Williamson -Vikings Vs Eagles -Dow Jones -Government Shutdown -Super Bowl score -Carter G. Woodson -Super Bowl score -Kylie Jenner -Earthquake Today -Paula Modersohn-Becker -NBA Trades -Wilder Penfield -Carter G. Woodson -Wilder Penfield -Bitcoin Price -Memo -SpaceX -Elizabeth Blackwell -Super Bowl 2018 -Josh McDaniels -NSA -Paula Modersohn-Becker -Kesha -Patti LuPone -Winter Olympics -Oar Olympics -Carter G. Woodson -Virginia Woolf -Government Shutdown Meaning -Super Bowl 2018 -Paula Modersohn-Becker -earthquake today -Super Blue Blood Moon -Rasual Butler -Ann Curry -Mike Fisher -Government shutdown 2018 -Mexico Vs Bosnia -Johnny Weir -Wilder Penfield -Jessica Chastain -Caroline Wozniacki -Winter Olympics -Patriots -Google docs -Anastasia Bryzgalova -Sergei Eisenstein -Government Shutdown Meaning -Carter G. Woodson -Super Bowl 2018 -Winter Olympics -Carter G. Woodson -Paul Ryan -Winter Olympics -XFL -Groundhog Day 2018 -Wilder Penfield -Carter G. Woodson -Paula Modersohn-Becker -Super Bowl score -Wilder Penfield -Wilder Penfield -Tammy Duckworth -Naya Rivera -Johnny Weir -Vikings Vs Eagles -Super Bowl 2018 -Gregory Salcido -Daryle Singletary -Mardi Gras 2018 -Altered Carbon -Government Shutdown -Olympic Medal Count -Kylie Jenner Baby Girl -Justin Timberlake -Walter Payton -Wilder Penfield -Virginia Woolf -New England Patriots owner -Childish Gambino -FC Barcelona -Dwyane Wade -Isaiah Canaan -Walter Payton -NFC Championship Game 2018 -Virginia Woolf -Paula Modersohn-Becker -school closings -Larry Nassar -Elizabeth Blackwell -stock market -Black Panther -Patriots -Paula Modersohn-Becker -Justin Timberlake -Fredo Santana -Carter G. Woodson -Winter Olympics -Mexico earthquake -Florida shooting -Carter G. Woodson -What Time Is The Super Bowl -Incredibles 2 -Super Bowl score -Carter G. Woodson -Google docs -Dow Jones -Sergei Eisenstein -Cavs -Government Shutdown -Black Panther -Amy Schumer -Nascar Schedule -Winter Olympics -Mike Vrabel -Larry Nassar -Paula Modersohn-Becker -Virginia Woolf -Mexico Vs Bosnia -Kylie Jenner -Sergei Eisenstein -Joe Kennedy -Carter G. Woodson -Patriots -Carrie Underwood -Super Blue Blood Moon -Florida shooting -Carter G. Woodson -Nathan Chen -Royal Rumble 2018 -Sergei Eisenstein -Conor McGregor -Wilder Penfield -New England Patriots owner -Shaun White -Sea of Thieves -State of the Union -Florida shooting -Obama portrait -What Time Is The Super Bowl -Super Bowl score -Black Panther -State of the Union -Fifty Shades Freed -New England Patriots owner -Virginia Woolf -Carter G. Woodson -Oscar Nominations 2018 -Larry Nassar -Pro Bowl 2018 -Virginia Woolf -Mark Salling -Harley Barber -Groundhog Day 2018 -Blake Griffin -Super Bowl 2018 -Deadpool 2 -Paula Modersohn-Becker -Kim Kardashian -Paula Modersohn-Becker -Sergei Eisenstein -Florida shooting -Jennifer Aniston -Sergei Eisenstein -Patriots -Super Bowl 2018 -Manchester United -What Time Is The Super Bowl -Winter Olympics -Super Bowl score -Virginia Woolf -Wilder Penfield -Chinese New Year 2018 -Mark Salling -Paula Modersohn-Becker -Winter Olympics -Mardi Gras 2018 -Patriots -State of the Union -NBA Trades -UFC 220 -Josh McDaniels -Shaun White -Groundhog Day 2018 -SpaceX -Mitt Romney -Elizabeth Blackwell -Super Bowl score -Super Bowl score -Kim Cattrall -NBA Trades -Paul Ryan -The 15:17 to Paris -What Time Is The Super Bowl -Florida shooting -Cloverfield Paradox -Kylie Jenner -Happy Valentines Day -Google Classroom -Elizabeth Blackwell -What Time Is The Super Bowl -Florida shooting -Columbine Shooting -Kylie Jenner -Chris Long -Mark Salling -Patti LuPone -Caroline Wozniacki -Elizabeth Blackwell -Super Bowl 2018 -calculator -Real Madrid -Paula Modersohn-Becker -Daryle Singletary -Carter G. Woodson -Super blue blood Moon -Drive -Elizabeth Blackwell -Elizabeth Blackwell -Grammys 2018 -Paula Modersohn-Becker -Oscar Nominations 2018 -Government shutdown 2018 -Dennis Edwards -Daryle Singletary -Elizabeth Blackwell -school closings -UFC 220 -Winter Olympics -Super Bowl 2018 -Elizabeth Blackwell -Paula Modersohn-Becker -CNN -Elton John -Groundhog Day 2018 -Neil Diamond -Virginia Woolf -Friends The Movie 2018 -Government Shutdown -Joe Kennedy -Elizabeth Blackwell -This Is Us -fake news awards -Super Bowl Commercials 2018 -Virginia Woolf -Trump State of the Union -Sergei Eisenstein -Super Bowl Commercials 2018 -Virginia Woolf -Grammys 2018 -NASCAR -Sergei Eisenstein -Wilder Penfield -SpaceX -Paula Modersohn-Becker -Black Panther -Virginia Woolf -Tessa Virtue -Carter G. Woodson -SpaceX -Elizabeth Blackwell -Government Shutdown -Carter G. Woodson -Steve Wynn -Isaiah Thomas -Real Madrid -Virginia Woolf -Elizabeth Blackwell -Gianni Versace -This Is Us -Super blue blood Moon -Justin Timberlake -Government Shutdown 2018 -State of the Union -Super Bowl Commercials 2018 -Patriots -Eli Manning -Winter Olympics -Did the Groundhog See His Shadow -Turpin -Sergei Eisenstein -Florida shooting -Grammys 2018 -Lunar eclipse -Super Bowl 2018 -Mark Salling -Andre Roberson -Black Panther -Oscar Nominations 2018 -Kylie Jenner -Den of Thieves -What Time Is The Super Bowl -Happy Valentines Day -Olympic Medal Count -Carter G. Woodson -State of the Union -Florida shooting -Wilder Penfield -Carter G. Woodson -Brynn Cameron -Manchester United -State of the Union -Wilder Penfield -Turpin -State of the Union -Winter Olympics -Tony Romo -Obama portrait -Mardi Gras 2018 -Winter Olympics -Andrew Cunanan -Outback Steakhouse -Paula Modersohn-Becker -Google docs -Super Bowl score -Gods Plan -Elon Musk -Brie Larson -Winter Olympics -Nba All Star Draft -Virginia Woolf -Larry Nassar -Lonzo Ball -Super Bowl score -Jennifer Aniston -Groundhog Day 2018 -What Time Is The Super Bowl -Kylie Jenner -This Is Us -Super Bowl score -Elizabeth Blackwell -Larry Nassar -Black Panther -Elton John -Olympic Medal Count -Paula Modersohn-Becker -Alex Reimer -Florida shooting -Tiger Woods -Sergei Eisenstein -Bitcoin Price -Rasual Butler -Quentin Tarantino -Joe Kennedy -Government Shutdown -Google Classroom -Florida shooting -The Home Depot -Sergei Eisenstein -Shaun White -Florida shooting -Florida shooting -Winter Olympics -Cbs -Sergei Eisenstein -Elizabeth Blackwell -SpaceX -State of the Union -Florida shooting -Paula Modersohn-Becker -Rasual Butler -Kylie Jenner -Blake Griffin Trade -Lady Gaga -Elizabeth Blackwell -Super Bowl 2018 -Larry Nassar -Patriots -Happy Valentines Day -Real Madrid -Vikings Vs Eagles -John Mahoney -Winter Olympics -Winter Olympics -Memo -Carter G. Woodson -The Home Depot -NBA Trades -Carter G. Woodson -Tiger Woods -Super blue blood Moon -Patriots -Elizabeth Blackwell -Black Panther -Government Shutdown Meaning -Black Panther -SpaceX -Chicago Weather -Florida shooting -Patriots -Sergei Eisenstein -Winter Olympics -Groundhog Day 2018 -Super Bowl 2018 -Government shutdown -Portia de Rossi -Virginia Woolf -Venom -Elizabeth Blackwell -Samson -Super Bowl 2018 -Super Bowl 2018 -Kylie Jenner -IXL -Highline College -Derrick Rose -Wilder Penfield -Elizabeth Blackwell -Justin Timberlake -Mattie Larson -Virginia Woolf -Puppy Bowl 2018 -Homeland -Government Shutdown -Memo -Amtrak -Vikings Vs Eagles -Bitcoin Price -shutdown -Winter Olympics -Super Bowl 2018 -school closings -SpaceX -Blake Griffin Trade -Grammys 2018 -Elizabeth Blackwell -Kylie Jenner -Super Bowl 2018 -Amy Schumer -Duke Basketball -AFC Championship Game 2018 -Jennifer Aniston -Virginia Woolf -Kylie Jenner -Maze Runner: The Death Cure -Government shutdown 2018 -Bitcoin Price -Government Shutdown Meaning -Tonga -Patriots -Paula Modersohn-Becker -Jason Kidd -Meteor -Carter G. Woodson -Vikings Vs Eagles -Carter G. Woodson -Shaun White -Grammys 2018 -Rasual Butler -Elizabeth Blackwell -Lakers -Carter G. Woodson -What Time Is The Super Bowl -The 15:17 to Paris -NSA -Justin Timberlake -What Time Is The Super Bowl -Jon Huntsman -Call Me by Your Name -Paula Modersohn-Becker -Patriots -Elizabeth Blackwell -Super Bowl 2018 -Kylie Jenner -Kodak Black -Grammys 2018 -Grammys 2018 -Did the Groundhog See His Shadow -Montreal Cognitive Assessment -Sergei Eisenstein -Government Shutdown -Winter Olympics -Wilder Penfield -Nba All Star 2018 -Wilder Penfield -Amy Schumer -Larry Nassar -This Is Us -Alex Reimer -Carter G. Woodson -Patriots -Uma Thurman -Dow Jones -Bradie Tennell -Paula Modersohn-Becker -Justin Timberlake -XFL -Wilder Penfield -Kentucky shooting -Tom Brady -Arsenal -Happy Valentines Day -Super Bowl 2018 -Rodney Hood -Vikings Vs Eagles -Cavs -Happy Valentines Day -Elizabeth Blackwell -Rasual Butler -Childish Gambino -Super Bowl score -Florida shooting -Sergei Eisenstein -Robert Mueller -Elizabeth Blackwell -Shaun White -State of the Union -Elizabeth Blackwell -Elizabeth Blackwell -Super Bowl score -Sergei Eisenstein -Super Bowl score -Sergei Eisenstein -Super Bowl 2018 -Super Bowl Commercials 2018 -Venom -Korea -Matt Patricia -Sergei Eisenstein -Oscar Nominations 2018 -What Time Is The Super Bowl -Carter G. Woodson -Super Bowl score -Did the Groundhog See His Shadow -NBA Trades -What Time Is The Super Bowl -Super blue blood Moon -Google docs -Groundhog Day 2018 -Valentines Day -Carter G. Woodson -Memo -Shaun White -What Time Is The Super Bowl -Kodak Black -FC Barcelona -Super Bowl Commercials -Rasual Butler -Larry Nassar -Sergei Eisenstein -Elizabeth Blackwell -Justin Timberlake -Carter G. Woodson -Wilder Penfield -Kesha Grammy -Olympics 2018 -Lindsey Vonn -Patriots -Carter G. Woodson -Chris Paul -Super Bowl 2018 -Winter Olympics -State of the Union -SpaceX -Alaska earthquake -Government Shutdown 2018 -Carter G. Woodson -Super Bowl 2018 -Wilder Penfield -Patriots -Peter Rabbit -Cryptocurrency News -Celtics -Valentines Day -national signing day 2018 -Kylie Jenner -Super Bowl Commercials 2018 -Olivia Munn -Carter G. Woodson -Carter G. Woodson -Chinese New Year 2018 -calculator -Jason Kelce -Government Shutdown -Florida shooting -Ellen DeGeneres -Patriots -Jennifer Aniston -Blue Moon -Winter Olympics -Josh McDaniels -Caroline Wozniacki -State of the Union -Yahoo Finance -Natalie Wood -Tyler Hilinski -Justin Timberlake -Sting -Elizabeth Blackwell -SAG Awards 2018 -Grammys 2018 -slides -Dennis Edwards -Memo -Royal Rumble 2018 -Patriots -Elizabeth Blackwell -Grammys 2018 -Farmers Insurance Open 2018 -Tesla in space -Wilder Penfield -Daytona 500 -Virginia Woolf -Bitcoin Price -Super Bowl score -Virginia Woolf -Google Classroom -Happy Valentines Day -NBA Trades -Winter Olympics -Paula Modersohn-Becker -Women's March 2018 -Carter G. Woodson -Forever My Girl -Elizabeth Blackwell -Montreal Cognitive Assessment -Isaiah Thomas -SpaceX -Chloe Kim -Winter Olympics -Chinese New Year 2018 -NBA Trades -stock market -SpaceX -Paula Modersohn-Becker -Government shutdown 2018 -Super Bowl 2018 -Taiwan Earthquake Today -Pro Bowl 2018 -Roger Federer -Wilder Penfield -Lonzo Ball -Virginia Woolf -SpaceX -Super Bowl score -Elizabeth Blackwell -Jeff Flake -Kylie Jenner -Amy Schumer -Winter Olympics -Paula Modersohn-Becker -Grammys 2018 -Government Shutdown -Kesha Grammy -Sarah Barthel -Justin Timberlake -Grammys 2018 -Vikings vs Eagles -Google Drive -Mardi Gras 2018 -Tonga -Black Panther -Elton John -Black Panther -Harley Barber -Jacob Copeland -Elton John -This Is Us -Elizabeth Blackwell -Winter Olympics -Carter G. Woodson -Virginia Woolf -Isaiah Canaan -Elon Musk -Bitcoin Price -Lee Miglin -Paula Modersohn-Becker -Government Shutdown -Natalie Wood -Ash Wednesday -Amy Schumer -Jalen Ramsey -Carter G. Woodson -Isaiah Thomas -State of the Union -Winter Olympics -Fredo Santana -Wilder Penfield -Chloe Kim Snowboarder -Virginia Woolf -Florida shooting -Tonga -NBA Trades -Wilder Penfield -Kylie Jenner -What Time Is The Super Bowl -Virginia Woolf -Trump State of the Union -Paula Modersohn-Becker -SpaceX -12 Strong -UFC 220 -Wilder Penfield -Sergei Eisenstein -Tyler Hilinski -pissant -Elizabeth Blackwell -Real Madrid -Super Bowl score -SpaceX -Sergei Eisenstein -Jason Momoa -Elizabeth Blackwell -Carter G. Woodson -Celebrity Big Brother cast -Blake Griffin -State of the Union -Carter G. Woodson -Jason Kelce -Memo -fake news awards -Virginia Woolf -Florida shooting -Joe Kennedy -Sergei Eisenstein -Virginia Woolf -Bitcoin Price -Patriots -Elizabeth Blackwell -Justin Timberlake -Alexa Commercial -Super Bowl 2018 -Carter G. Woodson -Daytona 500 -Kylie Jenner -Larry Nassar -State of the Union -Fredo Santana -Adam Rippon -CNN -Virginia Woolf -Kingdom Come Deliverance -The Alienist -Florida shooting -Wilder Penfield -Carter G. Woodson -Cherry Seaborn -Altered Carbon -Patriots -Alison Brie -Patti LuPone -Paula Modersohn-Becker -Paula Modersohn-Becker -Sergei Eisenstein -Happy Valentines Day -Chris Long -New England Patriots owner -Olympic Medal Count -Winter Olympics -NBA Trades -State of the Union -Dwyane Wade -Kylie Jenner -Ohio State basketball -Google docs -Paula Modersohn-Becker -Westerville Ohio -Winter Olympics -Grammys 2018 -Wilder Penfield -Virginia Woolf -Wilder Penfield -Virginia Woolf -Eli Manning -Amy Schumer -Elizabeth Blackwell -Florida shooting -Elizabeth Blackwell -Super Bowl 2018 -Childish Gambino -Blue Moon -Carter G. Woodson -Super Bowl Commercials 2018 -Post Malone -Sergei Eisenstein -government shutdown -Winter Olympics -SpaceX -Super Bowl score -Blue Moon -Winter Olympics -Sergei Eisenstein -Kentucky shooting -Super Bowl score -Jalen Ramsey -Bitcoin Price -Happy Valentines Day -Super Bowl score -Paula Modersohn-Becker -Carter G. Woodson -Steven Tyler -Ash Wednesday -Super Bowl score -Government Shutdown -Rodney Hood -Florida shooting -Super Bowl 2018 -Mardi Gras 2018 -Paula Modersohn-Becker -Virginia Woolf -Paula Modersohn-Becker -Paula Modersohn-Becker -Louise Linton -Alaska earthquake -Mickey Jones -Super Bowl score -Ash Wednesday -Lunar eclipse -Sergei Eisenstein -Sergei Eisenstein -Patriots -Florida shooting -What Time Is The Super Bowl -Oscar Nominations 2018 -Enzo Amore -Pro Bowl 2018 -Carter G. Woodson -Sergei Eisenstein -Hope Hicks -Winter Olympics -Wilder Penfield -Elizabeth Blackwell -State of the Union -SpaceX -Government Shutdown -Kylie Jenner -Wilder Penfield -Virginia Woolf -Lee Miglin -Winter Olympics -Mikaela Shiffrin -calculator -Florida shooting -Justin Timberlake -Cavs -Arsenal -Bill Belichick -Chicago West -Groundhog Day 2018 -Florida shooting -Carter G. Woodson -Government Shutdown -Florida shooting -Rihanna -Paula Modersohn-Becker -Wilder Penfield -Jason Kelce -Sergei Eisenstein -Virginia Woolf -Virginia Woolf -Justin Timberlake -Kesha -Winter Olympics -Paula Modersohn-Becker -lady gaga grammys -Florida shooting -Virginia Woolf -Alex Smith -fake news awards -Elizabeth Blackwell -Super Bowl 2018 -Oscar Nominations 2018 -Kylie Jenner -What Time Is The Super Bowl -Rasual Butler -Mardi Gras 2018 -Elizabeth Blackwell -Government Shutdown Meaning -Super Bowl score -Virginia Woolf -What Time Is The Super Bowl -Sergei Eisenstein -Florida shooting -Happy Valentines Day -Paula Modersohn-Becker -Fredo Santana -Real Madrid -Florida shooting -Paula Modersohn-Becker -Childish Gambino -Google Classroom -Chris Stapleton -Andrew Cunanan -Government Shutdown 2018 -Government shutdown 2018 -Pro Bowl 2018 -Super Bowl 2018 -Happy Valentines Day -CNN -Chicago West -Super Bowl Winners -Deadpool 2 -This Is Us -Grammys 2018 -Super Bowl score -Patriots -H&r Block -Wilder Penfield -National Pizza Day -Elizabeth Blackwell -Virginia Woolf -Winter Olympics -Wilder Penfield -Alaska earthquake -Super Bowl 2018 -Best Superbowl Commercials 2018 -Carter G. Woodson -Obama portrait -Super Bowl Commercials -Mardi Gras 2018 -Camila Cabello -Paula Modersohn-Becker -Paula Modersohn-Becker -Montreal Cognitive Assessment -Super Bowl Winners -Shaun White -Oar Olympics -Florida shooting -Super Bowl Commercials 2018 -Paula Modersohn-Becker -Elizabeth Blackwell -Oscar Nominations 2018 -Winter Olympics -Florida shooting -fake news awards -United States Of America Winter Olympics -Andrew McCabe -Hostiles Movie -Pro Bowl 2018 -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl 2018 -Florida shooting -Rob Delaney -Florida shooting -Johnny Weir -Larry Nassar -Paula Modersohn-Becker -Black Panther -Carter G. Woodson -Eli Manning -SpaceX -Paula Modersohn-Becker -Adam Rippon -Amy Schumer -Terrell Owens -Winter Olympics -Football Playoffs 2018 -Mikaela Shiffrin -Sergei Eisenstein -Sabrina Dhowre -Paula Modersohn-Becker -Paula Modersohn-Becker -Royal Rumble 2018 -New England Patriots owner -Groundhog Day 2018 -Paula Modersohn-Becker -Wilder Penfield -Carter G. Woodson -All Star Weekend 2018 -Heath Ledger -Johnny Weir -Pro Bowl 2018 -Drive -Bitcoin Price -Dow Jones -Patriots -Government Shutdown -Carter G. Woodson -Isaiah Thomas -Super Bowl 2018 -Winter Olympics -Super Bowl 2018 -Super blue blood Moon -NBA Trades -Wilder Penfield -Government Shutdown -Paula Modersohn-Becker -School Closings -Larry Nassar -Government Shutdown 2018 -Paula Modersohn-Becker -Wilder Penfield -Pro Bowl 2018 -Justin Timberlake -Super Bowl score -Rasual Butler -Super Bowl score -Sea Of Thieves -Steve Mcnair -Black Panther -Elizabeth Blackwell -Virginia Woolf -Winter Olympics -Jemele Hill -Elizabeth Blackwell -Valentines Day Images -Grammys 2018 -Tyler Hilinski -Winter Olympics -Wilder Penfield -Justin Timberlake -Patriots -Patriots -Winter Olympics -Kylie Jenner -Happy Valentines Day -SpaceX -Patriots -Vikings Vs Eagles -Adam Hicks -Grammys 2018 -Solo Trailer -Manchester United -Government Shutdown -Florida shooting -Winter Olympics -Alex Smith -Sergei Eisenstein -Memo -The 15:17 to Paris -What Time Is The Super Bowl -Kesha Grammy -Carter G. Woodson -Super Bowl 2018 -Elizabeth Blackwell -New England Patriots owner -Mark Salling -Florida shooting -Oscar Nominations 2018 -Paula Modersohn-Becker -What Time Is The Super Bowl -Elizabeth Blackwell -Kim Kardashian -Wilder Penfield -Sergei Eisenstein -Patriots -UFC 220 -Happy Valentines Day -Virginia Woolf -Alessia Cara -Super Bowl 2018 -Bitcoin Price -Duke Basketball -Dow Jones -Florida shooting -What Time Is The Super Bowl -Winter Olympics -Justin Timberlake -Julie Bowen -Women's March 2018 -Andrew Cunanan -Oscar Nominations 2018 -Frank Reich -Super Bowl score -Sergei Eisenstein -Amy Schumer -Did the Groundhog See His Shadow -Rasual Butler -Virginia Woolf -Virginia Woolf -Maze Runner: The Death Cure -Super Bowl score -Super Bowl score -What Time Is The Super Bowl -Duke Basketball -Daryle Singletary -VIX -Adam Rippon -Super Bowl 2018 -Robert Wagner -Kylie Jenner -Florida shooting -Sergei Eisenstein -Outback Steakhouse -Tesla in space -Oscar Nominations 2018 -Paula Modersohn-Becker -Apolo Ohno -Kesha -Sergei Eisenstein -DeMarcus Cousins -Government Shutdown -Patriots -Happy Valentines Day -Rasual Butler -Kylie Jenner -All Star Weekend 2018 -Sergei Eisenstein -State of the Union -Jason Kelce -John Mahoney -SpaceX -Elizabeth Blackwell -Mark Salling -Pink -Wilder Penfield -Joy Villa -Shaun White -Women's March 2018 -Cloverfield Paradox -Florida shooting -Puppy Bowl 2018 -Gianni Versace -Virginia Woolf -Virginia Woolf -Alex Smith -Brie Larson -Omarosa -Florida shooting -Memo -Wonder Woman -Elton John -Sergei Eisenstein -Quincy Jones -Government Shutdown -Olympic Medal Count -Carter G. Woodson -Tom Petty -Super Bowl 2018 -Virginia Woolf -Justin Timberlake -Grammys 2018 -Oscar Nominations 2018 -Paula Modersohn-Becker -Andre the Giant -Virginia Woolf -Tom Petty -Sting -Winter Olympics -Florida shooting -Sergei Eisenstein -Wilder Penfield -Patriots -Winter Olympics -Chloe Kim -New England Patriots owner -Super Bowl score -Kentucky shooting -Wilder Penfield -Carter G. Woodson -Elizabeth Blackwell -Super Bowl score -SpaceX -Larry Nassar -Enzo Amore -Women's March 2018 -Phantom Thread -Atlanta Weather -Virginia Woolf -What Time Is The Super Bowl -NBA Trades -Virginia Woolf -Mark Salling -Paula Modersohn-Becker -Florida shooting -Rodney Hood -School closings -Shaun White -Florida shooting -Fredo Santana -Sergei Eisenstein -Government Shutdown -What Time Is The Super Bowl -Obama portrait -Zion Williamson -stock market -Virginia Woolf -All Star Weekend 2018 -Sergei Eisenstein -Justin Timberlake -Patti LuPone -Ohio State basketball -Stan Lee -Paula Modersohn-Becker -Vikings Vs Eagles -Florida shooting -Esteban Loaiza -Dow Jones -Josh McDaniels -Isaiah Canaan -Wilder Penfield -Olympic medal count -SAG Awards 2018 -Tom Izzo -Carter G. Woodson -Adam Rippon -Fredo Santana -Paula Modersohn-Becker -Johnny Weir -Sergei Eisenstein -Carter G. Woodson -Wilder Penfield -Super Bowl 2018 -Google docs -Altered Carbon -Mark Salling -Florida shooting -Alexander Polinsky -Gods Plan -Winter Olympics -Elizabeth Blackwell -Carter G. Woodson -Carter G. Woodson -Mark Salling -Peter Rabbit -Larry Nassar -What Time Is The Super Bowl -Groundhog Day 2018 -Winchester -Altered Carbon -Ohio State basketball -Larry Nassar -Super Bowl score -New England Patriots owner -Patriots -Happy Valentines Day -Government shutdown -Trump State of the Union -Virginia Woolf -AFC Championship Game 2018 -State of the Union -Matt Czuchry -Elon Musk -Isaiah Canaan -Matt Czuchry -Jimmy Garoppolo -JUUL -Chloe Kim -Super Bowl score -Paula Modersohn-Becker -Google Classroom -Sergei Eisenstein -Carter G. Woodson -Trump State of the Union -Trey Gowdy -Carter G. Woodson -Virginia Woolf -Kylie Jenner -Carter G. Woodson -Virginia Woolf -Government shutdown 2018 -Carter G. Woodson -Sergei Eisenstein -Friends The Movie 2018 -Google Classroom -Super blue blood Moon -Oscar Nominations 2018 -Grammys 2018 -Scott Baio -Mike Vrabel -Sergei Eisenstein -Patriots -Groundhog Day 2018 -Paula Modersohn-Becker -Bitcoin Price -Super Bowl 2018 -Rasual Butler -The 15:17 to Paris -Bellator 192 -The 15:17 to Paris -Florida shooting -Elizabeth Blackwell -Paula Modersohn-Becker -Cavs -Paula Modersohn-Becker -Emily Sweeney -Fredo Santana -Jacob Copeland -Super Bowl 2018 -Dane Cook -Joe Kennedy -Paula Modersohn-Becker -Super Bowl score -Happy Valentines Day -Olympic medal count -NBA Trades -Paula Modersohn-Becker -Chris Stapleton -Oscar Nominations 2018 -Florida shooting -Sea Of Thieves -Bitcoin Price -AR-15 -Isaiah Canaan -Camila Cabello -Andrew Cunanan -Florida shooting -Florida shooting -Wilder Penfield -Pro Bowl 2018 -Florida shooting -Kim Kardashian -Winter Olympics -Florida shooting -Patriots -Black Panther -Virginia Woolf -Winter Olympics -Alaska earthquake -Mardi Gras 2018 -NFC Championship Game 2018 -Virginia Woolf -The 15:17 to Paris -Super Bowl 2018 -Sergei Eisenstein -Super Bowl score -Will Ferrell -Elizabeth Blackwell -The 15:17 to Paris -Steve Wynn -Johnny Manziel -calculator -Grammys 2018 -Kentucky shooting -Patriots -Patriots -Katie Couric -Matt Czuchry -Cloverfield Paradox -Cloverfield Paradox -Government Shutdown -stock market -Adam Rippon -calculator -Valentines Day Memes -Bitcoin Price -Grammys 2018 -Patti LuPone -SpaceX -Meteor -Alessia Cara -Elizabeth Blackwell -Elizabeth Blackwell -Elizabeth Blackwell -Groundhog Day 2018 -Fredo Santana -SpaceX -Kylie Jenner -What Time Is The Super Bowl -Jimmy Garoppolo -Vikings Vs Eagles -NBA Trades -Paula Modersohn-Becker -Sergei Eisenstein -State of the Union -Aaliyah -Groundhog Day 2018 -Cavs -Winter Olympics -Sergei Eisenstein -Groundhog Day 2018 -Shaun White -Joe Kennedy -SpaceX -XFL -Virginia Woolf -Solo Trailer -Groundhog Day 2018 -Football Playoffs 2018 -Carter G. Woodson -Sergei Eisenstein -Manchester United -Oscar Nominations 2018 -Wilder Penfield -Royal Rumble 2018 -Drive -Cryptocurrency News -Larry Nassar -Grammys 2018 -BitConnect -Johnny Weir -Wilder Penfield -SpaceX -Rob Delaney -James Baldwin -Amazon HQ2 -Tom Izzo -This Is Us -Google Drive -Carter G. Woodson -Doomsday Clock -Kylie Jenner Baby Girl -Super Blue Blood Moon -Paula Modersohn-Becker -Florida shooting -Lunar eclipse -Wilder Penfield -Brynn Cameron -Elizabeth Blackwell -Super Bowl score -Chinese New Year 2018 -Justin Timberlake -Wilder Penfield -Jemele Hill -Elizabeth Blackwell -Winter Olympics -CNN -Elizabeth Blackwell -Lari White -Pro Bowl 2018 -Government shutdown 2018 -Chloe Kim -Fredo Santana -Westerville Ohio -Dow Jones -Obama portrait -Wilder Penfield -Super Bowl Commercials 2018 -Super Bowl 2018 -Bitcoin Price -Patriots -school closings -Winter Olympics -Sabrina Dhowre -Wilder Penfield -Winter Olympics -SAG Awards 2018 -SpaceX -Virginia Woolf -Sergei Eisenstein -Camila Cabello -CNN -Kelly Clark -Naya Rivera -Sergei Eisenstein -Wilder Penfield -Rasual Butler -Grammys 2018 -Elizabeth Blackwell -AR-15 -Virginia Woolf -Carter G. Woodson -AR-15 -Paul Ryan -Wilder Penfield -Happy Valentines Day -Virginia Woolf -Fredo Santana -Vikings vs Eagles -Patriots -12 Strong -Justin Timberlake -Jane Fonda -Florida shooting -Winter Olympics -Norovirus -Super Bowl score -Florida shooting -Super Bowl Commercials 2018 -Sergei Eisenstein -Adam Rippon -Vikings Vs Eagles -What Time Is The Super Bowl -UFC 220 -Winter Olympics -Florida shooting -Super blue blood Moon -Larry Nassar -Patriots -Elizabeth Blackwell -Elizabeth Blackwell -Quincy Jones -Olympic medal count -Happy Valentines Day -Quincy Jones -Super blue blood Moon -Paula Modersohn-Becker -Shaun White -Wilder Penfield -Paula Modersohn-Becker -Elizabeth Blackwell -Chloe Kim -Obama portrait -Justin Timberlake -Google docs -Google docs -Super Bowl 2018 -Winter Olympics -Winter Olympics -Elizabeth Blackwell -Matt Patricia -Kylie Jenner -Super Bowl 2018 -Grammys 2018 -Cherry Seaborn -Cavs -Kodak Black -Elizabeth Blackwell -Culture 2 -Super Bowl score -Carter G. Woodson -Carter G. Woodson -Paula Modersohn-Becker -stock market -calculator -Jennifer Aniston -Cavs -Super Bowl 2018 -government shutdown -Caroline Wozniacki -Larry Nassar -Sergei Eisenstein -Sabrina Dhowre -Super Bowl 2018 -Larry Nassar -Patriots -Kylie Jenner -What Time Is The Super Bowl -Shaun White -Sergei Eisenstein -Tyler Hilinski -Pro Bowl 2018 -James Baldwin -Ash Wednesday -National Pizza Day -John Mahoney -Virginia Woolf -Dow Jones -Virginia Woolf -Kesha -Patriots -Kentucky shooting -Tammy Duckworth -Grammys 2018 -Super Bowl score -Paula Modersohn-Becker -Elizabeth Blackwell -Cloverfield Paradox -Edwin Jackson -Patriots -Daryle Singletary -Government Shutdown Meaning -Super Bowl 2018 -Patriots -Kylie Jenner -Zion Williamson -Kevin Durant -Chloe Kim -Did the Groundhog See His Shadow -Patriots -SpaceX -Eli Manning -Sergei Eisenstein -Black Panther -Sergei Eisenstein -Vikings Vs Eagles -Alessia Cara -Paula Modersohn-Becker -Government Shutdown -Joseph Haynes -Black Panther -Larry Nassar -Virginia Woolf -Kim Kardashian -Paula Modersohn-Becker -Happy Valentines Day -Winter Olympics -Larry Nassar -Wilder Penfield -Wilder Penfield -Elizabeth Blackwell -Patriots -Did the Groundhog See His Shadow -Winter Olympics -Carter G. Woodson -Super blue blood Moon -February -Ash Wednesday -Kylie Jenner -Virginia Woolf -Elizabeth Blackwell -Super Bowl 2018 -Carter G. Woodson -Super Bowl 2018 -school closings -Government Shutdown -Super Bowl 2018 -Altered Carbon -Black Panther -Chipper Jones -Shaun White -Super Bowl score -Elizabeth Blackwell -Pro Bowl 2018 -Jessica Chastain -Super Bowl 2018 -Kylie Jenner -Super blue blood Moon -Fredo Santana -Florida shooting -Carter G. Woodson -Kylie Jenner -Paula Modersohn-Becker -Super Bowl 2018 -Royal Rumble 2018 -Bellator 192 -Dow Jones -Chinese New Year 2018 -Larry Nassar -Dow Jones -Super Bowl 2018 -Super Bowl score -Virginia Woolf -Sergei Eisenstein -Mark Salling -Andre Roberson -Carter G. Woodson -Super Bowl score -Paula Modersohn-Becker -school closings -Dua Lipa -Wilder Penfield -Kim Kardashian -Paula Modersohn-Becker -Super Bowl 2018 -Fredo Santana -Carter G. Woodson -Kylie Jenner -Super blue blood Moon -Virginia Woolf -Government Shutdown -Carter G. Woodson -UFC 221 -Chloe Kim -Ann Curry -Elton John -Kylie Jenner -Carter G. Woodson -Sergei Eisenstein -Betty White -Shaun White -Carter G. Woodson -Bill Paxton -Sandy Hook -Chief Wahoo -What Time Is The Super Bowl -Google Classroom -Pro Bowl 2018 -Memo -Super Bowl 2018 -Ted Bundy -Patriots -Paula Modersohn-Becker -Chloe Kim -School closings -Virginia Woolf -Elizabeth Blackwell -Paula Modersohn-Becker -Elizabeth Blackwell -shutdown -Eli Manning -Childish Gambino -Robert Mueller -Fredo Santana -Mickey Jones -Cloverfield Paradox -Best Superbowl Commercials 2018 -Wilder Penfield -Natalie Wood -Fredo Santana -Super Bowl 2018 -Oscar Nominations 2018 -Oscar Nominations 2018 -Super Bowl score -government shutdown -Sergei Eisenstein -This is Us -Virginia Woolf -Carter G. Woodson -All Star Weekend 2018 -Virginia Woolf -Bitcoin Price -Virginia Woolf -Lunar eclipse -What Time Is The Super Bowl -Super Bowl 2018 -Carter G. Woodson -FA Cup -Michelle Obama -Elizabeth Blackwell -Arsenal -Isaiah Thomas -UFC 221 -Larry Nassar -Happy Valentines Day -Elizabeth Blackwell -Super Bowl 2018 -Super Bowl 2018 -Florida shooting -Elizabeth Blackwell -Betty White -Carter G. Woodson -Celtics -Florida shooting -SpaceX -Carrie Underwood -lady gaga grammys -Pro Bowl 2018 -Government Shutdown Meaning -Wilder Penfield -Memo -Oscar Nominations 2018 -Wilder Penfield -Super blue blood Moon -Release The Memo -Sergei Eisenstein -Kylie Jenner -Joel Taylor -Bradie Tennell -Brynn Cameron -State of the Union -Chloe Kim -Super Bowl Winners -Sergei Eisenstein -Government Shutdown -Kim Kardashian -NBA Trades -Kylie Jenner -Shaun White -Groundhog Day 2018 -Black Panther -Wilder Penfield -Paula Modersohn-Becker -Ohio State basketball -Luke Wilson -Chloe Kim -Wilder Penfield -CNN -Cavs -Patriots -Sea Of Thieves -Super Bowl score -Government Shutdown Meaning -Super Bowl score -Virginia Woolf -What Time Is The Super Bowl -Larry Nassar -Grammys 2018 -Sergei Eisenstein -CNN -Andrew McCabe -Kylie Jenner -Mark Salling -Amy Schumer -Bruno Mars -Virginia Woolf -Patriots -Government Shutdown -Patriots -UFC 220 -CBS Sports -Peter Rabbit -Black Panther -UFC 220 -Oscar Nominations 2018 -Alaska earthquake -Rihanna -Sammy Sosa -Patriots -Florida shooting -Bitcoin Price -Dow Jones -Google docs -SpaceX -Childish Gambino -Champions League -Did the Groundhog See His Shadow -Super Bowl score -Grammys 2018 -Obama portrait -Kesha Grammy -Virginia Woolf -Larry Nassar -Shaun White -Government Shutdown -Super Bowl score -Tom Petty -Blake Griffin -SpaceX -Bode Miller -Justin Timberlake -Super Bowl score -Winter Olympics -Isaiah Thomas -Carter G. Woodson -State of the Union -School Closings -Paula Modersohn-Becker -Government Shutdown -Virginia Woolf -Wilder Penfield -Royal Rumble 2018 -Elizabeth Blackwell -Blake Griffin -Virginia Woolf -Chloe Kim -Super Bowl score -Waco -Patriots -Rob Porter -Black Panther -Winter Olympics -What Time Is The Super Bowl -NBA Trades -Kentucky shooting -Sergei Eisenstein -Virginia Woolf -The Resident -Shaun White -Elizabeth Blackwell -Justin Timberlake -What Time Is The Super Bowl -Stock Market Crash Today -Logan Paul -Kylie Jenner Baby Girl -NBA Trades -Tyler Hilinski -Paula Modersohn-Becker -Patriots -Tom Brady daughter -Trump State of the Union -stock market -Super Bowl 2018 -Happy Valentines Day -Kylie Jenner -Super Bowl score -Todd Haley -Government Shutdown -Tyler Hilinski -Chloe Kim -This is Us -Elizabeth Blackwell -Tom Petty -Elizabeth Blackwell -XFL -Nba All Star 2018 -Chinese New Year 2018 -Government Shutdown -Winter Olympics -Paula Modersohn-Becker -Carter G. Woodson -Dwyane Wade -Paula Modersohn-Becker -Government Shutdown -Did the Groundhog See His Shadow -Chris Long -Paula Modersohn-Becker -Puppy Bowl 2018 -Rett Syndrome -HomePod -Real Madrid -Real Madrid -Kelsey Grammer -Google Classroom -Virginia Woolf -All Star Weekend 2018 -Wilder Penfield -Earthquake Today -Carter G. Woodson -Sergei Eisenstein -Patriots -Houston Rockets -Trump State of the Union -Chinese New Year 2018 -Steven Tyler -Virginia Woolf -Grammys 2018 -NBA Trades -Ann Curry -Carter G. Woodson -Carter G. Woodson -Google docs -Chicago Weather -Paula Modersohn-Becker -Carter G. Woodson -Sergei Eisenstein -Vanessa Trump -Danielle Herrington -What Time Is The Super Bowl -Larry Nassar -Carter G. Woodson -Google Classroom -Sergei Eisenstein -Edible Arrangements -Patriots -Oscar Nominations 2018 -SZA -Virginia Woolf -Florida shooting -Florida shooting -SpaceX -Paula Modersohn-Becker -Grammys 2018 -Winter Olympics -Carter G. Woodson -Black Panther -Royal Rumble 2018 -Super Bowl score -Call Me by Your Name -Paula Modersohn-Becker -Patriots -Virginia Woolf -Wilder Penfield -Shaun White -Paula Modersohn-Becker -Florida shooting -Wilder Penfield -Dua Lipa -calculator -School Closings -Kylie Jenner -Patriots -Winter Olympics -Super Bowl 2018 -Super Bowl 2018 -Larry Nassar -Florida shooting -Chris Long -Government Shutdown -Valentines Day -Winter Olympics -Super Bowl score -Kylie Jenner -Apolo Ohno -Winter Olympics -Rose McGowan -Super Bowl 2018 -Wilder Penfield -Women's March 2018 -Super blue blood Moon -Black Panther -Grammys 2018 -Lady Bird -XFL -Winter Olympics -school closings -Elizabeth Blackwell -Shaun White -Virginia Woolf -Columbine -Super blue blood Moon -Elizabeth Blackwell -SpaceX -Kristaps Porzingis -Patriots -Tsunami Warning -Puppy Bowl 2018 -Florida shooting -Kylie Jenner -Zion Williamson -Red Gerard -Virginia Woolf -Shaun White -Zion Williamson -Sergei Eisenstein -Blake Griffin -Wilder Penfield -Elizabeth Blackwell -Winter Olympics -Kim Kardashian -Black Panther -Amy Schumer -Sting -Larry Nassar -Real Madrid -Puppy Bowl 2018 -What Time Is The Super Bowl -NBA Trades -Grammys 2018 -Joe Kennedy -Carter G. Woodson -Paula Modersohn-Becker -Derrick Rose -Call Me by Your Name -Olympics 2018 -NFC Championship Game 2018 -Sergei Eisenstein -Jessica Chastain -Post Malone -Patriots -Justin Timberlake -Shaun White -Groundhog Day 2018 -Oscar Nominations 2018 -Paula Modersohn-Becker -Wilder Penfield -LeBron James -Kylie Jenner -Mardi Gras 2018 -Jennifer Aniston -Larry Nassar -Aaliyah -Shiffrin -Winter Olympics -Cloverfield Paradox -Government Shutdown 2018 -Paula Modersohn-Becker -Super blue blood Moon -Virginia Woolf -Shaun White -Sergei Eisenstein -Wilder Penfield -Tesla in space -Kylie Jenner -Winter Olympics -Sandy Hook -XFL -Kawhi Leonard -Carter G. Woodson -Carter G. Woodson -Isaiah Thomas -Justin Timberlake -Kylie Jenner -Elizabeth Blackwell -Vince McMahon -NBA Trades -Roger Federer -Peter Rabbit -What Time Is The Super Bowl -Childish Gambino -Shaun White -Vikings Vs Eagles -Snapchat Update -Logan Paul -Super Bowl score -Elizabeth Blackwell -Hope Hicks -Patriots -SpaceX -Justin Timberlake -Carter G. Woodson -Kim Kardashian -Spice Girls -Valentines Day -Larry Nassar -Virginia Woolf -Obama portrait -Wilder Penfield -Mark Salling -Government Shutdown -This Is Us -Government Shutdown -Valentines Day Images -Florida shooting -Government shutdown 2018 -Oscar Nominations 2018 -Matt Patricia -Patriots -Elizabeth Blackwell -DeMarcus Cousins -Super Bowl 2018 -Patriots -Sergei Eisenstein -Olympic Medal Count -Oscar Nominations 2018 -Elizabeth Blackwell -Rampage -UFC 220 -Olympic medal count -Wilder Penfield -Jason Kelce -Blue Moon -CNN -Super Bowl score -Jason Kelce -Emily Sweeney -Taiwan Earthquake Today -Jamie Dornan -Pro Bowl 2018 -Olympics 2018 -Mcdonald's -Dow Jones -Justin Timberlake -Patriots -Grammys 2018 -Betty White -Alex Smith -Terrell Owens -Super Bowl 2018 -Woody Allen -Oscar Nominations 2018 -Grammys 2018 -Carter G. Woodson -Lady Bird -Ash Wednesday -Super Bowl score -Super Bowl score -Florida shooting -Super Bowl score -Grammys 2018 -Justin Timberlake -Johnny Manziel -Happy Valentines Day -Despacito -Justin Timberlake -Super Bowl 2018 -What Time Is The Super Bowl -Real Madrid -Real Madrid -Kylie Jenner -Sergei Eisenstein -SpaceX -What Time Is The Super Bowl -XFL -Presidents Day 2018 -Larry Nassar -Chinese New Year 2018 -Bitcoin Price -Toys R Us -The Resident -NBA Trades -John Mahoney -Florida shooting -Quentin Tarantino -Hope Hicks -Wilder Penfield -Groundhog Day 2018 -Shaun White -Carter G. Woodson -Zion Williamson -Valentines Day -Kentucky shooting -Despacito -Kylie Jenner Baby Girl -Super Bowl score -Carter G. Woodson -Dane Cook -Bitcoin Price -Rodney Hood -Elizabeth Blackwell -Kylie Jenner -Sting -Kylie Jenner -State of the Union -Dwyane Wade -Virginia Woolf -Patriots -SpaceX -NASA -Florida shooting -Royal Rumble 2018 -Government Shutdown 2018 -Isaiah Thomas -What Time Is The Super Bowl -Super Bowl score -Super Bowl score -Happy Valentines Day -Florida shooting -Carrie Underwood -Super Bowl 2018 -Elizabeth Blackwell -Winter Olympics -Jennifer Aniston -Classroom -Vikings Vs Eagles -Virginia Woolf -Sergei Eisenstein -Solo Trailer -Did the Groundhog See His Shadow -This Is Us -Super Bowl score -Super Bowl score -Wilder Penfield -Tom Petty -What Time Is The Super Bowl -Shaun White -Chief Wahoo -Florida shooting -Wilder Penfield -Government Shutdown -Adam Rippon -Virginia Woolf -Super Bowl 2018 halftime show -The 15:17 to Paris -Groundhog Day 2018 -Government shutdown -Elizabeth Blackwell -Carter G. Woodson -Release The Memo -Jennifer Aniston -Government Shutdown -Virginia Woolf -Winter Olympics -Super Bowl 2018 -Kylie Jenner -Elon Musk -Tom Petty -Toys R Us -Super blue blood Moon -The Home Depot -Childish Gambino -Government shutdown 2018 -Black Panther -Korea -Memo -Kelly Clark -New England Patriots owner -Bitcoin Price -Women's March 2018 -SpaceX -Carter G. Woodson -Florida shooting -Fredo Santana -Wilder Penfield -Super Bowl score -Black Panther -Happy Valentines Day -Kentucky shooting -Memo -Cloverfield Paradox -Tom Petty -Florida shooting -Super Bowl score -Wilder Penfield -SpaceX -Wilder Penfield -Sergei Eisenstein -Shaun White -Super Bowl score -Obama portrait -CNN -Netflix Stock -Justin Timberlake -Kylie Jenner -Elizabeth Blackwell -Paula Modersohn-Becker -Larry Nassar -Mardi Gras 2018 -Google Drive -Super blue blood Moon -Elon Musk -Elizabeth Blackwell -Carter G. Woodson -Patriots -Paula Modersohn-Becker -Super Bowl score -Paula Modersohn-Becker -Kylie Jenner -SpaceX -Paula Modersohn-Becker -NBA Trades -Real Madrid -Sergei Eisenstein -SZA -Larry Nassar -NBA Trades -Elizabeth Blackwell -Bitcoin Price -Obama portrait -Super Bowl score -Wilder Penfield -Altered Carbon -Monster Hunter World -Duke Basketball -Super Bowl score -Super Bowl score -Super Bowl 2018 -Sergei Eisenstein -Manchester United -Larry Nassar -Elizabeth Blackwell -Paula Modersohn-Becker -Patriots -Government Shutdown -Larry Nassar -Duke Basketball -Royal Rumble 2018 -Stephanie Katelnikoff -Florida shooting -Carter G. Woodson -Bradie Tennell -Google docs -Super Bowl Commercials -SpaceX -Enzo Amore -Jason Kidd -Super Bowl score -Sergei Eisenstein -Government Shutdown -Super Bowl 2018 -Patriots -Shaun White -Marlon Brando -Super Bowl 2018 -Elizabeth Blackwell -Government Shutdown -AFC Championship Game 2018 -Call Me by Your Name -Kylie Jenner -Vikings Vs Eagles -Paula Modersohn-Becker -Sergei Eisenstein -UFC 220 -Chinese New Year 2018 -Solo Trailer -Google Classroom -Elizabeth Blackwell -Florida shooting -Winter Olympics -Larry Nassar -Paula Modersohn-Becker -NHL All Star Game -Larry Nassar -Carter G. Woodson -NBA Trades -Carter G. Woodson -Happy Valentines Day -Esteban Loaiza -Megan Barry -Patriots -Super Bowl score -Super Bowl 2018 -Wilder Penfield -Release The Memo -Justin Timberlake -Grammys 2018 -Patriots -Super Bowl score -Super Bowl 2018 -Winter Olympics -Justin Timberlake -Super Bowl score -Paula Modersohn-Becker -Patriots -Winter Olympics -Paula Modersohn-Becker -Virginia Woolf -Trayvon Martin -Blue Ivy -Super Bowl 2018 -Alaska earthquake -Elizabeth Blackwell -Joe Kennedy -Government Shutdown -Super Bowl score -Grammys 2018 -Carter G. Woodson -Kelly Clark -The 15:17 to Paris -Elizabeth Blackwell -Sergei Eisenstein -Mcdonald's -Paula Modersohn-Becker -Sergei Eisenstein -Olympic medal count -Lauren Davis -Bob Dole -Super Bowl 2018 -Florida shooting -Super Bowl Commercials -Carter G. Woodson -Joe Kennedy -Jimmy Garoppolo -Wilder Penfield -State of the Union -Elizabeth Blackwell -Virginia Woolf -Super Bowl score -SAG Awards 2018 -Valentines Day Images -Paula Modersohn-Becker -NBA Trades -national signing day 2018 -Pro Bowl 2018 -UFC 220 -Olive Garden -NBA Trades -Winter Olympics -Paula Modersohn-Becker -Gods Plan -Super Bowl score -Paula Modersohn-Becker -Did the Groundhog See His Shadow -Shaun White -Altered Carbon -Dow Jones -Sandy Hook -Government Shutdown -earthquake -Carter G. Woodson -Wilder Penfield -School Closings -Valentines Day Images -Mardi Gras 2018 -Sean McVay -Winter Olympics -Ar 15 -This Is Us -Patriots -Virginia Woolf -Super Bowl score -Uma Thurman -Carter G. Woodson -Groundhog Day 2018 -Larry Nassar -Sea Of Thieves -Super blue blood Moon -Matt Patricia -Ash Wednesday -Super Bowl 2018 -NSA -Elizabeth Blackwell -Larry Nassar -Mike Fisher -Super Bowl score -luge -Mexico earthquake -Nba All Star 2018 -Sergei Eisenstein -Elizabeth Blackwell -Alaska earthquake -Carter G. Woodson -Despacito -Carl Higbie -Winter Olympics -Dow Jones -Alex Smith -Pink -Mardi Gras 2018 -Sergei Eisenstein -Elizabeth Blackwell -What Time Is The Super Bowl -Kim Kardashian -Dwyane Wade -John Mahoney -Super Bowl 2018 -Real Madrid -Happy Valentines Day -Johnny Weir -Elizabeth Blackwell -Trump State of the Union -Government Shutdown Meaning -This is Us -Chinese New Year 2018 -Alaska earthquake -Mark Salling -SZA -Sergei Eisenstein -Trump State of the Union -NBA Trades -shutdown -Elizabeth Blackwell -Memo -Elizabeth Blackwell -What Time Is The Super Bowl -Mark Salling -Paula Modersohn-Becker -Elizabeth Blackwell -UFC 220 -Olympics 2018 -Elizabeth Blackwell -Super Bowl score -Larry Nassar -What Time Is The Super Bowl -Super Bowl 2018 -Sergei Eisenstein -Joe Kennedy -SpaceX -Dow Jones -School closings -Winter Olympics -Julie Ertz -Winter Olympics -Paula Modersohn-Becker -Government shutdown 2018 -Oscar Nominations 2018 -calculator -Lindsey Vonn -Winter Olympics -Patriots -Tom Brady -Super blue blood Moon -Steve Wynn -Justin Timberlake -Blake Griffin -Larry Nassar -Super Bowl score -Carter G. Woodson -Tammy Duckworth -Grammys 2018 -Elizabeth Blackwell -Woody Allen -Carter G. Woodson -Groundhog Day 2018 -Shaun White -Rodney Hood -XFL -Matt Patricia -Kentucky shooting -School closings -Black Panther -Isaiah Thomas -Wilder Penfield -Super Bowl score -Virginia Woolf -Elton John -Friends movie -Virginia Woolf -SpaceX -Virginia Woolf -New England Patriots owner -Rob Porter -Elizabeth Blackwell -Super Bowl 2018 -Kylie Jenner -Wilder Penfield -Sergei Eisenstein -Grammys 2018 -Government Shutdown 2018 -Lady Bird -Vanessa Marcil -school closings -Carter G. Woodson -Celtics -Patriots -Alaska earthquake -Joe Kennedy -Meteor -Patriots -Super Bowl score -School Closings -Columbine Shooting -Ash Wednesday -Markelle Fultz -Celtics -calculator -Kylie Jenner -Aliona Savchenko -Patriots -Chicago West -Elizabeth Blackwell -Super Bowl 2018 halftime show -New California -Kylie Jenner -Carter G. Woodson -Grammys 2018 -Carter G. Woodson -Government Shutdown -Super Bowl 2018 -Paula Modersohn-Becker -Florida shooting -Super Bowl 2018 -Pro Bowl 2018 -VIX -Patriots -Florida shooting -XFL -CNN -Lauren Davis -Paula Modersohn-Becker -Gods Plan -Matt Czuchry -Winter Olympics -Super Bowl 2018 halftime show -Olivia Munn -Elton John -Florida shooting -Carter G. Woodson -What Time Is The Super Bowl -Patriots -LeBron James -Justin Timberlake -Robert Wagner -What Time Is The Super Bowl -LL Bean -What Time Is The Super Bowl -Paula Modersohn-Becker -Toys R Us -Patriots -Sergei Eisenstein -Florida shooting -Royal Rumble 2018 -Virginia Woolf -NBA Trades -Dow Jones -Wilder Penfield -Florida shooting -Forever My Girl -Government shutdown -Virginia Woolf -Frank Reich -Paula Modersohn-Becker -SpaceX -Elizabeth Blackwell -Paula Modersohn-Becker -Jessica Chastain -Shaun White -Mavic Air -Paula Modersohn-Becker -Chris Stapleton -Paula Modersohn-Becker -Esteban Loaiza -Shaun White -Winter Olympics -SpaceX -Cavs -Virginia Woolf -Best Superbowl Commercials 2018 -Larry Nassar -Valentines Day Cards -Mardi Gras 2018 -Virginia Woolf -Paula Modersohn-Becker -Chloe Kim -Virginia Woolf -Neil Diamond -fake news awards -Winter Olympics -SpaceX -Carter G. Woodson -Kylie Jenner -Rasual Butler -Ash Wednesday -Wilder Penfield -Happy Valentines Day -Rasual Butler -Wilder Penfield -Den of Thieves -Super blue blood Moon -Patriots -Larry Nassar -Brynn Cameron -Olive Garden -Kentucky shooting -Larry Nassar -Carter G. Woodson -Patty Hearst -UFC 220 -Patriots -Sergei Eisenstein -SpaceX -Super Bowl 2018 -Natalie Portman -Dragon Ball Super -Kim Cattrall -CNN -Elizabeth Blackwell -What Time Is The Super Bowl -Alex Smith -Elizabeth Blackwell -Terry Bradshaw -Virginia Woolf -Wilder Penfield -Winter Olympics -NBA Trades -Carter G. Woodson -Elizabeth Blackwell -SpaceX -Carter G. Woodson -Daytona 500 -Government Shutdown -Patriots -Uma Thurman -Elizabeth Blackwell -Oscar Nominations 2018 -Government shutdown -What Time Is The Super Bowl -Patriots -Virginia Woolf -Winter Olympics -Wilder Penfield -Paula Modersohn-Becker -Kylie Jenner -Cryptocurrency News -Ash Wednesday -Cavs -Jamie Anderson -What Time Is The Super Bowl -Senior Bowl -Virginia Woolf -Carter G. Woodson -Florida shooting -Kylie Jenner -Super Bowl score -Blake Griffin -Olympic Medal Count -Terrell Owens -Florida shooting -Patriots -Grammys 2018 -Memo -Government Shutdown Meaning -Alison Brie -Super Bowl score -Winter Olympics -Wilder Penfield -Wilder Penfield -Bitcoin Price -Paula Modersohn-Becker -Carter G. Woodson -This Is Us -Carter G. Woodson -Winter Olympics -Post Malone -Tammy Duckworth -Larry Nassar -Obama portrait -Larry Nassar -Adam Hicks -Sergei Eisenstein -Virginia Woolf -Sergei Eisenstein -Kylie Jenner -Justin Timberlake -Florida shooting -Florida shooting -Florida shooting -Larry Nassar -Carter G. Woodson -Nikki Haley -Paula Modersohn-Becker -What Time Is The Super Bowl -This Is Us -Wilder Penfield -Super Bowl 2018 -Paula Modersohn-Becker -Elizabeth Blackwell -SAG Awards 2018 -Super Bowl score -Groundhog Day 2018 -Rob Porter -Carter G. Woodson -Joe Kennedy -Justin Timberlake -XIV -Shaun White -Call Me by Your Name -Stormi -Real Madrid -Justin Timberlake -Carter G. Woodson -Did the Groundhog See His Shadow -Florida shooting -Chicago Weather -Lil Pump -Super Bowl 2018 -Groundhog Day 2018 -Daryle Singletary -Super Bowl score -John Mahoney -Super Blue Blood Moon -Kim Kardashian -Kesha -Amazon Stock -Carter G. Woodson -Super Bowl score -fake news awards -Shaun White -Senior Bowl -Bill Parcells -Mikaela Shiffrin -Wilder Penfield -Super Bowl 2018 -SAG Awards 2018 -Josh McDaniels -Super Bowl 2018 -Adam Rippon -Winter Olympics -Markelle Fultz -Government Shutdown -Virginia Woolf -Elizabeth Blackwell -Sea Of Thieves -Hope Hicks -Super Bowl 2018 -Tiger Woods -Super Bowl score -Justin Timberlake -Caroline Wozniacki -Black Panther -Jo Jo White -Super Bowl 2018 -Kylie Jenner -Patriots -Winter Olympics -Patriots -Sergei Eisenstein -Virginia Woolf -Cherry Seaborn -State of the Union -Rasual Butler -Toys R Us -NBA Trades -Kylie Jenner -Columbine Shooting -calculator -Amazon Stock -Carter G. Woodson -Patriots -Dwyane Wade -SpaceX -Patriots -Valentines Day -Jacob Copeland -Florida shooting -Oscar Nominations 2018 -Carter G. Woodson -Katie Couric -Winter Olympics -Alaska earthquake -UFC 220 -Dow Jones -SpaceX -Google docs -John Mahoney -12 Strong -Winter Olympics -Yahoo Finance -Larry Nassar -Super Bowl score -Paula Modersohn-Becker -Vikings Vs Eagles -Terry Bradshaw -Did the Groundhog See His Shadow -Blake Griffin -Vince McMahon -Florida shooting -Oscar Nominations 2018 -Bill Belichick -Patriots -Chicago Weather -What Time Is The Super Bowl -Winter Olympics -Paula Modersohn-Becker -Chloe Kim Snowboarder -Justin Timberlake -Patriots -Valentines Day Images -Elizabeth Blackwell -stock market -Kylie Jenner -Sea Of Thieves -Montreal Cognitive Assessment -Kim Kardashian -Government Shutdown -Government shutdown 2018 -Oscar Nominations 2018 -Monster Hunter World -Wilder Penfield -Kylie Jenner -Government Shutdown -Florida shooting -Sergei Eisenstein -Virginia Woolf -Super Bowl score -What Time Is The Super Bowl -Memo -Hope Hicks -Real Madrid -Manchester United -Chloe Kim -Government Shutdown -Paula Modersohn-Becker -Presidents Day 2018 -Happy Valentines Day -Tessa Virtue -Winter Olympics -Reg E Cathey -stock market -LeBron James -Elizabeth Blackwell -Government Shutdown -Elizabeth Blackwell -Larry Nassar -Elizabeth Blackwell -Google Drive -Zion Williamson -Blake Griffin -Sergei Eisenstein -Sergei Eisenstein -State of the Union -Lonzo Ball -Snapchat Update -Ash Wednesday -Google Classroom -Hostiles -Super Bowl score -Hope Hicks -Sergei Eisenstein -Tom Petty -Virginia Woolf -Dow Jones -Super Bowl score -Justin Timberlake -Sergei Eisenstein -Warren Miller -Grammys 2018 -Government shutdown 2018 -Patriots -Norovirus -Sergei Eisenstein -Florida shooting -Patriots -Super blue blood Moon -Royal Rumble 2018 -Earthquake -SpaceX -Jimmy Garoppolo -Kylie Jenner -Yu Darvish -Justin Timberlake -Paula Modersohn-Becker -Mardi Gras 2018 -Obama portrait -Winter Olympics -Super Bowl 2018 -Valentines Day -Winter Olympics -Black Panther -Sergei Eisenstein -Elizabeth Blackwell -Sergei Eisenstein -Happy Valentines Day -Patriots -Virginia Woolf -Bitcoin Price -Champions League -Paula Modersohn-Becker -shutdown -Winter Olympics -Grammys 2018 -Kodak Black -Patriots -What Time Is The Super Bowl -Grammys 2018 -Florida shooting -Valentines Day -Bitcoin Price -Andrew Cunanan -Paula Modersohn-Becker -Vikings Vs Eagles -calculator -Super Bowl score -Virginia Woolf -Wilder Penfield -What Time Is The Super Bowl -Winter Olympics -State of the Union -Fidel Castro -Florida shooting -Nba All Star Draft -Winter Olympics -Andrew McCabe -Patriots -Winter Olympics -SpaceX -Celtics -Florida shooting -Virginia Woolf -Fredo Santana -Andrew Cunanan -Larry Nassar -Kylie Jenner -Grammys 2018 -Jason Kelce -What Time Is The Super Bowl -stock market -Sergei Eisenstein -NBA Trades -Sergei Eisenstein -Kesha -Winter Olympics -Google docs -Happy Valentines Day -Patriots -Florida shooting -Elizabeth Blackwell -Sergei Eisenstein -Andrew Cunanan -Elizabeth Blackwell -Solo Trailer -Justin Timberlake -Super blue blood Moon -Den of Thieves -Oscar Nominations 2018 -Shaun White -Patriots -Trump State of the Union -Meteor -Winter Olympics -Virginia Woolf -Vikings vs Eagles -Wilder Penfield -Jennifer Aniston -Blake Griffin Trade -Mark Salling -What Time Is The Super Bowl -LeBron James -Florida shooting -Sergei Eisenstein -Paula Modersohn-Becker -calculator -Shaun White -Elizabeth Blackwell -Super Bowl score -Virginia Woolf -Alex Smith -Sergei Eisenstein -Patriots -Dow Jones -AR-15 -Jimmy Garoppolo -Hope Hicks -Super Bowl 2018 -Adam Rippon -Royal Rumble 2018 -Florida shooting -Florida shooting -Patriots -SpaceX -Toys R Us -Oscar Nominations 2018 -Johnny Weir -Patriots -Winter Olympics -SpaceX -Andrew Cunanan -Carter G. Woodson -Timor Leste -Steve Mcnair -Chicago West -Fredo Santana -Adam Rippon -Chicago Weather -Florida shooting -Danielle Herrington -Florida shooting -Joel Taylor -AR-15 -Yura Min -Carter G. Woodson -Jen Selter -Arsenal -Patriots -Chinese New Year 2018 -Cloverfield Paradox -Sergei Eisenstein -Paula Modersohn-Becker -Groundhog Day 2018 -Black Panther -Fredo Santana -luge -Virginia Woolf -Super Bowl 2018 -Patriots -Carter G. Woodson -Google Classroom -Terry Bradshaw -Super Bowl 2018 -Patriots -CNN -Patriots -Larry Nassar -What Time Is The Super Bowl -Super Bowl score -Super Bowl score -Paula Modersohn-Becker -Sergei Eisenstein -Incredibles 2 -Government shutdown -Super Blue Blood Moon -Eli Manning -Terrell Owens -Super Bowl score -VIX -Groundhog Day 2018 -Paula Modersohn-Becker -Wilder Penfield -Grammys 2018 -Florida shooting -Winter Olympics -Sergei Eisenstein -Larry Nassar -Ursula Le Guin -SpaceX -Kate Upton -Rob Delaney -Paul Ryan -Elizabeth Blackwell -Happy Valentines Day -Bitcoin Price -Wilder Penfield -Mikaela Shiffrin -Super blue blood Moon -Chinese New Year 2018 -Grammys 2018 -Justin Timberlake -Kylie Jenner -Eli Manning -Lunar eclipse -Josh McDaniels -Florida shooting -Trey Gowdy -Sergei Eisenstein -Cavs -Valentines Day Images -Wilder Penfield -Jennifer Aniston -Kodak Black -Patriots -Sergei Eisenstein -Justin Timberlake -AFC Championship Game 2018 -Justin Timberlake -Bitcoin Price -Sabrina Dhowre -Super Bowl Commercials 2018 -Harley Barber -Super Bowl score -Did the Groundhog See His Shadow -Winter Olympics -Justin Timberlake -School Closings -Elizabeth Blackwell -Paula Modersohn-Becker -calculator -Amy Schumer -Trump State of the Union -Peter Rabbit -Meteor -Elizabeth Blackwell -Florida shooting -Patriots -Patriots -Kylie Jenner -Solo Trailer -Oscar Nominations 2018 -Maze Runner: The Death Cure -Venom -12 Strong -Sergei Eisenstein -Did the Groundhog See His Shadow -Alaska earthquake -Super Bowl 2018 -XFL -Carter G. Woodson -Chipper Jones -Patriots -Kesha -Super Bowl score -Carter G. Woodson -Super Bowl score -Kentucky shooting -Super Bowl score -Virginia Woolf -Reg E Cathey -Senior Bowl -Carter G. Woodson -Super Bowl Commercials 2018 -SpaceX -Celebrity Big Brother cast -Kirstjen Nielsen -Winter Olympics -United States Of America Winter Olympics -Abraham Lincoln -Patriots -Tammy Duckworth -Vikings Vs Eagles -Carter G. Woodson -Langston Hughes -Elizabeth Blackwell -Dennis Edwards -Earthquake Today -Winter Olympics -UFC 220 -Florida shooting -Black Panther -Trump State of the Union -John Mahoney -Larry Nassar -Greg Monroe -Snake -Omarosa -Emily Sweeney -Groundhog Day 2018 -Google docs -Shaun White -Cherry Seaborn -Elizabeth Blackwell -Carter G. Woodson -Chloe Kim Snowboarder -Elizabeth Blackwell -Valentines Day -What Time Is The Super Bowl -SAG Awards 2018 -Virginia Woolf -Super Bowl 2018 -Paula Modersohn-Becker -Royal Rumble 2018 -Wilder Penfield -Groundhog Day 2018 -Jessica Chastain -Sergei Eisenstein -What Time Is The Super Bowl -Sergei Eisenstein -Paula Modersohn-Becker -Happy Valentines Day -Winter Olympics -Zion Williamson -Happy Valentines Day -Virginia Woolf -Google Classroom -Black Panther -Quincy Jones -Carter G. Woodson -curling -Government Shutdown -Patriots -Sergei Eisenstein -State of the Union -Winter Olympics -Jacob Copeland -Carter G. Woodson -Rob Porter -Patriots -Government Shutdown Meaning -Super Bowl 2018 -Mardi Gras 2018 -SpaceX -Dow Jones -earthquake today -Hostiles -Paula Modersohn-Becker -Donald Trump Jr -Super Bowl score -Carter G. Woodson -Joe Kennedy -Solo Trailer -Chicago West -Wilder Penfield -Patriots -Dow Jones -Kentucky shooting -Super Blue Blood Moon -Super blue blood Moon -Blake Griffin Trade -Florida shooting -Sergei Eisenstein -Google Drive -Russell Wilson -This Is Us -SpaceX -Sergei Eisenstein -Sergei Eisenstein -Wilder Penfield -Wilder Penfield -Super Bowl score -Patriots -What Time Is The Super Bowl -Elton John -Blake Griffin -NBA Trades -Patriots -SZA -Dow Jones -Patriots -Kirstjen Nielsen -Arsenal -Chinese New Year 2018 -Carter G. Woodson -Patriots -Den of Thieves -Hope Hicks -Super Bowl Commercials 2018 -Super Bowl score -James Harden -New California -Obama portrait -Rachel Brand -Dow Jones -Patriots -Patriots -Cloverfield Paradox -Bitcoin Price -Amy Schumer -Paula Modersohn-Becker -Sergei Eisenstein -Florida shooting -Oscar Nominations 2018 -Government Shutdown -Florida shooting -Amy Schumer -Nascar Schedule -Jacob Copeland -Bitcoin Price -Sergei Eisenstein -Florida shooting -Kylie Jenner -SpaceX -Happy Valentines Day -Rob Delaney -Winter Olympics -Larry Nassar -Super Bowl Commercials -Grammys 2018 -Sea Of Thieves -Vikings Vs Eagles -Memo -Sergei Eisenstein -Dow Jones industrial average -Elizabeth Blackwell -Tom Brady -Winter Olympics -Dwyane Wade -Sergei Eisenstein -Winter Olympics -Hope Hicks -Memo -Jason Kelce -Mitt Romney -SAG Awards 2018 -Wilder Penfield -Paula Modersohn-Becker -Paula Modersohn-Becker -Elizabeth Blackwell -State of the Union -Jessica Chastain -Enzo Amore -Paula Modersohn-Becker -Vanessa Marcil -Shaun White -Super Bowl score -Super Bowl Commercials 2018 -Paula Modersohn-Becker -Carter G. Woodson -Super Bowl 2018 -Super Bowl 2018 -Memo -Shaun White -Wilder Penfield -Montreal Cognitive Assessment -Logan Paul -Virginia Woolf -Happy Valentines Day -SpaceX -Google Classroom -XFL -Super Bowl score -Groundhog Day 2018 -SpaceX -Justin Timberlake -Google Classroom -Joe Kennedy -School Closings -Virginia Woolf -Virginia Woolf -Elizabeth Blackwell -Amy Schumer -Groundhog Day 2018 -Dow Jones -Valentines Day -Winter Olympics -Happy Valentines Day -Virginia Woolf -12 Strong -Best Superbowl Commercials 2018 -Government Shutdown -Winter Olympics -Chinese New Year 2018 -Kentucky shooting -Mardi Gras 2018 -XFL -Wilder Penfield -Mark Salling -Super Bowl score -Florida shooting -Cavs -Justin Timberlake -Super Bowl Commercials 2018 -New California -Government shutdown -Kylie Jenner -SpaceX -Adam Rippon -Tony Romo -State of the Union -NBA Trades -SpaceX -Shaun White -Florida shooting -Grammys 2018 -Lunar eclipse -Mavic Air -Did the Groundhog See His Shadow -Florida shooting -Solo Trailer -Dennis Edwards -What Time Is The Super Bowl -fake news awards -DeMarcus Cousins -Chloe Kim -Patti LuPone -Paula Modersohn-Becker -Robert Wagner -Stan Lee -Wilder Penfield -Winter Olympics -Happy Valentines Day -Government shutdown 2018 -Wilder Penfield -Winter Olympics -Kylie Jenner -Paula Modersohn-Becker -Ash Wednesday -The Home Depot -FC Barcelona -Oscar Nominations 2018 -Google Drive -Paula Modersohn-Becker -Trump State of the Union -Elizabeth Blackwell -Super Bowl score -Forever My Girl -Sergei Eisenstein -Tyler Hilinski -Groundhog Day 2018 -LeBron James -Carter G. Woodson -earthquake today -Cherry Seaborn -Trump State of the Union -Larry Nassar -Super Bowl 2018 -SpaceX -Earthquake Today -Rampage -Super Bowl score -Wilder Penfield -Patriots -SpaceX -SpaceX -Patriots -The 15:17 to Paris -Cory Booker -Florida shooting -Paula Modersohn-Becker -Super Bowl 2018 -Super Bowl 2018 -NFL Honors -Wilder Penfield -Memo -Jennifer Aniston -Winter Olympics -Grammys 2018 -Paula Modersohn-Becker -Bitcoin Price -Virginia Woolf -NASA -Carter G. Woodson -United States Of America Winter Olympics -Netflix Stock -UFC 220 -Wilder Penfield -school closings -Wilder Penfield -Florida shooting -Sergei Eisenstein -Grammys 2018 -Derrick Rose -Chicago Weather -Oscar Nominations 2018 -Chipper Jones -Jen Selter -NBA Trades -Dragon Ball Super -Blue Ivy -Carter G. Woodson -Grammys 2018 -XFL -Super Bowl 2018 -Elizabeth Blackwell -Sergei Eisenstein -Super Bowl score -NBA Trades -Tomi Lahren -Chipper Jones -Mardi Gras 2018 -SpaceX -Kesha Grammy -Culture 2 -Google Classroom -Fredo Santana -Adam Rippon -Vikings Vs Eagles -Chloe Kim -Happy Valentines Day -Justin Timberlake -Super Bowl score -Super Bowl 2018 -Hope Hicks -Black Panther -Ash Wednesday -Alaska earthquake -Winter Olympics -Winter Olympics -Florida shooting -Sergei Eisenstein -Florida shooting -Winter Olympics -Royal Rumble 2018 -Patriots -Olympic Medal Count -Government shutdown 2018 -Waco -Super Blue Blood Moon -Mardi Gras 2018 -Valentines Day Cards -Carter G. Woodson -Luke Wilson -Memo -Sergei Eisenstein -Virginia Woolf -Super Bowl score -Carter G. Woodson -Carter G. Woodson -Super Bowl score -Michigan State -Sergei Eisenstein -Paula Modersohn-Becker -Sergei Eisenstein -This Is Us -Bitcoin Price -happy new year in Chinese -Super Bowl score -Alaska earthquake -Larry Nassar -Tom Brady daughter -Super Bowl score -Justin Timberlake -Carter G. Woodson -Jennifer Aniston -Taiwan Earthquake Today -Carter G. Woodson -Tom Petty -Kim Kardashian -Virginia Woolf -Rasual Butler -Wilder Penfield -Kylie Jenner -Patriots -Carter G. Woodson -Florida shooting -Vikings Vs Eagles -Patriots -Larry Nassar -Rasual Butler -Patriots -Paula Modersohn-Becker -Dow Jones -Chinese New Year 2018 -Paula Modersohn-Becker -State of the Union -Wilder Penfield -Vikings Vs Eagles -Government shutdown -Patriots -Lunar eclipse -Alex Reimer -Dennis Edwards -Super blue blood Moon -Call Me by Your Name -Patriots -Jane Fonda -Justin Timberlake -Carter G. Woodson -Sergei Eisenstein -Virginia Woolf -Tom Petty -State of the Union -Mardi Gras 2018 -Solo Trailer -Florida shooting -Carter G. Woodson -Olympic Medal Count -Winter Olympics -Super Bowl 2018 -Real Madrid -Luke Wilson -Uma Thurman -Dwyane Wade -Dennis Edwards -Super Bowl Commercials 2018 -Winter Olympics -Lonzo Ball -Kim Cattrall -Wilder Penfield -CNN -SAG Awards 2018 -Government shutdown 2018 -Camila Cabello -Paula Modersohn-Becker -Vic Damone -Virginia Woolf -Obama portrait -Ash Wednesday -Super Bowl 2018 -Winter Olympics -Wilder Penfield -State of the Union -Super Bowl 2018 -Wilder Penfield -Lindsey Vonn -Paula Modersohn-Becker -Stan Lee -Super Bowl score -Sergei Eisenstein -Happy Valentines Day -Rodney Hood -Wilder Penfield -Super blue blood Moon -Johnny Weir -Grammys 2018 -This is Us -Cloverfield Paradox -Kim Kardashian -Shani Davis -Melania Trump -Justin Timberlake -Marlon Brando -Carter G. Woodson -Paula Modersohn-Becker -Kylie Jenner Baby Girl -Sea Of Thieves -Wilder Penfield -Florida shooting -Super Bowl score -Winter Olympics -SpaceX -Quincy Jones -Sabrina Dhowre -Kylie Jenner -Patriots -Trump State of the Union -Sergei Eisenstein -Virginia Woolf -Kesha Grammy -Super blue blood Moon -Super Bowl Winners -Venom -Mark Salling -Mark Salling -Johnny Weir -Dwyane Wade -Elizabeth Blackwell -School Closings -IXL -Fredo Santana -school closings -Sergei Eisenstein -Isaiah Thomas -Jimmy Garoppolo -Football Playoffs 2018 -Earthquake Today -Mark Salling -Elizabeth Blackwell -Wilder Penfield -Brynn Cameron -Sting -Rose McGowan -Paula Modersohn-Becker -Grammys 2018 -KSI Vs Weller -The 15:17 to Paris -NFC Championship Game 2018 -Phantom Thread -Patriots -Oscar Nominations 2018 -Winter Olympics -Sergei Eisenstein -Chicago West -Alaska earthquake -Patriots -Winter Olympics -Grammys 2018 -Cnbc -Kylie Jenner -tsunami -Joe Kennedy -Florida shooting -Super Blue Blood Moon -UFC 220 -Tonga -Sergei Eisenstein -Grammys 2018 -SpaceX -Super Bowl 2018 -SAG Awards 2018 -Kesha -Blake Griffin -Super Bowl score -Jessica Biel -Mark Salling -Sergei Eisenstein -Wilder Penfield -Tom Petty -What Time Is The Super Bowl -Wilder Penfield -Oscar Nominations 2018 -Deadpool 2 -Kylie Jenner -Natalie Wood -Alex Smith -Royal Rumble 2018 -Olympic medal count -Winter Olympics -Virginia Woolf -Wilder Penfield -Montreal Cognitive Assessment -John Mahoney -Florida shooting -Florida shooting -Paula Modersohn-Becker -Virginia Woolf -Edible Arrangements -Virginia Woolf -Alaska earthquake -Justin Timberlake -Kentucky shooting -Wilder Penfield -Obama portrait -What Time Is The Super Bowl -NHL All Star Game -Mexico Vs Bosnia -Hostiles -NBA Trades -Winter Olympics -Tessa Virtue -Jennifer Aniston -Luke Wilson -Patriots -SpaceX -SpaceX -Jennifer Aniston -Grammys 2018 -Tammy Duckworth -Government Shutdown -Winter Olympics -Adam Rippon -Black Panther -Fifty Shades Freed -Super Bowl 2018 -Mark Salling -Super Bowl 2018 -SpaceX -Shaun White -Wilder Penfield -Shaun White -Florida shooting -Kesha -Tom Brady -MS13 -Sergei Eisenstein -Dow Jones -Elizabeth Blackwell -Oscar Nominations 2018 -Earthquake -Kylie Jenner -Government shutdown -Super Blue Blood Moon -Did the Groundhog See His Shadow -Paula Modersohn-Becker -Florida shooting -Super Bowl 2018 -Red Gerard -Google Classroom -Sergei Eisenstein -Tom Brady daughter -Super Bowl score -NBA Trades -Paula Modersohn-Becker -Ant Man and the Wasp -Olympic Medal Count -Florida shooting -Ar 15 -Super Bowl score -Winter Olympics -Florida shooting -Winter Olympics -Carter G. Woodson -Larry Nassar -School closings -Memo -calculator -Carter G. Woodson -Google Classroom -Tom Petty -Patriots -Shiffrin -Virginia Woolf -Government shutdown -Elizabeth Blackwell -Virginia Woolf -Chloe Kim -Peter Rabbit -Harley Barber -What Time Is The Super Bowl -Sergei Eisenstein -Groundhog Day 2018 -Elizabeth Blackwell -Best Superbowl Commercials 2018 -Vanessa Marcil -Tom Brady -Virginia Woolf -Oar Olympics -Kodak Black -Vikings Vs Eagles -Virginia Woolf -Quincy Jones -Happy Valentines Day -Winter Olympics -Jessica Chastain -All Star Weekend 2018 -Johnny Weir -Black Panther -Scandal -Vikings Vs Eagles -Deadpool 2 -Elizabeth Blackwell -Jason Kidd -Dwyane Wade -Childish Gambino -New England Patriots owner -Chloe Kim Snowboarder -AFC Championship Game 2018 -Super Bowl 2018 -United States Of America Winter Olympics -Super Bowl 2018 -Super Bowl score -Elizabeth Blackwell -Josh Allen -Paula Modersohn-Becker -What Time Is The Super Bowl -Super Bowl 2018 -Paula Modersohn-Becker -Kylie Jenner Baby Girl -Super Bowl Commercials -Carter G. Woodson -Paula Modersohn-Becker -Chris Mazdzer -Super Bowl Commercials 2018 -Carter G. Woodson -Daytona 500 -Sergei Eisenstein -LL Bean -Elizabeth Blackwell -curling -SpaceX -Alex Smith -Shaun White -Government Shutdown -Sergei Eisenstein -Virginia Woolf -What Time Is The Super Bowl -Elizabeth Blackwell -Quincy Jones -Real Madrid -Shaun White -Government Shutdown -Larry Nassar -State of the Union -government shutdown -Virginia Woolf -XFL -Celtics -Quentin Tarantino -NHL All Star Game -Pro Bowl 2018 -Paula Modersohn-Becker -Kylie Jenner -Jessica Chastain -Happy Valentines Day -Matt Patricia -Paula Modersohn-Becker -Esteban Loaiza -Rasual Butler -Paula Modersohn-Becker -Virginia Woolf -Winter Olympics -Isaiah Canaan -Enzo Amore -Nathan Chen -Happy Valentines Day -Aaron Feis -Government Shutdown -Government Shutdown -Justin Timberlake -What Time Is The Super Bowl -Robby Anderson -Winter Olympics -NFL Honors -Mark Salling -State of the Union -Elizabeth Blackwell -Groundhog Day 2018 -Grammys 2018 -Government Shutdown -Kylie Jenner -Rasual Butler -Carter G. Woodson -SpaceX -Sergei Eisenstein -Kylie Jenner -Virginia Woolf -Mueller -Jessica Chastain -Chief Wahoo -Jimmy Garoppolo -Government Shutdown 2018 -Super Bowl Commercials 2018 -Chris Mazdzer -Bob Dole -Super Bowl Winners -SAG Awards 2018 -Florida shooting -Justin Timberlake -Drake -Grammys 2018 -Johnny Weir -Sergei Eisenstein -What Time Is The Super Bowl -Florida shooting -Manchester United -Simona Halep -Mardi Gras 2018 -Dow Jones -Vince McMahon -Patti LuPone -Sergei Eisenstein -Wilder Penfield -Paula Modersohn-Becker -Grammys 2018 -Super Bowl score -Justin Timberlake -Google docs -Obama portrait -School closings -Super Bowl 2018 -Kylie Jenner -Super Bowl 2018 halftime show -Vikings vs Eagles -Fredo Santana -Kylie Jenner -Women's March 2018 -Sergei Eisenstein -Government shutdown 2018 -Super Bowl score -Carter G. Woodson -Outback Steakhouse -Wilder Penfield -Super Bowl score -Lindsey Vonn -Super Bowl 2018 -Paula Modersohn-Becker -Fifty Shades Freed -Eric Wood -Carter G. Woodson -Sergei Eisenstein -Grammys 2018 -SpaceX -Elizabeth Blackwell -Joe Kennedy -SpaceX -Super Bowl score -Andrew Cunanan -Wilder Penfield -Winter Olympics -Super Bowl 2018 -Chris Long -Virginia Woolf -Sergei Eisenstein -Sergei Eisenstein -Lauren Davis -Women's March 2018 -What Time Is The Super Bowl -Super Bowl 2018 -This Is Us -Nba All Star Draft -Wilder Penfield -Mark Salling -Matt Patricia -Ronaldinho -Bitcoin Price -Utah Jazz -Grammys 2018 -SpaceX -Virginia Woolf -Carter G. Woodson -Tyler Hilinski -Alex Reimer -Super Bowl score -BitConnect -Virginia Woolf -Kylie Jenner -Jason Kelce -NFC Championship Game 2018 -Dennis Edwards -SAG Awards 2018 -Memo -Super Bowl score -Blake Griffin -Blake Griffin -Black Panther -Shaun White -SAG Awards 2018 -Cavs -Black Panther -Winter Olympics -Grammys 2018 -Pro Bowl 2018 -Florida shooting -Carter G. Woodson -Groundhog Day 2018 -Sergei Eisenstein -Black Panther -Super Bowl 2018 -Tom Petty -12 Strong -Patriots -Kylie Jenner -Winter Olympics -Florida shooting -Carter G. Woodson -Shaun White -Real Madrid -Kylie Jenner -Bitcoin Price -Super Bowl score -H&r Block -Vikings Vs Eagles -Government Shutdown Meaning -Super Bowl score -Puppy Bowl 2018 -Patriots -Super Bowl 2018 -Paula Modersohn-Becker -Lindsey Vonn -What Time Is The Super Bowl -Larry Nassar -Chinese New Year 2018 -Women's March 2018 -Happy Valentines Day -Mexico earthquake -What Time Is The Super Bowl -Wilder Penfield -Tom Petty -The 15:17 to Paris -Adam Rippon -Sergei Eisenstein -Carter G. Woodson -Rob Delaney -Elizabeth Blackwell -Carter G. Woodson -Rihanna -Elizabeth Blackwell -National Pizza Day -Paula Modersohn-Becker -Google docs -Carter G. Woodson -Paula Modersohn-Becker -Yu Darvish -This Is Us -Ash Wednesday -Government Shutdown -Florida shooting -Patty Hearst -Jenna Morasca -Florida shooting -Government shutdown 2018 -Eli Manning -Super Bowl Commercials 2018 -Vikings Vs Eagles -Royal Rumble 2018 -Shaun White -Rasual Butler -Rihanna -Jessica Chastain -Ursula Le Guin -Blake Griffin Trade -Kim Kardashian -Mark Salling -Josh Allen -Paula Modersohn-Becker -Justin Timberlake -calculator -Vikings Vs Eagles -Duke Basketball -Kylie Jenner -Sergei Eisenstein -What Time Is The Super Bowl -NBA Trades -Olympic Medal Count -Lena Zawaideh -Black Panther -Jeff Flake -Carter G. Woodson -Paula Modersohn-Becker -Reg E Cathey -Super Bowl score -Houston Rockets -Sergei Eisenstein -Fredo Santana -Kylie Jenner -Rasual Butler -Despacito -SpaceX -Sergei Eisenstein -Zuleyka Rivera -Super Bowl 2018 -Wilder Penfield -Virginia Woolf -Chloe Kim -Morgan Freeman -SpaceX -Wilder Penfield -Kim Kardashian -Super Bowl 2018 -Den of Thieves -Winter Olympics -Valentines Day -NBA Trades -Kesha -school closings -Elizabeth Blackwell -Sergei Eisenstein -Adam Rippon -Did the Groundhog See His Shadow -Elizabeth Blackwell -Super Bowl 2018 -Kim Kardashian -Tammy Duckworth -Justin Timberlake -New England Patriots owner -Shaun White -Winter Olympics -Grammys 2018 -Norovirus -Paula Modersohn-Becker -Super Bowl score -Elizabeth Blackwell -Fredo Santana -Florida shooting -Vikings vs Eagles -Virginia Woolf -UFC 220 -Cloverfield Paradox -Elizabeth Blackwell -Chloe Kim -Olympic Medal Count -Government shutdown -Grammys 2018 -What Time Is The Super Bowl -Oscar Nominations 2018 -Kylie Jenner -Princess Eugenie -Black Panther -Virginia Woolf -Florida shooting -Den of Thieves -Wilder Penfield -Rasual Butler -Super Bowl 2018 -Daryle Singletary -Matt Czuchry -Virginia Woolf -Brynn Cameron -Obama portrait -Valentines Day -Florida shooting -Wilder Penfield -Meteor -Government Shutdown -Isaiah Thomas -Google Classroom -Betty White -Oscar Nominations 2018 -Blake Griffin -earthquake today -Government Shutdown -Edwin Jackson -Fb Stock -Super Bowl score -Alex Smith -Vikings Vs Eagles -Elizabeth Blackwell -Super Bowl 2018 -Isaiah Canaan -Meteor -Women's March 2018 -stock market -Sergei Eisenstein -Black Panther -Sergei Eisenstein -Patriots -Government Shutdown -Patriots -Florida shooting -Government Shutdown -Sergei Eisenstein -Happy Valentines Day -Super Bowl 2018 -Michelle Obama -Chloe Kim -Royal Rumble 2018 -Terrell Owens -Obama portrait -Sergei Eisenstein -Super Bowl Commercials 2018 -Hillary Clinton -Grammys 2018 -Super blue blood Moon -Fifty Shades Freed -Sergei Eisenstein -Justin Timberlake -Mikaela Shiffrin -Chinese New Year 2018 -Carter G. Woodson -CNN -Patriots -Cavs -Chicago West -New England Patriots owner -Vikings Vs Eagles -Sean Hannity -All Star Weekend 2018 -Sergei Eisenstein -Carter G. Woodson -Steve Mcnair -What Time Is The Super Bowl -Olympic Medal Count -Google docs -Carter G. Woodson -Wilder Penfield -Super Bowl score -Winter Olympics -Alaska earthquake -Florida shooting -Portia de Rossi -Grammys 2018 -What Time Is The Super Bowl -Virginia Woolf -Arsenal -Elizabeth Blackwell -Larry Nassar -Get Out -Mardi Gras 2018 -Super Bowl 2018 -Wilder Penfield -Happy Valentines Day -Wilder Penfield -Shaun White -LeBron James -Groundhog Day 2018 -Justin Timberlake -Kylie Jenner Baby Girl -Don Lemon -CNN -Olivia Culpo -Government shutdown 2018 -Kesha -Amy Schumer -Government Shutdown 2018 -Bitcoin Price -Elizabeth Blackwell -XFL -Super Bowl score -Hailee Steinfeld -Emily Sweeney -Forever My Girl -The 15:17 to Paris -What Time Is The Super Bowl -Pro Bowl 2018 -Larry Nassar -Government Shutdown -Paula Modersohn-Becker -Florida shooting -Dow Jones -Winter Olympics -State of the Union -Cherry Seaborn -XFL -Early Man -Alaska earthquake -Cory Booker -Black Panther -Jason Kelce -Chloe Kim -Larry Nassar -Super Bowl 2018 -Waco -Bob Marley -Roger Federer -Stan Lee -Zion Williamson -Royal Rumble 2018 -Elizabeth Blackwell -Virginia Woolf -Paula Modersohn-Becker -Winter Olympics -Joe Kennedy -Riverdale -Amy Schumer -Carter G. Woodson -Blake Griffin -Winter Olympics -Carter G. Woodson -Vikings Vs Eagles -SpaceX -Uma Thurman -Justin Timberlake -Alison Brie -Larry Nassar -Andrew Cunanan -Grammys 2018 -Zion Williamson -Justin Timberlake -Peter Rabbit -Elizabeth Blackwell -calculator -Kentucky shooting -Conor McGregor -Costco Wholesale -Wilder Penfield -Groundhog Day 2018 -Sergei Eisenstein -Florida shooting -NBA Trades -SAG Awards 2018 -Super Bowl 2018 -Johnny Manziel -Nintendo Labo -Pro Bowl 2018 -NBA Trades -Grammys 2018 -Super Bowl score -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl 2018 -SpaceX -Elizabeth Blackwell -Virginia Woolf -Super Bowl score -Government Shutdown -Patriots -UFC 220 -Tonga -school closings -Justin Timberlake -Super Bowl 2018 -Kylie Jenner -Florida shooting -Florida shooting -Hope Hicks -Joshua Cooper Ramo -Winter Olympics -School Closings -Virginia Woolf -Winter Olympics -Justin Timberlake -Women's March 2018 -Happy Valentines Day -Super Bowl score -Peter Rabbit -Super Bowl 2018 -Sergei Eisenstein -Elizabeth Blackwell -State of the Union -Joel Taylor -Justin Timberlake -Ash Wednesday -Florida shooting -SAG Awards 2018 -Virginia Woolf -Grammys 2018 -Winter Olympics -This Is Us -Paula Modersohn-Becker -Den of Thieves -Wilder Penfield -Yuzuru Hanyu -Amy Schumer -Maria Menounos -Virginia Woolf -Julie Ertz -Super Bowl score -Wilder Penfield -Chicago West -Nintendo Labo -Wilder Penfield -Super blue blood Moon -Memo -Virginia Woolf -Virginia Woolf -Despacito -Chloe Kim -Florida shooting -NBA Trades -Forever My Girl -Virginia Woolf -Florida shooting -Larry Nassar -Virginia Woolf -Kentucky shooting -SpaceX -Winter Olympics -JUUL -Waco -Shaun White -School Closings -Fifty Shades Freed -Chicago Weather -Lindsey Vonn -Shaun White -Virginia Woolf -XIV -Super Bowl 2018 -New England Patriots owner -Carter G. Woodson -Paula Modersohn-Becker -Patriots -Government Shutdown -Winter Olympics -Kylie Jenner -Super Bowl score -Mikaela Shiffrin -Daryle Singletary -Kylie Jenner -Tomi Lahren -Wilder Penfield -FA Cup -calculator -Virginia Woolf -Carter G. Woodson -Oscar Nominations 2018 -Alexa Commercial -Super Bowl 2018 -Jamie Anderson -Logan Paul -Sergei Eisenstein -Patriots -Grammys 2018 -Tammy Duckworth -This Is Us -Marlon Brando -Chris Long -Deadpool 2 -Wilder Penfield -NBA Trades -Kylie Jenner -Norovirus -Patriots -Virginia Woolf -Sergei Eisenstein -Luke Wilson -Tiger Woods -Super Bowl 2018 -Super Bowl 2018 -Stan Lee -Government Shutdown -Carter G. Woodson -Real Madrid -Monster Hunter World -Fredo Santana -Sergei Eisenstein -Justin Timberlake -Sergei Eisenstein -Patriots -Virginia Woolf -Rasual Butler -Did the Groundhog See His Shadow -Blake Griffin -Paula Modersohn-Becker -Kylie Jenner -Carter G. Woodson -Columbine Shooting -Paula Modersohn-Becker -Memo -Patriots -Paula Modersohn-Becker -Valentines Day -Woody Allen -Kylie Jenner -Isaiah Thomas -Adam Rippon -Winter Olympics -Hillary Clinton -What Time Is The Super Bowl -Meteor -Mark Salling -Virginia Woolf -Patriots -Elizabeth Blackwell -Florida shooting -Government shutdown 2018 -Elizabeth Blackwell -XFL -Winter Olympics -Florida shooting -Mikaela Shiffrin -Paula Modersohn-Becker -calculator -calculator -Carter G. Woodson -Betty White -Mickey Jones -Altered Carbon -Wilder Penfield -Aaron Fies -NBA Trades -Winter Olympics -stock market -This Is Us -Daryle Singletary -Camila Cabello -Jessica Chastain -Super Bowl 2018 -Winter Olympics -Government Shutdown Meaning -Super Bowl 2018 -Winter Olympics -Olympics 2018 -Kentucky shooting -Mark Salling -Jessica Chastain -Mark Salling -Wilder Penfield -Elizabeth Blackwell -Super Bowl 2018 -calculator -Did the Groundhog See His Shadow -Gianni Versace -Black Panther -School closings -Super Bowl 2018 -Chinese New Year 2018 -Eli Manning -Carter G. Woodson -Shaun White -Edwin Jackson -Florida shooting -Portia de Rossi -Happy Valentines Day -Google Classroom -stock market -Winter Olympics -earthquake -Sal Castro Middle School -Government Shutdown -Virginia Woolf -Sergei Eisenstein -Kylie Jenner -Super Bowl 2018 -tsunami -Paula Modersohn-Becker -Nancy Pelosi -Cherry Seaborn -Super Bowl score -Kylie Jenner -Shaun White -Super Bowl score -XFL -Kylie Jenner Baby Girl -Sal Castro Middle School -Shaun White -Release The Memo -Sergei Eisenstein -Adam Rippon -SpaceX -Super Bowl score -Ash Wednesday -Carrie Underwood -Government Shutdown -Forever My Girl -Jamie Anderson -Florida shooting -Elizabeth Blackwell -Government shutdown 2018 -Forever My Girl -Winter Olympics -Sergei Eisenstein -SAG Awards 2018 -Terrell Owens -Jimmy Kimmel -Kate Upton -Virginia Woolf -Oscar Nominations 2018 -Memo -SpaceX -What Time Is The Super Bowl -NFC Championship Game 2018 -Fredo Santana -Elizabeth Blackwell -Chris Paul -Virginia Woolf -Did the Groundhog See His Shadow -Nathan Chen -Super Bowl score -Super Bowl score -Carter G. Woodson -Winter Olympics -What Time Is The Super Bowl -Royal Rumble 2018 -Harley Barber -SAG Awards 2018 -Royal Rumble 2018 -Vikings Vs Eagles -Sergei Eisenstein -Virginia Woolf -Carter G. Woodson -Virginia Woolf -Childish Gambino -Super Bowl 2018 -SpaceX -Cnbc -Happy Valentines Day -Terrell Owens -Tom Izzo -Dow Jones -Wilder Penfield -Shaun White -Lari White -Senior Bowl -NHL All Star Game -Amy Schumer -Bitcoin Price -Elizabeth Blackwell -Patti LuPone -Red Gerard -Paula Modersohn-Becker -SpaceX -Chinese New Year 2018 -Super Bowl score -Mark E Smith -SZA -Patriots -SpaceX -Wilder Penfield -Virginia Woolf -NBA Trades -Conor McGregor -Justin Timberlake -Winter Olympics -Dow Jones -Memo -Meteor -Carter G. Woodson -Lonzo Ball -Simona Halep -Natalie Wood -Memo -Pro Bowl 2018 -Halsey -Presidents Day 2018 -Sting -Best Superbowl Commercials 2018 -Super Blue Blood Moon -Kim Cattrall -Johnny Weir -Elizabeth Blackwell -Peter Rabbit -SAG Awards 2018 -Florida shooting -Virginia Woolf -Super Bowl 2018 -Winter Olympics -Portia de Rossi -Cavs -Carter G. Woodson -Larry Nassar -School Closings -National Pizza Day -Anastasia Bryzgalova -Kylie Jenner Baby Girl -Winter Olympics -Kim Kardashian -Sea Of Thieves -Paula Modersohn-Becker -Patriots -Chris Long -Blake Griffin -Trump Hair -Wilder Penfield -Sergei Eisenstein -Alaska earthquake -earthquake today -Lindsey Vonn -Did the Groundhog See His Shadow -Mardi Gras 2018 -SpaceX -Government shutdown 2018 -Elizabeth Blackwell -Virginia Woolf -Stan Lee -Sergei Eisenstein -Kylie Jenner -Paula Modersohn-Becker -Happy Valentines Day -Carter G. Woodson -Dolly Parton -Joe Kennedy -Patti LuPone -Luke Wilson -Quincy Jones -Carter G. Woodson -Super Bowl 2018 -Super Bowl Commercials -Kylie Jenner -Grammys 2018 -Kylie Jenner -Lindsey Vonn -calculator -Joe Kennedy -Andre the Giant -Derrick Rose -Virginia Woolf -Larry Nassar -Jo Jo White -Sergei Eisenstein -All Star Weekend 2018 -Justin Timberlake -Carter G. Woodson -Valentines Day Images -Classroom -Carter G. Woodson -Florida shooting -Elizabeth Blackwell -12 Strong -Super Bowl score -Duke Basketball -Bitcoin Price -Patriots -Fredo Santana -Kim Kardashian -CNN -Florida shooting -Alaska earthquake -Super Bowl 2018 -Winter Olympics -Google Classroom -Alaska earthquake -Sergei Eisenstein -Ash Wednesday -Justin Timberlake -Alessia Cara -Vikings Vs Eagles -James Maslow -John Mahoney -Chloe Kim -Virginia Woolf -Super blue blood Moon -New England Patriots owner -What Time Is The Super Bowl -Olive Garden -Black Panther -New England Patriots owner -Jennifer Aniston -Olympic medal count -Super Bowl 2018 -Elizabeth Blackwell -Kylie Jenner -SZA -NBA Trades -John Mahoney -Rasual Butler -Virginia Woolf -Paula Modersohn-Becker -NBA Trades -Carter G. Woodson -Royal Rumble 2018 -Super Bowl 2018 halftime show -XIV -BitConnect -Sergei Eisenstein -United States Of America Winter Olympics -Childish Gambino -Wilder Penfield -Patriots -Ash Wednesday -Super Bowl Commercials 2018 -Paula Modersohn-Becker -Cloverfield Paradox -Shaun White -XFL -Tonga -Johnny Weir -Matt Patricia -Patriots -Super Bowl 2018 -Grammys 2018 -Virginia Woolf -Puppy Bowl 2018 -Florida shooting -Snapchat Update -SpaceX -Kylie Jenner -Carter G. Woodson -Super Bowl 2018 -Obama portrait -Best Superbowl Commercials 2018 -Super Bowl 2018 -Simona Halep -Kylie Jenner -Carter G. Woodson -Winter Olympics -Wilder Penfield -Paula Modersohn-Becker -Super Bowl 2018 -Virginia Woolf -Chloe Kim -Bob Marley -Florida shooting -Mardi Gras 2018 -Sergei Eisenstein -Patriots -What Time Is The Super Bowl -Jon Huntsman -Emily Sweeney -Sergei Eisenstein -Vikings Vs Eagles -Chloe Kim -Carter G. Woodson -Peter Rabbit -SpaceX -Dow Jones -Den of Thieves -shutdown -John Mahoney -Carter G. Woodson -Elizabeth Blackwell -Shaun White -XFL -Cherry Seaborn -Super Bowl 2018 -Larry Nassar -Super Bowl 2018 -Carter G. Woodson -Adam Rippon -Super Bowl 2018 -Super blue blood Moon -SpaceX -Lari White -SpaceX -Carter G. Woodson -What Time Is The Super Bowl -Patriots -Earthquake Today -Sergei Eisenstein -Elizabeth Blackwell -Virginia Woolf -Columbine Shooting -Black Panther -SpaceX -Josh McDaniels -Hailee Steinfeld -Carter G. Woodson -Virginia Woolf -Google Drive -Florida shooting -Lindsey Vonn -Isaiah Canaan -Did the Groundhog See His Shadow -Robert Wagner -NBA Trades -Steve Mcnair -SpaceX -Football Playoffs 2018 -Virginia Woolf -Paula Modersohn-Becker -Kim Kardashian -Mikaela Shiffrin -Olympic medal count -What Time Is The Super Bowl -Florida shooting -Bitcoin Price -Kylie Jenner Baby Girl -Wilder Penfield -Winter Olympics -Super blue blood Moon -Patriots -Justin Timberlake -Super Bowl 2018 -Carter G. Woodson -Wilder Penfield -Korea -Super Bowl score -Kylie Jenner -Larry Nassar -Larry Nassar -Johnny Weir -Berkshire Hathaway -Celtics -Government Shutdown -James Maslow -LeBron James -Andrew Cunanan -Patriots -Government Shutdown -Hillary Clinton -SpaceX -Wilder Penfield -Patriots -Patriots -Lil Pump -Wilder Penfield -Kristaps Porzingis -Russell Wilson -Dow Jones -Winter Olympics -Sergei Eisenstein -Winter Olympics -Lakers -Kylie Jenner Baby Girl -Justin Timberlake -Paula Modersohn-Becker -Shaun White -Paula Modersohn-Becker -Jeff Flake -Vanessa Trump -Adam Rippon -Super Bowl score -Meteor -Carter G. Woodson -What Time Is The Super Bowl -Olympic medal count -Abraham Lincoln -Elizabeth Blackwell -Patriots -Elizabeth Blackwell -Government Shutdown Meaning -Aaron Feis -Grammys 2018 -Sea Of Thieves -Oscar Nominations 2018 -Caroline Wozniacki -Bob Dole -Kylie Jenner -Hope Hicks -Super Bowl 2018 -What Time Is The Super Bowl -Pro Bowl 2018 -Real Madrid -Wilder Penfield -Happy Valentines Day -Neil Diamond -Paula Modersohn-Becker -Florida shooting -Wilder Penfield -United States Postal Service -Bitcoin Price -Patty Hearst -Super Bowl score -Wilder Penfield -Wilder Penfield -Sergei Eisenstein -Justin Timberlake -Rasual Butler -Jason Kidd -Winter Olympics -Winter Olympics -Florida shooting -Lunar eclipse -Florida shooting -Super Bowl 2018 -Happy Valentines Day -Gregory Salcido -SpaceX -Valentines Day -Fredo Santana -All Star Weekend 2018 -Kylie Jenner -Olympic medal count -Google docs -Elizabeth Blackwell -Enzo Amore -Justin Timberlake -Culture 2 -Happy Valentines Day -SpaceX -Sergei Eisenstein -Super Bowl score -Government Shutdown -Snapchat Update -Kylie Jenner -SpaceX -Justin Timberlake -Alex Reimer -Shaun White -Royal Rumble 2018 -Lakers -Paula Modersohn-Becker -Super Bowl 2018 -Den of Thieves -Super blue blood Moon -Dow Jones -Black Panther -Paula Modersohn-Becker -Chinese New Year 2018 -Sergei Eisenstein -Marlon Brando -Paula Modersohn-Becker -Walter Payton -earthquake -Wilder Penfield -Chinese New Year 2018 -Paula Modersohn-Becker -Kylie Jenner -Super Bowl 2018 -Camila Cabello -Despacito -Melania Trump -Carter G. Woodson -Government Shutdown Meaning -Super Bowl score -What Time Is The Super Bowl -Kesha -Early Man -Sergei Eisenstein -Elizabeth Blackwell -Bob Dole -Derrick Rose -Super Bowl score -Kylie Jenner -Chloe Kim Snowboarder -Patriots -Trump Hair -New England Patriots owner -Bitcoin Price -Lady Gaga -Chinese New Year 2018 -Government Shutdown -Chinese New Year 2018 -Super Bowl 2018 -Kylie Jenner -Adam Rippon -Winter Olympics -Peter Rabbit -Happy Valentines Day -Jeremy London -Carter G. Woodson -Elizabeth Blackwell -Winter Olympics -Cnbc -Super Bowl 2018 -Kim Kardashian -Naya Rivera -Bill Paxton -Quincy Jones -Paula Modersohn-Becker -Louise Linton -Government Shutdown -Fredo Santana -CNN -calculator -Patriots -Super Bowl 2018 -Elizabeth Blackwell -Virginia Woolf -Super Bowl 2018 -Super Bowl score -Laura Ingraham -Super Bowl 2018 -Carter G. Woodson -Paula Modersohn-Becker -Black Panther -Alaska earthquake -Vikings Vs Eagles -Kylie Jenner -Sergei Eisenstein -national signing day 2018 -Super Bowl 2018 -Super Bowl 2018 -Carter G. Woodson -Virginia Woolf -Carter G. Woodson -Kim Kardashian -Olympic medal count -What Time Is The Super Bowl -Virginia Woolf -Happy Valentines Day -Champions League -Wilder Penfield -School Closings -Kylie Jenner -Shiffrin -Paula Modersohn-Becker -New England Patriots owner -Patriots -Alaska earthquake -Wilder Penfield -What Time Is The Super Bowl -SpaceX -New England Patriots owner -Wilder Penfield -Olympic medal count -Shaun White -Elizabeth Blackwell -Black Panther -Elizabeth Blackwell -Wilder Penfield -Omarosa -Justin Timberlake -Kentucky shooting -Paula Modersohn-Becker -Florida shooting -Dow Jones -Elizabeth Blackwell -Patriots -Government Shutdown -Kim Kardashian -Virginia Woolf -Kim Kardashian -Paula Modersohn-Becker -Florida shooting -XFL -Sergei Eisenstein -Rihanna -Isaiah Thomas -Winter Olympics -Wilder Penfield -Carter G. Woodson -Government shutdown -Tom Brady -Norovirus -Riverdale -Nba All Star 2018 -Paula Modersohn-Becker -Patriots -Patriots -Happy Valentines Day -Paula Modersohn-Becker -Wilder Penfield -Justin Timberlake -Houston Rockets -Rasual Butler -Shaun White -Winter Olympics -Super Bowl 2018 -Wilder Penfield -Florida shooting -Release The Memo -Super Bowl 2018 -Carter G. Woodson -Betty White -Super Blue Blood Moon -Montreal Cognitive Assessment -Justin Timberlake -Elizabeth Blackwell -Memo -Happy Valentines Day -SpaceX -Kratom -Johnny Weir -Elizabeth Blackwell -Paula Modersohn-Becker -Bill Paxton -Joshua Cooper Ramo -Maddie Mastro -Elizabeth Blackwell -Rodney Hood -Roger Federer -Florida shooting -Government Shutdown 2018 -Kim Kardashian -Lil Pump -Super Bowl 2018 -Kentucky shooting -Justin Timberlake -Cavs -Cloverfield Paradox -Terrell Owens -Sergei Eisenstein -SpaceX -Carter G. Woodson -Government shutdown 2018 -Ash Wednesday -Super Bowl 2018 -Fredo Santana -Kylie Jenner -Mark Salling -Carter G. Woodson -Wilder Penfield -Super blue blood Moon -Florida shooting -Elizabeth Blackwell -Kylie Jenner -Mark Salling -Happy Valentines Day -Super Bowl 2018 -Google Drive -Adam Rippon -Florida shooting -Robinhood -Chief Wahoo -Sergei Eisenstein -Forever My Girl -Super Bowl 2018 -Timor Leste -Bode Miller -Black Panther -Super Bowl 2018 -NASA -School Closings -Winter Olympics -earthquake today -Kylie Jenner -Caroline Wozniacki -Shani Davis -Venom -Super Bowl score -Carrie Underwood -Best Superbowl Commercials 2018 -12 Strong -Vikings Vs Eagles -Lindsey Vonn -Florida shooting -SpaceX -Super Bowl score -Carter G. Woodson -NHL All Star Game -Grammys 2018 -Vikings Vs Eagles -Super Bowl score -Ursula Le Guin -Alaska earthquake -NFC Championship Game 2018 -Winter Olympics -Josh McDaniels -Super Bowl score -Google docs -Luke Wilson -NBA Trades -Carter G. Woodson -Sergei Eisenstein -Kylie Jenner -Daryle Singletary -Virginia Woolf -Carter G. Woodson -Carter G. Woodson -Grammys 2018 -Patriots -Government Shutdown Meaning -Super Bowl score -Super blue blood Moon -Paula Modersohn-Becker -Eli Manning -Olympic Medal Count -Super Bowl score -NBA Trades -Carter G. Woodson -State of the Union -Danielle Herrington -H&r Block -Blue Ivy -Memo -Wilder Penfield -Carter G. Woodson -calculator -Elizabeth Blackwell -SpaceX -Super Bowl score -Release The Memo -Patriots -Virginia Woolf -Groundhog Day 2018 -Patriots -Larry Nassar -Super Bowl 2018 -Winter Olympics -Patriots -What Time Is The Super Bowl -Justin Timberlake -Carter G. Woodson -school closings -Tom Petty -Carter G. Woodson -Sergei Eisenstein -Winter Olympics -Super Bowl 2018 -Carter G. Woodson -Virginia Woolf -Amtrak -Super blue blood Moon -Patriots -Super Bowl 2018 -February -Bernie Sanders -Rasual Butler -What Time Is The Super Bowl -Dwyane Wade -SpaceX -Elizabeth Blackwell -Real Madrid -Kylie Jenner -Sergei Eisenstein -This Is Us -Royal Rumble 2018 -Super Bowl Commercials 2018 -Elizabeth Blackwell -Justin Timberlake -Winter Olympics -Government Shutdown -Kesha -Olympic medal count -Pro Bowl 2018 -Super Blue Blood Moon -Valentines Day -Google docs -Vikings Vs Eagles -Wilder Penfield -school closings -Dow Jones -Super Bowl score -Andrew Cunanan -Larry Nassar -What Time Is The Super Bowl -State of the Union -Groundhog Day 2018 -Juegos Olímpicos de Invierno 2018 -Johnny Weir -Wilder Penfield -Paula Modersohn-Becker -Carter G. Woodson -Dow Jones -Presidents Day 2018 -Tiger Woods -Patriots -What Time Is The Super Bowl -Oar Olympics -Super Bowl score -Carter G. Woodson -Nikki Haley -Wilder Penfield -Hope Hicks -Super Bowl 2018 -Super Bowl score -Florida shooting -calculator -Classroom -Wilder Penfield -Kylie Jenner -Florida shooting -Florida shooting -Memo -Government Shutdown Meaning -Adam Rippon -SpaceX -DeMarcus Cousins -fake news awards -Wonder Woman -Ohio State basketball -calculator -Government shutdown 2018 -Wilder Penfield -Chinese New Year 2018 -Happy Valentines Day -Winter Olympics -Virginia Woolf -Patriots -Rasual Butler -Joe Kennedy -Casey Affleck -Oscar Nominations 2018 -Rihanna -This Is Us -Super Bowl score -The Home Depot -Sergei Eisenstein -Sergei Eisenstein -Carter G. Woodson -Carter G. Woodson -Andre Roberson -Paula Modersohn-Becker -Virginia Woolf -Altered Carbon -Winter Olympics -Mark Salling -Super Bowl 2018 -Jennifer Aniston -Earthquake Today -Olympic medal count -Childish Gambino -Harley Barber -Elizabeth Blackwell -Larry Nassar -Super Bowl score -Royal Rumble 2018 -Elizabeth Blackwell -XFL -Carter G. Woodson -Bob Dole -What Time Is The Super Bowl -Paula Modersohn-Becker -Virginia Woolf -SpaceX -Super blue blood Moon -Cloverfield Paradox -Virginia Woolf -Bitcoin Price -Esteban Loaiza -Kodak Black -Winter Olympics -Happy Valentines Day -Camila Cabello -Paula Modersohn-Becker -Eric Wood -Florida shooting -Sabrina Dhowre -Carter G. Woodson -Super Bowl Commercials -Florida shooting -Chris Mazdzer -Solo Trailer -Carter G. Woodson -Cloverfield Paradox -Elton John -Super blue blood Moon -Super Bowl 2018 -Shaun White -Grammys 2018 -Casey Affleck -Winter Olympics -Wilder Penfield -Kawhi Leonard -Nintendo Labo -Elizabeth Blackwell -Elizabeth Blackwell -Elizabeth Blackwell -Michigan State -Dolly Parton -Happy Valentines Day -Tom Petty -Patriots -Grammys 2018 -Sergei Eisenstein -Sergei Eisenstein -Elizabeth Blackwell -Shibutani -Grammys 2018 -Wilder Penfield -Carter G. Woodson -Oscar Nominations 2018 -Alexa Commercial -Kylie Jenner -Wilder Penfield -Bitcoin Price -Florida shooting -Obama portrait -Happy Valentines Day -Amazon HQ2 -Chloe Kim -Juventus -Wilder Penfield -Sergei Eisenstein -Florida shooting -Elizabeth Blackwell -Super Bowl score -Grammys 2018 -Jen Selter -Edwin Jackson -Paula Modersohn-Becker -SpaceX -Sandy Hook -Super Bowl 2018 -Mikaela Shiffrin -Super Bowl score -Florida shooting -Paula Modersohn-Becker -Mark E Smith -Super Bowl score -Joe Kennedy -Grey's Anatomy -Grammys 2018 -Super Bowl Commercials 2018 -Government Shutdown -Sabrina Dhowre -Winter Olympics -Women's March 2018 -Will Ferrell -Sergei Eisenstein -Super Bowl 2018 -Happy Valentines Day -Kelly Clark -Florida shooting -Bitcoin Price -What Time Is The Super Bowl -Florida shooting -Winter Olympics -Olympic medal count -Google Classroom -Cavs -Sting -Super Bowl score -Super Bowl Winners -What Time Is The Super Bowl -Super Bowl 2018 -Paula Modersohn-Becker -Virginia Woolf -Dow Jones -national signing day 2018 -Elizabeth Blackwell -Toys R Us -Robert Mueller -Virginia Woolf -Chloe Kim Snowboarder -Waco -Carter G. Woodson -Virginia Woolf -Carter G. Woodson -Kim Cattrall -Quincy Jones -Kratom -What Time Is The Super Bowl -Florida shooting -Paula Modersohn-Becker -Alex Smith -Vikings Vs Eagles -Black Panther -government shutdown -Government Shutdown Meaning -Shaun White -Hostiles -Scott Baio -Super Bowl 2018 -Chris Stapleton -Kylie Jenner -Paula Modersohn-Becker -School Closings -Patriots -Paula Modersohn-Becker -SpaceX -Carter G. Woodson -Kim Kardashian -Joshua Cooper Ramo -Wilder Penfield -Rampage -Rasual Butler -Release The Memo -Virginia Woolf -What Time Is The Super Bowl -Grammys 2018 -Lunar eclipse -Royal Rumble 2018 -Wilder Penfield -Black Panther -Super Bowl 2018 -Rose McGowan -Kentucky shooting -Childish Gambino -Government Shutdown -Super Bowl score -Sergei Eisenstein -Hope Hicks -Elton John -Elizabeth Blackwell -Super Bowl score -Sergei Eisenstein -Gus Kenworthy -Taiwan Earthquake Today -Paula Modersohn-Becker -Carter G. Woodson -Government Shutdown Meaning -State of the Union -Sergei Eisenstein -Kesha -What Time Is The Super Bowl -Justin Timberlake -Brie Larson -Camila Cabello -Virginia Woolf -Sergei Eisenstein -This Is Us -Andrew McCabe -Jennifer Aniston -PlayStation Network -Childish Gambino -Shaun White -Patriots -Sting -Elizabeth Blackwell -Winter Olympics -Google Drive -Shaun White -Super Bowl score -Justin Timberlake -Did the Groundhog See His Shadow -Alessia Cara -Black Panther -Sergei Eisenstein -Kratom -Alaska earthquake -Carter G. Woodson -Wilder Penfield -Earthquake Today -Wilder Penfield -government shutdown -Cloverfield Paradox -Super Bowl score -Wilder Penfield -Memo -Super Bowl 2018 -Patriots -Patriots -Vikings Vs Eagles -Did the Groundhog See His Shadow -Florida shooting -Paula Modersohn-Becker -Paula Modersohn-Becker -New England Patriots owner -Mark Salling -Virginia Woolf -Super Bowl score -Winter Olympics -Winter Olympics -Carter G. Woodson -Carter G. Woodson -Super Bowl 2018 -Patriots -Groundhog Day 2018 -Grammys 2018 -Florida shooting -Super Bowl 2018 -SpaceX -Carter G. Woodson -Carter G. Woodson -Fredo Santana -Ash Wednesday -Fredo Santana -Carter G. Woodson -Super Bowl score -This Is Us -Super Bowl 2018 -Tesla in space -Virginia Woolf -Grammys 2018 -Elizabeth Blackwell -Grammys 2018 -Zuleyka Rivera -Shaun White -Stormi -What Time Is The Super Bowl -Virginia Woolf -Super Bowl score -Sergei Eisenstein -Aaron Fies -Larry Nassar -Kentucky shooting -Winter Olympics -Quentin Tarantino -Obama portrait -Grammys 2018 -Gianni Versace -Google docs -Carter G. Woodson -Government Shutdown -Winter Olympics -SpaceX -Alex Smith -NBA Trades -Oscar Nominations 2018 -Mexico -Winter Olympics -Super Bowl score -Super Bowl 2018 -Winter Olympics -Shaun White -Virginia Woolf -Government Shutdown -CNN -Black Panther -Patriots -Drive -Oscar Nominations 2018 -Rose McGowan -Olympic Medal Count -Olivia Munn -Super Bowl score -Super Bowl score -Rob Gronkowski -Wilder Penfield -Jimmy Garoppolo -What Time Is The Super Bowl -Sergei Eisenstein -Virginia Woolf -State of the Union -Grammys 2018 -Virginia Woolf -Groundhog Day 2018 -Wilder Penfield -Groundhog Day 2018 -Government shutdown 2018 -Elizabeth Blackwell -Wilder Penfield -Red Gerard -Patriots -Black Panther -Super Bowl 2018 -Melania Trump -Wilder Penfield -Super Bowl 2018 -Super Bowl Commercials 2018 -The Resident -Winter Olympics -Patriots -Rose McGowan -Super Bowl score -The Resident -Robert Wagner -UFC 220 -calculator -Kylie Jenner -Prince William -Paula Modersohn-Becker -Camila Cabello -Super Bowl score -Winter Olympics -Edible Arrangements -Patriots -Aliona Savchenko -Reg E Cathey -Celebrity Big Brother cast -Wilder Penfield -Olivia Munn -Champions League -Natalie Wood -Fb Stock -Patriots -Super Bowl score -Paula Modersohn-Becker -Rose McGowan -What Time Is The Super Bowl -SpaceX -Government shutdown 2018 -Kentucky shooting -Super Bowl 2018 -Amy Schumer -Winter Olympics -Super Bowl Commercials 2018 -Wilder Penfield -Quincy Jones -Sergei Eisenstein -Chloe Kim -Chinese New Year 2018 -Google Classroom -Super Bowl score -Florida shooting -Super Bowl score -UFC 220 -Tonga -Elizabeth Blackwell -Wilder Penfield -United States Of America Winter Olympics -Joe Kennedy -Elizabeth Blackwell -Florida shooting -Sergei Eisenstein -Paula Modersohn-Becker -SpaceX -Super Bowl 2018 -Lonzo Ball -Champions League -Elizabeth Blackwell -Virginia Woolf -Super Bowl 2018 -Grammys 2018 -Super Bowl 2018 -Patriots -Elizabeth Blackwell -Anna Kournikova -Winter Olympics -Elton John -Lil Xan -Korea -Jemele Hill -NBA Trades -New England Patriots owner -Super blue blood Moon -What Time Is The Super Bowl -Rasual Butler -Vikings Vs Eagles -Rasual Butler -Solo Trailer -NBA Trades -Florida shooting -Super Bowl 2018 -Maze Runner: The Death Cure -Shaun White -What Time Is The Super Bowl -Carter G. Woodson -SpaceX -Government Shutdown -Wilder Penfield -Sergei Eisenstein -State of the Union -Call Me by Your Name -Sammy Sosa -Super Bowl 2018 -Yoel Romero -Happy Valentines Day -Johnny Weir -Winter Olympics -Wilder Penfield -Shaun White -Patriots -Carter G. Woodson -Super Bowl 2018 -Den of Thieves -Super Bowl 2018 -Carter G. Woodson -Cloverfield Paradox -Patriots -Florida shooting -What Time Is The Super Bowl -Paula Modersohn-Becker -What Time Is The Super Bowl -UFC 220 -SpaceX -Bill Paxton -Dow Jones -Did the Groundhog See His Shadow -calculator -Winter Olympics -Tonga -Larry Nassar -Sergei Eisenstein -Kylie Jenner -Larry Nassar -Government Shutdown 2018 -Grammys 2018 -Alaska earthquake -Carter G. Woodson -Melania Trump -Caroline Wozniacki -Chrissy Teigen -Kylie Jenner -Government shutdown -Super Bowl 2018 -Reg E Cathey -DeMarcus Cousins -Super Bowl 2018 -Happy Valentines Day -Super Bowl score -The Home Depot -Grammys 2018 -Wilder Penfield -Patriots -Chloe Kim -Steve Wynn News -Sergei Eisenstein -Super Bowl 2018 -Government shutdown -Florida shooting -Kentucky shooting -Florida shooting -Virginia Woolf -Kesha Grammy -Julie Bowen -Grammys 2018 -Kylie Jenner -Winter Olympics -Mardi Gras 2018 -SpaceX -Super Bowl score -Ursula Le Guin -Super blue blood Moon -Montreal Cognitive Assessment -Patriots -Groundhog Day 2018 -Patriots -Isaiah Thomas -Patriots -Florida shooting -What Time Is The Super Bowl -Blue Ivy -Solo Trailer -Meteor -The 15:17 to Paris -Camila Cabello -Blake Griffin -Super Bowl 2018 -Black Panther -Enzo Amore -Alex Smith -Paula Modersohn-Becker -Sergei Eisenstein -Shaun White -Justin Timberlake -Presidents Day 2018 -State of the Union -Elizabeth Blackwell -Groundhog Day 2018 -Ash Wednesday -Super Bowl score -Happy Valentines Day -Patriots -Roger Federer -Obama portrait -Sergei Eisenstein -Virginia Woolf -Solo Trailer -Kim Kardashian -Carter G. Woodson -Super Bowl score -Super Bowl 2018 -NHL All Star Game -National Pizza Day -John Mahoney -NBA Trades -Riverdale -Kylie Jenner Baby Girl -Amy Schumer -Amazon HQ2 -calculator -Paula Modersohn-Becker -Valentines Day -Cavs -United States Of America Winter Olympics -Larry Nassar -Carter G. Woodson -Valentines Day -Grammys 2018 -Paula Modersohn-Becker -Google docs -Sergei Eisenstein -Grammys 2018 -Wilder Penfield -Government Shutdown -Winchester -Florida shooting -Winter Olympics -Kylie Jenner -Justin Timberlake -Super Bowl 2018 -XFL -Bob Dole -Justin Timberlake -Kentucky shooting -Super Blue Blood Moon -Carter G. Woodson -Florida shooting -Florida shooting -Virginia Woolf -Louise Linton -Jessica Chastain -State of the Union -Steve Wynn -Amy Schumer -Columbine Shooting -Fredo Santana -Deadpool 2 -Paula Modersohn-Becker -Chicago West -Super Bowl 2018 -Amy Schumer -Megan Barry -stock market -Sergei Eisenstein -Adam Rippon -Rett Syndrome -Kylie Jenner -Paula Modersohn-Becker -CNN -Happy Valentines Day -Football Playoffs 2018 -Winter Olympics -Elizabeth Blackwell -Neil Diamond -Super Bowl score -Carter G. Woodson -Kentucky shooting -Winter Olympics -Real Madrid -Omarosa -Football Playoffs 2018 -Mikaela Shiffrin -NBA Trades -Florida shooting -Alaska earthquake -school closings -Virginia Woolf -Ellen DeGeneres -Devin Nunes -Dow Jones -Chicago West -Elizabeth Blackwell -Virginia Woolf -Super Bowl score -Blake Griffin -Florida shooting -Joe Kennedy -Celtics -Robert Mueller -Shaun White -Super Bowl Winners -Kim Kardashian -Paula Modersohn-Becker -Patriots -Blood Moon -Super Bowl 2018 -Turpin -Kawhi Leonard -Elizabeth Blackwell -Paula Modersohn-Becker -Kristaps Porzingis -Patriots -Sergei Eisenstein -Happy Valentines Day -Justin Timberlake -Elizabeth Blackwell -Grammys 2018 -Justin Timberlake -Mark Salling -Kylie Jenner -Mardi Gras 2018 -Larry Nassar -Kristaps Porzingis -Oscar Nominations 2018 -Grammys 2018 -Sergei Eisenstein -Vikings Vs Eagles -Justin Timberlake -Virginia Woolf -Carter G. Woodson -Olive Garden -Valentines Day -Nintendo Labo -Paula Modersohn-Becker -Larry Nassar -Elizabeth Blackwell -Oscar Nominations 2018 -Elizabeth Blackwell -Elizabeth Blackwell -Winter Olympics -Groundhog Day 2018 -Zuleyka Rivera -Virginia Woolf -Virginia Woolf -Pro Bowl 2018 -Doomsday Clock -Solo Trailer -Justin Timberlake -Carter G. Woodson -Super Bowl 2018 -Anna Kournikova -Black Panther -Rasual Butler -Jeremy London -Jennifer Aniston -Deadpool 2 -Alison Brie -fake news awards -Elizabeth Blackwell -Google docs -Den of Thieves -Virginia Woolf -Larry Nassar -Kylie Jenner -Patriots -Florida shooting -Florida shooting -Trump State of the Union -Paula Modersohn-Becker -Paula Modersohn-Becker -Florida shooting -Grammys 2018 -Peter Rabbit -Super Bowl score -Dolly Parton -SpaceX -Virginia Woolf -Wilder Penfield -Tom Izzo -Super Bowl 2018 -All Star Weekend 2018 -Trump State of the Union -John Mahoney -Virginia Woolf -Wilder Penfield -New England Patriots owner -Super Bowl score -Virginia Woolf -Carter G. Woodson -Sergei Eisenstein -Wilder Penfield -Government Shutdown 2018 -Jennifer Aniston -Grammys 2018 -Alessia Cara -Super Bowl 2018 -Paula Modersohn-Becker -Super blue blood Moon -Paula Modersohn-Becker -Wilder Penfield -SpaceX -Virginia Woolf -Alex Smith -Super Bowl score -Elizabeth Blackwell -Justin Timberlake -Valentines Day -Wilder Penfield -New England Patriots owner -Winter Olympics -Caroline Wozniacki -Sergei Eisenstein -Florida shooting -Groundhog Day 2018 -Altered Carbon -Government shutdown 2018 -Grammys 2018 -Kylie Jenner -Super Bowl 2018 -Sergei Eisenstein -Kim Cattrall -Sergei Eisenstein -Elon Musk -Phantom Thread -Carter G. Woodson -Super Bowl score -School Closings -Kate Upton -Winter Olympics -Super Bowl score -Camila Cabello -Super blue blood Moon -Government Shutdown -Paula Modersohn-Becker -Florida shooting -Elizabeth Blackwell -Jacob Copeland -government shutdown -Wilder Penfield -Carter G. Woodson -Roger Federer -Elizabeth Blackwell -Kelsey Grammer -Dane Cook -Dwyane Wade -Valentines Day -Brynn Cameron -SpaceX -Grammys 2018 -Government Shutdown -Paula Modersohn-Becker -Virginia Woolf -Florida shooting -Kylie Jenner -Wilder Penfield -Bitcoin Price -Chris Paul -XFL -Tyler Hilinski -Vikings Vs Eagles -Wilder Penfield -Grammys 2018 -Stock Market Crash Today -Florida shooting -Florida shooting -Patti LuPone -Carter G. Woodson -Blake Griffin -Bradie Tennell -Winter Olympics -Sarah Barthel -Kris Dunn -SpaceX -Government Shutdown -XFL -Sergei Eisenstein -NBA Trades -Black Panther -Patriots -What Time Is The Super Bowl -Obama portrait -SpaceX -Winter Olympics -Alex Reimer -Puppy Bowl 2018 -Mark Salling -Grammys 2018 -Winter Olympics -Adam Rippon -Post Malone -Wilder Penfield -Shaun White -Dow Jones -Blake Griffin -Earthquake -Blood Moon -Google Classroom -Winter Olympics -Government Shutdown Meaning -State of the Union -Carter G. Woodson -Kylie Jenner -Adam Rippon -Justin Timberlake -Alexa Commercial -Wilder Penfield -School closings -Sergei Eisenstein -Portia de Rossi -SpaceX -Super Bowl 2018 -Nikki Haley -Memo -Florida shooting -SpaceX -Super Bowl 2018 -Blue Moon -Camila Cabello -Google docs -What Time Is The Super Bowl -Super blue blood Moon -Den of Thieves -Tom Petty -Royal Rumble 2018 -Happy Valentines Day -Paula Modersohn-Becker -Larry Nassar -Omarosa -Kylie Jenner -Groundhog Day 2018 -Oar Olympics -Kylie Jenner -Olympic medal count -Patriots -Florida shooting -Elizabeth Blackwell -earthquake today -Jimmy Kimmel -Virginia Woolf -Super blue blood Moon -Kevin Love -Super Bowl 2018 -Super Bowl 2018 -Super Bowl 2018 -Super Bowl score -Florida shooting -Winter Olympics -Larry Nassar -school closings -Joe Kennedy -Paula Modersohn-Becker -school closings -National Pizza Day -Super Bowl score -Government shutdown 2018 -Paula Modersohn-Becker -Winter Olympics -Kylie Jenner -Puppy Bowl 2018 -KSI Vs Weller -Winter Olympics -Elizabeth Blackwell -Patriots -Solo Trailer -Kim Kardashian -Paula Modersohn-Becker -Kentucky shooting -SpaceX -Patriots -Isaiah Thomas -Sergei Eisenstein -Sergei Eisenstein -Super blue blood Moon -Mr Rogers -UFC 220 -Uma Thurman -Edwin Jackson -XFL -Paula Modersohn-Becker -Sergei Eisenstein -Elizabeth Blackwell -Patriots -Yura Min -Drive -Justin Timberlake -Virginia Woolf -Lunar eclipse -Elizabeth Blackwell -Elizabeth Blackwell -Sergei Eisenstein -Super Bowl 2018 -Carter G. Woodson -Kylie Jenner Baby Girl -Paula Modersohn-Becker -Wilder Penfield -Bill Parcells -Carter G. Woodson -Patriots -Montgomery County Public Schools -Kylie Jenner -Carter G. Woodson -Carter G. Woodson -Ohio State basketball -Kentucky shooting -This Is Us -Kesha -Steve Mcnair -Pink -Florida shooting -Anastasia Bryzgalova -Samson -Sabrina Dhowre -Government Shutdown -Friends The Movie 2018 -Alaska earthquake -Government Shutdown -Neil Diamond -Jessica Chastain -Wilder Penfield -Mardi Gras 2018 -What Time Is The Super Bowl -Wilder Penfield -Grammys 2018 -Black Panther -Patriots -Oscar Nominations 2018 -SAG Awards 2018 -Carter G. Woodson -Florida shooting -Super blue blood Moon -Virginia Woolf -Johnny Weir -Mark Salling -Super Bowl Commercials -stock market -Government shutdown -Obama portrait -Justin Timberlake -Champions League -Kylie Jenner -Sergei Eisenstein -Evgenia Medvedeva -Paula Modersohn-Becker -State of the Union -Florida shooting -Carter G. Woodson -Carter G. Woodson -NASCAR -Winter Olympics -Elton John -Super Bowl 2018 -Super Bowl score -Cherry Seaborn -Cloverfield Paradox -Government Shutdown Meaning -Justin Timberlake -Groundhog Day 2018 -Bob Dole -Shaun White -SpaceX -Super Bowl 2018 -Kentucky shooting -Justin Timberlake -Elizabeth Blackwell -NSA -Roger Federer -Carter G. Woodson -Virginia Woolf -Joel Taylor -Kim Kardashian -Isaiah Thomas -Virginia Woolf -Johnny Weir -Did the Groundhog See His Shadow -Sergei Eisenstein -Kylie Jenner -Ash Wednesday -State of the Union -Kim Cattrall -Paula Modersohn-Becker -Patriots -Steve Wynn -Virginia Woolf -Mardi Gras 2018 -Patriots -Super Bowl 2018 -Meteor -Virginia Woolf -Kristaps Porzingis -Super Bowl score -Wilder Penfield -Super Bowl score -Chicago West -Elizabeth Blackwell -Elizabeth Blackwell -Shaun White -State of the Union -Florida shooting -Kate Upton -Carter G. Woodson -fake news awards -Roger Federer -Elizabeth Blackwell -Kentucky shooting -Shaun White -Justin Timberlake -Jason Momoa -AFC Championship Game 2018 -Wilder Penfield -Winter Olympics -Justin Timberlake -Nintendo Labo -UFC 220 -Elizabeth Blackwell -Obama portrait -Matt Patricia -Florida shooting -Quincy Jones -Elizabeth Blackwell -Memo -Carter G. Woodson -Ash Wednesday -Sergei Eisenstein -Government shutdown 2018 -Super Bowl 2018 -Justin Timberlake -Patriots -Carter G. Woodson -United States Of America Winter Olympics -Patriots -Florida shooting -Blake Griffin -Kylie Jenner Baby Girl -Lorenzo Cain -Wilder Penfield -Happy Valentines Day -Kylie Jenner -Patriots -Cavs -Winter Olympics -Mark Salling -Super Bowl 2018 -SpaceX -Elton John -Trump State of the Union -Florida shooting -Super Bowl score -Winter Olympics -Florida shooting -Trump State of the Union -Paula Modersohn-Becker -Elton John -Elizabeth Blackwell -Elizabeth Blackwell -Virginia Woolf -Super Blue Blood Moon -Florida shooting -Virginia Woolf -Robert Mueller -Super Bowl 2018 -Yahoo Finance -Super Bowl score -Carter G. Woodson -Virginia Woolf -What Time Is The Super Bowl -Patriots -Oscar Nominations 2018 -Super Bowl score -Justin Timberlake -Dow Jones -Patriots -Patriots -Jimmy Garoppolo -Super Bowl score -UFC 220 -Sergei Eisenstein -Carter G. Woodson -Royal Rumble 2018 -Black Panther -Nancy Pelosi -Dwyane Wade -Mike Vrabel -Chloe Kim -Oscar Nominations 2018 -SpaceX -Fifty Shades Freed -Monster Hunter World -James Maslow -Bitcoin Price -Grammys 2018 -Wilder Penfield -Winter Olympics -Winter Olympics -Florida shooting -Super Bowl 2018 -Mardi Gras 2018 -Wilder Penfield -Russell Wilson -Wilder Penfield -Alex Smith -Sergei Eisenstein -Grammys 2018 -Wilder Penfield -XFL -Carter G. Woodson -Carter G. Woodson -Paula Modersohn-Becker -Super blue blood Moon -Chinese New Year 2018 -Super Bowl 2018 -Nintendo Labo -Super Bowl 2018 -Super Bowl score -Winter Olympics -Super Bowl 2018 -Grammys 2018 -Winter Olympics -Sergei Eisenstein -Valentines Day Images -Chloe Kim -Patriots -Black Panther -Paula Modersohn-Becker -Google docs -Adam Rippon -Elizabeth Blackwell -calculator -Winter Olympics -Rasual Butler -Blake Griffin -Columbine Shooting -Champions League -Black Panther -Virginia Woolf -Valentines Day -Virginia Woolf -Sergei Eisenstein -Jo Jo White -Dwyane Wade -XFL -Kylie Jenner -Elizabeth Blackwell -Florida shooting -Obama portrait -Virginia Woolf -Government Shutdown -Patriots -New England Patriots owner -SAG Awards 2018 -Kylie Jenner -Virginia Woolf -Steven Tyler -Rihanna -Larry Nassar -Virginia Woolf -Forever My Girl -Patriots -Super blue blood Moon -Virginia Woolf -Cryptocurrency News -Virginia Woolf -State of the Union -Dragon Ball Super -Super Bowl score -Black Panther -Government Shutdown -Cnbc -Virginia Woolf -Grammys 2018 -Super Bowl score -Super Bowl 2018 -Paula Modersohn-Becker -Chinese New Year 2018 -Arsenal -Super Bowl 2018 -Shibutani -SZA -Larry Nassar -Patriots -Wilder Penfield -Women's March 2018 -Super blue blood Moon -Chicago West -Paula Modersohn-Becker -Winter Olympics -Elizabeth Blackwell -Jason Kelce -Sergei Eisenstein -Sergei Eisenstein -Mark Salling -Super Bowl score -Wilder Penfield -Florida shooting -Oscar Nominations 2018 -Mark Salling -NSA -Wilder Penfield -Shaun White -SpaceX -Sergei Eisenstein -Virginia Woolf -Virginia Woolf -Chloe Kim -Mark Salling -Sergei Eisenstein -UFC 220 -What Time Is The Super Bowl -Virginia Woolf -Elon Musk -Pro Bowl 2018 -Rasual Butler -Norovirus -What Time Is The Super Bowl -Paula Modersohn-Becker -Frank Reich -Steven Tyler -Patti LuPone -Highline College -Blue Moon -Simona Halep -Mark Salling -Elizabeth Blackwell -Virginia Woolf -Royal Rumble 2018 -Elizabeth Blackwell -Alaska earthquake -Amtrak -SpaceX -NBC Sports -Reg E Cathey -Johnny Weir -Amy Schumer -Virginia Woolf -Sergei Eisenstein -Patriots -Meteor -Royal Rumble 2018 -Elizabeth Blackwell -Kylie Jenner -Carter G. Woodson -Solo Trailer -Football Playoffs 2018 -Super Bowl 2018 -Elizabeth Blackwell -John Mahoney -Conor McGregor -Johnny Manziel -SpaceX -Alex Smith -Conor McGregor -Elizabeth Blackwell -Google Drive -Grammys 2018 -Patriots -Tomi Lahren -Florida shooting -Mardi Gras 2018 -Mark Salling -Naya Rivera -Virginia Woolf -Winchester -Lil Pump -CBS Sports -Lee Miglin -Grammys 2018 -Montreal Cognitive Assessment -Valentines Day -Government Shutdown -Turpin -Google Classroom -Winter Olympics -Justin Timberlake -Chris Long -luge -Oscar Nominations 2018 -Virginia Woolf -SpaceX -Paula Modersohn-Becker -Roger Federer -Jennifer Aniston -SpaceX -Government Shutdown -Dwyane Wade -Trump State of the Union -Sergei Eisenstein -Highline College -Oscar Nominations 2018 -Puppy Bowl 2018 -Grammys 2018 -Florida shooting -Tony Romo -Virginia Woolf -Paula Modersohn-Becker -SAG Awards 2018 -Florida shooting -Super Bowl 2018 -Florida shooting -tsunami -Carter G. Woodson -Government shutdown 2018 -Joy Villa -Paula Modersohn-Becker -Hailee Steinfeld -Super Bowl score -SpaceX -Carter G. Woodson -School Closings -national signing day 2018 -Paula Modersohn-Becker -Google Drive -Trump Hair -Jason Kelce -Den of Thieves -Elizabeth Blackwell -Super Bowl score -Solo Trailer -Costco Wholesale -NBC Sports -Paula Modersohn-Becker -Memo -Kylie Jenner Baby Girl -Patriots -Bill Belichick -Wing Bowl 2018 -Pro Bowl 2018 -Kylie Jenner -Sergei Eisenstein -12 Strong -XFL -Winter Olympics -Dow Jones -Google docs -Cloverfield Paradox -Trump Hair -Florida shooting -Winter Olympics -State of the Union -Wilder Penfield -Royal Rumble 2018 -Carter G. Woodson -Sergei Eisenstein -UFC 220 -Wilder Penfield -Lena Zawaideh -Mark Salling -Mark Salling -Trey Gowdy -The 15:17 to Paris -Sergei Eisenstein -Super Bowl score -Government shutdown 2018 -Chicago Weather -Justin Timberlake -Robert Mueller -Cherry Seaborn -Chicago West -Dow Jones -Google Classroom -Virginia Woolf -Harley Barber -Paula Modersohn-Becker -Cloverfield Paradox -Oscar Nominations 2018 -Dow Jones -Sergei Eisenstein -BitConnect -Shiffrin -SAG Awards 2018 -calculator -Turpin -Trump State of the Union -XFL -AR-15 -Dwyane Wade -Wilder Penfield -Incredibles 2 -Wilder Penfield -Patriots -Happy Valentines Day -Winter Olympics -Paula Modersohn-Becker -Duke basketball -Government Shutdown -Virginia Woolf -What Time Is The Super Bowl -Winter Olympics -Sergei Eisenstein -Sergei Eisenstein -Joe Kennedy -Grammys 2018 -Virginia Woolf -Super Bowl score -Dow Jones -Florida shooting -SpaceX -Winter Olympics -calculator -What Time Is The Super Bowl -Wilder Penfield -Roger Federer -Patti LuPone -Winter Olympics -Duke Basketball -Florida shooting -Terrell Owens -Duke Basketball -Daryle Singletary -Government Shutdown 2018 -Kylie Jenner -Virginia Woolf -Virginia Woolf -Kentucky shooting -Shaun White -Olympic medal count -What Time Is The Super Bowl -Wilder Penfield -Paula Modersohn-Becker -Patriots -Amy Schumer -Kelly Clark -Justin Timberlake -Super Bowl score -Brynn Cameron -Elton John -Doomsday Clock -Valentines Day -Florida shooting -Elton John -Happy Valentines Day -Black Panther -Elizabeth Blackwell -Lunar eclipse -Chrissy Teigen -Super Bowl score -Wilder Penfield -Kylie Jenner -Carter G. Woodson -Winter Olympics -Patriots -Elizabeth Blackwell -Virginia Woolf -Joe Kennedy -Paula Modersohn-Becker -Virginia Woolf -Super Bowl 2018 -Groundhog Day 2018 -CNN -Patti LuPone -Celtics -Wilder Penfield -Johnny Weir -State of the Union -Grammys 2018 -Carter G. Woodson -Winter Olympics -Super Bowl 2018 -Florida shooting -Vikings Vs Eagles -Sergei Eisenstein -Sergei Eisenstein -Wilder Penfield -Kim Kardashian -Lakers -Justin Timberlake -Wilder Penfield -Carter G. Woodson -Patriots -Sea Of Thieves -XFL -Winter Olympics -Sergei Eisenstein -UFC 220 -NBA Trades -Super blue blood Moon -Hillary Clinton -Shani Davis -Greg Monroe -Elizabeth Blackwell -Elizabeth Blackwell -Florida shooting -Elizabeth Blackwell -Grammys 2018 -Elizabeth Blackwell -Super Bowl score -Cloverfield Paradox -Steve Mcnair -Elizabeth Blackwell -What Time Is The Super Bowl -Wilder Penfield -Florida shooting -Isaiah Canaan -Despacito -Wilder Penfield -Real Madrid -Vikings Vs Eagles -Edible Arrangements -Super Bowl 2018 -Elizabeth Blackwell -Adam Rippon -Jennifer Aniston -Government Shutdown -Wilder Penfield -Super Bowl 2018 -Atlanta Weather -Bitcoin Price -Government Shutdown -Winter Olympics -Government shutdown -Mike Vrabel -Elizabeth Blackwell -Oscar Nominations 2018 -Joe Kennedy -Scott Baio -Terrell Owens -Blake Griffin -Mark Salling -Super Bowl score -Vikings Vs Eagles -Cloverfield Paradox -Groundhog Day 2018 -Super Bowl 2018 -SpaceX -Snapchat Update -Royal Rumble 2018 -Joe Kennedy -Shaun White -Dwyane Wade -Super Bowl score -Oscar Nominations 2018 -Aliona Savchenko -Elizabeth Blackwell -Virginia Woolf -Tessa Virtue -SpaceX -Super Bowl score -Alex Reimer -Adam Rippon -Dow Jones -Super Bowl 2018 -Olympics 2018 -Bitcoin Price -What Time Is The Super Bowl -Florida shooting -Super Bowl 2018 -Patriots -Wilder Penfield -Royal Rumble 2018 -Wilder Penfield -Pro Bowl 2018 -Florida shooting -Wilder Penfield -Chris Stapleton -Carter G. Woodson -Joel Taylor -Virginia Woolf -Sandy Hook -Sergei Eisenstein -Portia de Rossi -Jennifer Aniston -Carter G. Woodson -Happy Valentines Day -Paula Modersohn-Becker -Government Shutdown Meaning -Super Bowl 2018 -Virginia Woolf -Virginia Woolf -Yoel Romero -Robert Wagner -Kylie Jenner -Gus Kenworthy -Kentucky shooting -Elizabeth Blackwell -School Closings -Government Shutdown Meaning -Adam Rippon -Alaska earthquake -Patriots -Dow Jones -Grammys 2018 -Kesha -Kentucky shooting -Super Bowl score -Chicago West -Kylie Jenner -Elizabeth Blackwell -Elton John -Did the Groundhog See His Shadow -What Time Is The Super Bowl -Prince William -State of the Union -Jennifer Aniston -Super Bowl 2018 -Senior Bowl -Florida shooting -Mark Salling -school closings -Alaska earthquake -Vince McMahon -Sergei Eisenstein -Oscar Nominations 2018 -Altered Carbon -Super blue blood Moon -Super Bowl 2018 -Virginia Woolf -Florida shooting -Super Bowl score -Wilder Penfield -Venom -Patriots -Vikings Vs Eagles -Winter Olympics -Super Bowl score -Vikings Vs Eagles -earthquake -Wilder Penfield -NHL All Star Game -Florida shooting -Solo Trailer -Wilder Penfield -Chinese New Year 2018 -Alaska earthquake -SpaceX -Paula Modersohn-Becker -Tessa Virtue -Olympic Medal Count -Elizabeth Blackwell -Super Bowl 2018 -The Home Depot -Paula Modersohn-Becker -Elizabeth Blackwell -Elizabeth Blackwell -Matt Patricia -Government Shutdown Meaning -Blake Griffin Trade -Oscar Nominations 2018 -Government Shutdown -Adam Rippon -Terrell Owens -Government Shutdown -calculator -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl score -Isaiah Thomas -Elton John -Wilder Penfield -Sergei Eisenstein -Virginia Woolf -Kim Kardashian -Lil Pump -Shaun White -Did the Groundhog See His Shadow -Government shutdown -Yahoo Finance -Super Bowl score -Elizabeth Blackwell -Carter G. Woodson -Florida shooting -Florida shooting -Super Bowl 2018 -Kevin Love -Black Panther -Casey Affleck -Virginia Woolf -Government Shutdown -Paula Modersohn-Becker -Patriots -Super Bowl score -Kylie Jenner -Joy Villa -Red Gerard -Portia de Rossi -Oscar Nominations 2018 -The 15:17 to Paris -Alison Brie -Oscar Nominations 2018 -Esteban Loaiza -Carter G. Woodson -calculator -Sergei Eisenstein -Justin Timberlake -Super Bowl Commercials -earthquake -Winter Olympics -Kesha Grammy -Naya Rivera -Super Bowl 2018 -Florida shooting -Megan Barry -Paula Modersohn-Becker -Despacito -Winter Olympics -Shaun White -Super Bowl 2018 -Paula Modersohn-Becker -Government Shutdown Meaning -Culture 2 -Justin Timberlake -Carter G. Woodson -Paula Modersohn-Becker -This Is Us -Winter Olympics -Oscar Nominations 2018 -Elizabeth Blackwell -Grammys 2018 -Super Bowl 2018 -Pro Bowl 2018 -Grammys 2018 -Government Shutdown -Kylie Jenner -Google Drive -Patriots -Super Bowl score -Presidents Day 2018 -Paula Modersohn-Becker -Mikaela Shiffrin -Slender Man -Sergei Eisenstein -SpaceX -Winter Olympics -Paula Modersohn-Becker -Kylie Jenner -Virginia Woolf -Netflix Stock -Jessica Chastain -Nintendo Labo -Alessia Cara -Jason Kelce -Patti LuPone -Winchester -Amtrak -Super Bowl 2018 -Chloe Kim -Winter Olympics -Childish Gambino -UFC 220 -Valentines Day -Shaun White -Wilder Penfield -Kirstjen Nielsen -Scandal -Aaron Fies -Josh McDaniels -Jemele Hill -Super Bowl score -Justin Timberlake -Justin Timberlake -Olympic Medal Count -Norovirus -Kodak Black -Patriots -Wilder Penfield -Doomsday Clock -Florida shooting -Kevin Love -H&r Block -curling -Paul Ryan -Groundhog Day 2018 -Grammys 2018 -Post Malone -Virginia Woolf -Virginia Woolf -Patriots -Virginia Woolf -Super blue blood Moon -NHL All Star Game -Paula Modersohn-Becker -Winter Olympics -Johnny Weir -Florida shooting -Paula Modersohn-Becker -Real Madrid -Isaiah Thomas -Shaun White -Florida shooting -Government Shutdown 2018 -Sergei Eisenstein -Brie Larson -Valentines Day Memes -Patriots -Grammys 2018 -Lorenzo Cain -Black Panther -Luke Wilson -Justin Timberlake -Super Bowl 2018 -Paula Modersohn-Becker -Super Bowl Commercials 2018 -Grammys 2018 -Bitcoin Price -Government Shutdown -Celtics -Michigan State -Super Bowl 2018 -Pro Bowl 2018 -Winter Olympics -12 Strong -Winter Olympics -Patriots -Super Bowl score -Kim Kardashian -Sergei Eisenstein -What Time Is The Super Bowl -Grammys 2018 -pissant -Kentucky shooting -Vikings Vs Eagles -NBA Trades -Sergei Eisenstein -Google Drive -Super Bowl Commercials -Kylie Jenner -Shaun White -SpaceX -Winter Olympics -School closings -What Time Is The Super Bowl -Kylie Jenner -Patriots -Culture 2 -Carter G. Woodson -Carter G. Woodson -Justin Timberlake -Florida shooting -Jeremy London -Ann Curry -Solo Trailer -Winter Olympics -Wilder Penfield -Winter Olympics -Tiger Woods -CNN -Patriots -Carter G. Woodson -Rasual Butler -Virginia Woolf -Virginia Woolf -Winter Olympics -Patriots -Tara Lipinski -Super blue blood Moon -Blue Moon -Super Bowl score -Trey Gowdy -Justin Timberlake -Paula Modersohn-Becker -Dow Jones -Chicago West -Memo -Columbine Shooting -Florida shooting -Kevin Love -New California -Alessia Cara -Lil Pump -Elizabeth Blackwell -Kylie Jenner Baby Girl -Sergei Eisenstein -Trump State of the Union -Carter G. Woodson -What Time Is The Super Bowl -Samson -Wilder Penfield -Carter G. Woodson -Kylie Jenner -Patriots -Rob Porter -Elton John -Justin Timberlake -Vikings Vs Eagles -Patriots -Florida shooting -What Time Is The Super Bowl -Carrie Underwood -Super Bowl score -12 Strong -Quincy Jones -CNN -Terrell Owens -Patti LuPone -State of the Union -Tesla in space -Sergei Eisenstein -Paula Modersohn-Becker -Shaun White -Kelly Clark -Florida shooting -Super blue blood Moon -Kentucky shooting -Sergei Eisenstein -Kylie Jenner -Florida shooting -Patriots -Carter G. Woodson -Alexander Polinsky -Sergei Eisenstein -Vikings Vs Eagles -Sean McVay -Kylie Jenner -Edible Arrangements -Culture 2 -Florida shooting -Florida shooting -NFL Honors -Chloe Kim -Kim Cattrall -Virginia Woolf -Larry Nassar -Government Shutdown -Cloverfield Paradox -Grammys 2018 -Patriots -Patriots -What Time Is The Super Bowl -Josh Allen -Winter Olympics -Uma Thurman -Elizabeth Blackwell -Super Bowl score -stock market -Solo Trailer -Florida shooting -Florida shooting -Paula Modersohn-Becker -Super blue blood Moon -Nikki Haley -Vanessa Trump -Wilder Penfield -Wilder Penfield -Vikings Vs Eagles -XFL -Valentines Day -Cavs -Dow Jones industrial average -Florida shooting -Virginia Woolf -Super Blue Blood Moon -Carter G. Woodson -Blake Griffin -Larry Nassar -Elizabeth Blackwell -Paula Modersohn-Becker -Joel Taylor -Super Bowl score -John Mahoney -Government Shutdown Meaning -Justin Timberlake -Patriots -Super Bowl score -Government Shutdown -Trey Gowdy -State of the Union -Otto Warmbier -Josh McDaniels -Tonga -Grammys 2018 -Snapchat Update -Government Shutdown -SZA -Oscar Nominations 2018 -Solo Trailer -Elton John -School closings -Winter Olympics -Vikings Vs Eagles -Super Bowl 2018 -Larry Nassar -Patriots -Kylie Jenner -Alex Smith -Winter Olympics -Winter Olympics -Chicago Weather -What Time Is The Super Bowl -Patriots -Royal Rumble 2018 -Robert Wagner -Carter G. Woodson -Virginia Woolf -Daniel Kaluuya -Super Bowl Winners -Government Shutdown -Patriots -Larry Nassar -UFC 220 -Google Drive -Super Bowl 2018 -Obama portrait -Patriots -Super Bowl score -Super Bowl 2018 -Alison Brie -Sal Castro Middle School -Sergei Eisenstein -Sergei Eisenstein -What Time Is The Super Bowl -Virginia Woolf -Government Shutdown -What Time Is The Super Bowl -Florida shooting -Dua Lipa -Super blue blood Moon -Langston Hughes -Florida shooting -Wilder Penfield -Jennifer Aniston -Mcdonald's -Halsey -Camila Cabello -Sergei Eisenstein -Sergei Eisenstein -Larry Nassar -Elizabeth Blackwell -Super blue blood Moon -Government Shutdown Meaning -Winter Olympics -Super Bowl 2018 -Wilder Penfield -Patti LuPone -Justin Timberlake -Super Bowl 2018 -Did the Groundhog See His Shadow -Dow Jones -Stormi -Wilder Penfield -Government Shutdown -Doomsday Clock -Super Bowl 2018 -Logan Paul -Farmers Insurance Open 2018 -Virginia Woolf -Olympics 2018 -Virginia Woolf -Den of Thieves -Groundhog Day 2018 -Solo Trailer -Early Man -Rasual Butler -Jacob Copeland -Tom Petty -Reg E Cathey -Happy Valentines Day -Black Panther -Elizabeth Blackwell -Carter G. Woodson -Florida shooting -Paula Modersohn-Becker -Bitcoin Price -Virginia Woolf -Government Shutdown Meaning -Winter Olympics -Google Classroom -Virginia Woolf -Elon Musk -Elizabeth Blackwell -Justin Timberlake -Mikaela Shiffrin -Virginia Woolf -Sergei Eisenstein -Florida shooting -Rob Gronkowski -Chipper Jones -Virginia Woolf -Super Bowl 2018 -Super blue blood Moon -Justin Timberlake -Wilder Penfield -Wilder Penfield -Oscar Nominations 2018 -Kawhi Leonard -Wilder Penfield -Joe Kennedy -XFL -Virginia Woolf -Shaun White -What Time Is The Super Bowl -SpaceX -The 15:17 to Paris -Google docs -Sergei Eisenstein -Winter Olympics -Sergei Eisenstein -XFL -Olivia Munn -Patriots -Wilder Penfield -Google docs -Justin Timberlake -Groundhog Day 2018 -Super Bowl score -Patriots -Daryle Singletary -Shaun White -Paula Modersohn-Becker -earthquake today -Fifty Shades Freed -Justin Timberlake -Florida shooting -Elizabeth Blackwell -VIX -Super blue blood Moon -Dow Jones -State of the Union -NBA Trades -Vanessa Trump -Lena Zawaideh -Virginia Woolf -Kylie Jenner -Virginia Woolf -Sergei Eisenstein -Wilder Penfield -Cherry Seaborn -Florida shooting -Stormi -Blake Griffin -United States Of America Winter Olympics -Government shutdown -Amy Schumer -Paula Modersohn-Becker -Paula Modersohn-Becker -Oscar Nominations 2018 -National Pizza Day -Jennifer Aniston -Josh McDaniels -Kentucky shooting -Winter Olympics -Kate Upton -Super Bowl 2018 -Elizabeth Blackwell -Chipper Jones -Patriots -What Time Is The Super Bowl -Tennys Sandgren -Grammys 2018 -Government shutdown 2018 -Super Bowl 2018 -Aaliyah -Super Bowl score -Super blue blood Moon -NBA Trades -Call Me by Your Name -Government Shutdown Meaning -What Time Is The Super Bowl -Altered Carbon -Florida shooting -Blake Griffin Trade -Florida shooting -What Time Is The Super Bowl -James Harden -Sergei Eisenstein -Patriots -Alaska earthquake -Carter G. Woodson -Virginia Woolf -Carter G. Woodson -Florida shooting -Elizabeth Blackwell -Altered Carbon -Super Bowl 2018 -All Star Weekend 2018 -Ronaldinho -Happy Valentines Day -Government shutdown 2018 -Super Bowl score -Super Bowl score -Childish Gambino -Super Bowl Commercials 2018 -Chloe Kim -Donald Trump Jr -Vikings Vs Eagles -Wilder Penfield -Super Bowl score -XFL -Stormi -Lindsey Vonn -Wilder Penfield -Fifty Shades Freed -Super Bowl 2018 halftime show -Sergei Eisenstein -Super Bowl 2018 -Devin Nunes -Fortnite New Map -Yu Darvish -Winter Olympics -Patriots -Patriots -Sergei Eisenstein -Kylie Jenner Baby Girl -Winchester -Google docs -Carter G. Woodson -Olympic Medal Count -Super Bowl 2018 -Grammys 2018 -Dow Jones -Paula Modersohn-Becker -Kratom -Virginia Woolf -Amazon stock -Ash Wednesday -Sting -Sergei Eisenstein -Kylie Jenner -Winter Olympics -Florida shooting -Vikings Vs Eagles -Winter Olympics -Dow Jones -Carter G. Woodson -Paula Modersohn-Becker -Grammys 2018 -Solo Trailer -school closings -Carter G. Woodson -Did the Groundhog See His Shadow -Super Bowl 2018 -Paula Modersohn-Becker -Patriots -Winter Olympics -Winter Olympics -Super Bowl score -Super Bowl 2018 halftime show -United States Of America Winter Olympics -Winter Olympics -LeBron James -Rodney Hood -Enzo Amore -Vikings Vs Eagles -Virginia Woolf -Patriots -Virginia Woolf -Florida shooting -Wilder Penfield -Lee Miglin -Cloverfield Paradox -Carter G. Woodson -Winter Olympics -What Time Is The Super Bowl -Carter G. Woodson -Elizabeth Blackwell -New California -Government Shutdown -LeBron James -Shaun White -Justin Timberlake -Sergei Eisenstein -Sergei Eisenstein -Super Bowl score -Elizabeth Blackwell -Bill Belichick -Winter Olympics -Justin Timberlake -tsunami -Google Classroom -Gigi Hadid -Winter Olympics -Chris Stapleton -Kylie Jenner -Kylie Jenner -Kesha Grammy -Government Shutdown 2018 -Cavs -Elton John -Patriots -Eli Manning -Winter Olympics -Shiffrin -Toys R Us -Blue Ivy -Elizabeth Blackwell -National Pizza Day -Florida shooting -VIX -Virginia Woolf -Norovirus -Virginia Woolf -Winter Olympics -Rose McGowan -National Pizza Day -Chris Paul -Fredo Santana -Ash Wednesday -Larry Nassar -Government Shutdown 2018 -NBA Trades -Elizabeth Blackwell -Hailee Steinfeld -Shaun White -All Star Weekend 2018 -Sarah Barthel -Sergei Eisenstein -Sergei Eisenstein -Grey's Anatomy -Wilder Penfield -Mark Salling -Kylie Jenner -Carter G. Woodson -Oscar Nominations 2018 -Elizabeth Blackwell -Patriots -Wilder Penfield -Dow Jones -Purdue Basketball -Venom -Solo Trailer -Cherry Seaborn -Grammys 2018 -Government Shutdown -What Time Is The Super Bowl -Carter G. Woodson -New England Patriots owner -Dow Jones -Adam Rippon -Patriots -UFC 220 -Jen Selter -Fredo Santana -Dow Jones -Classroom -Black Panther -Shaun White -Florida shooting -Megan Barry -Tyler Hilinski -Florida shooting -Lindsey Vonn -MS13 -Forever My Girl -Winter Olympics -Virginia Woolf -Carter G. Woodson -Wilder Penfield -Solo Trailer -Florida shooting -Elizabeth Blackwell -Patriots -Vikings Vs Eagles -Mardi Gras 2018 -Zuleyka Rivera -Kylie Jenner -Kylie Jenner -SpaceX -Black Panther -Winter Olympics -Josh McDaniels -Westminster Dog Show 2018 -Peter Rabbit -What Time Is The Super Bowl -Google Drive -Virginia Woolf -Royal Rumble 2018 -Paula Modersohn-Becker -Despacito -Government Shutdown Meaning -Pro Bowl 2018 -Did the Groundhog See His Shadow -What Time Is The Super Bowl -Justin Timberlake -Black Panther -Sean McVay -John Mahoney -Kodak Black -Super Blue Blood Moon -SAG Awards 2018 -Sergei Eisenstein -Winter Olympics -fake news awards -Virginia Woolf -Cloverfield Paradox -Adam Rippon -Larry Nassar -Stormi -SpaceX -Winter Olympics -Alaska earthquake -Super Bowl 2018 -State of the Union -Larry Nassar -Groundhog Day 2018 -Winter Olympics -Government Shutdown -Kesha -Government Shutdown -Florida shooting -Tessa Virtue -Elizabeth Blackwell -Wilder Penfield -Kentucky shooting -calculator -Grey's Anatomy -Florida shooting -Patriots -Wilder Penfield -State of the Union -Chinese New Year 2018 -Rasual Butler -Vikings Vs Eagles -Sergei Eisenstein -Shaun White -Paula Modersohn-Becker -Super Bowl 2018 -Grammys 2018 -Wilder Penfield -Carter G. Woodson -Government shutdown -Super Bowl 2018 -Monster Hunter World -SpaceX -Groundhog Day 2018 -Elizabeth Blackwell -Jenna Morasca -Sergei Eisenstein -SpaceX -Carter G. Woodson -Sergei Eisenstein -Royal Rumble 2018 -Google Classroom -Patriots -Solo Trailer -Winter Olympics -Super Bowl score -Patriots -Aaliyah -National Pizza Day -Chris Long -Amazon HQ2 -Government Shutdown -Earthquake -Larry Nassar -Government Shutdown -Super Bowl 2018 -Royal Rumble 2018 -Paula Modersohn-Becker -Government shutdown 2018 -Ash Wednesday -Yahoo Finance -Paula Modersohn-Becker -Blake Griffin -Super Bowl score -Patriots -Alex Smith -Chinese New Year 2018 -school closings -Virginia Woolf -SpaceX -Paula Modersohn-Becker -Grammys 2018 -Altered Carbon -Wilder Penfield -Super Bowl 2018 -Carter G. Woodson -Lunar eclipse -Government Shutdown -Justin Timberlake -Nba All Star Draft -Andrew Cunanan -Rob Porter -Virginia Woolf -Super Bowl score -Edwin Jackson -Winter Olympics -Steve Wynn -Blake Griffin -Larry Nassar -Vikings vs Eagles -Bitcoin Price -Chinese New Year 2018 -Government Shutdown Meaning -Florida shooting -Sergei Eisenstein -Steve Mcnair -NBC Sports -Eli Manning -Sergei Eisenstein -Kylie Jenner -Florida shooting -Florida shooting -Johnny Weir -Sergei Eisenstein -Kim Kardashian -Justin Timberlake -stock market -Solo Trailer -Winchester -Justin Timberlake -Super Bowl 2018 -Florida shooting -Alaska earthquake -Carter G. Woodson -Olympic Medal Count -Grammys 2018 -Winter Olympics -Winter Olympics -Dow Jones industrial average -Kylie Jenner -SpaceX -Luke Wilson -New England Patriots owner -Jalen Ramsey -Winter Olympics -Atlanta Weather -Memo -Elizabeth Blackwell -Cavs -Jo Jo White -SAG Awards 2018 -Oscar Nominations 2018 -Super Bowl score -Patriots -Government Shutdown -Solo Trailer -Super Bowl 2018 -School closings -Robert Mueller -Uma Thurman -Patriots -Halsey -Patriots -Government Shutdown -SpaceX -Joseph Haynes -Sergei Eisenstein -Carrie Underwood -Rasual Butler -Timor Leste -Super Bowl 2018 -Florida shooting -Chicago West -NBA Trades -Kim Kardashian -Happy Valentines Day -NBA Trades -Winter Olympics -Government shutdown 2018 -Terrell Owens -Super Bowl score -UFC 220 -Taiwan Earthquake Today -Super Bowl score -Celebrity Big Brother cast -Super blue blood Moon -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl 2018 -Lunar eclipse -Sergei Eisenstein -Edwin Jackson -Obama portrait -school closings -Adam Rippon -Super Bowl score -Elon Musk -Kylie Jenner -Football Playoffs 2018 -calculator -SAG Awards 2018 -Government Shutdown -Sergei Eisenstein -Grammys 2018 -Conor McGregor -Paula Modersohn-Becker -Winter Olympics -Elizabeth Blackwell -Camila Cabello -Virginia Woolf -James Harden -Winter Olympics -Charissa Thompson -Virginia Woolf -Robinhood -Did the Groundhog See His Shadow -Patriots -SAG Awards 2018 -Paula Modersohn-Becker -What Time Is The Super Bowl -This Is Us -Zion Williamson -Peter Rabbit -government shutdown -What Time Is The Super Bowl -Oscar Nominations 2018 -Wilder Penfield -Lindsey Vonn -Carter G. Woodson -Winter Olympics -Chinese New Year 2018 -Florida shooting -Marlon Brando -Wilder Penfield -Vikings vs Eagles -Government shutdown 2018 -Chris Stapleton -Justin Timberlake -Sergei Eisenstein -national signing day 2018 -Johnny Weir -Super Bowl score -Sergei Eisenstein -Super Bowl 2018 -Natalie Wood -UFC 220 -Virginia Woolf -Valentines Day -Jo Jo White -Football Playoffs 2018 -Gianni Versace -Elizabeth Blackwell -Patriots -CNN -NSA -Chinese New Year 2018 -This Is Us -Edible Arrangements -Carter G. Woodson -Childish Gambino -Carter G. Woodson -Carter G. Woodson -Sergei Eisenstein -Drake -Paula Modersohn-Becker -Timor Leste -Kim Kardashian -Oscar Nominations 2018 -Drive -Wilder Penfield -Kylie Jenner -Paul Ryan -Winter Olympics -Carter G. Woodson -Vikings Vs Eagles -Vikings Vs Eagles -Kylie Jenner -Chris Paul -Joe Kennedy -Florida shooting -Justin Timberlake -SpaceX -Grammys 2018 -IXL -Super Bowl 2018 -Super Bowl 2018 -Florida shooting -CNN -Black Panther -Cherry Seaborn -Sergei Eisenstein -Elizabeth Blackwell -National Pizza Day -Justin Timberlake -Paula Modersohn-Becker -Patriots -SpaceX -This is Us -Patriots -Carter G. Woodson -Patriots -Government Shutdown -Super Bowl 2018 -Obama portrait -Rasual Butler -Bill Paxton -Google Classroom -Government Shutdown 2018 -Adam Rippon -Sergei Eisenstein -Red Gerard -Joseph Haynes -Alison Brie -Florida shooting -Ar 15 -Government Shutdown -Dow Jones -Carter G. Woodson -Jason Kelce -Rolling Loud -Patriots -Altered Carbon -Jessica Chastain -Super Bowl 2018 -Wilder Penfield -Elizabeth Blackwell -Kesha -Kylie Jenner -Valentines Day -Super Bowl 2018 -Vikings Vs Eagles -Elizabeth Blackwell -Kylie Jenner -Elizabeth Blackwell -Virginia Woolf -Wilder Penfield -Kentucky shooting -Portia de Rossi -Lari White -What Time Is The Super Bowl -Dwyane Wade -Super blue blood Moon -LeBron James -Jessica Chastain -NBA Trades -Super Bowl 2018 -government shutdown -Elizabeth Blackwell -Government Shutdown 2018 -Paula Modersohn-Becker -Olympic Medal Count -Virginia Woolf -Cavs -State of the Union -Florida shooting -Sergei Eisenstein -Tonga -Wilder Penfield -Russell Wilson -Patriots -Portia de Rossi -Emily Sweeney -Jason Kelce -Virginia Woolf -Wilder Penfield -Google docs -Elizabeth Blackwell -Patriots -Carter G. Woodson -Larry Nassar -Ash Wednesday -Government shutdown 2018 -Justin Timberlake -Den of Thieves -Government Shutdown Meaning -What Time Is The Super Bowl -NBA Trades -Elizabeth Blackwell -Super Bowl score -Virginia Woolf -Kim Kardashian -Patriots -Carter G. Woodson -Government Shutdown 2018 -Larry Nassar -Juegos Olímpicos de Invierno 2018 -Justin Timberlake -Steve Wynn -Larry Nassar -Super Bowl score -Isaiah Thomas -lady gaga grammys -Virginia Woolf -What Time Is The Super Bowl -Paula Modersohn-Becker -Chinese New Year 2018 -Wilder Penfield -AFC Championship Game 2018 -Carter G. Woodson -SpaceX -Elizabeth Blackwell -Super Bowl score -Joe Kennedy -Super Bowl score -Edwin Jackson -Government shutdown 2018 -What Time Is The Super Bowl -Wilder Penfield -Patriots -Cavs -Patriots -Logan Paul -Paula Modersohn-Becker -Virginia Woolf -Vanessa Trump -stock market -Did the Groundhog See His Shadow -Super Bowl 2018 -What Time Is The Super Bowl -Donald Trump Jr -Matt Patricia -Patriots -Carter G. Woodson -Virginia Woolf -Pro Bowl 2018 -Andre Roberson -Super Bowl score -Adam Rippon -Paula Modersohn-Becker -Winter Olympics -Quincy Jones -Grammys 2018 -Zuleyka Rivera -Wilder Penfield -Kentucky shooting -H&r Block -Government Shutdown -Jane Fonda -Super Bowl 2018 -This Is Us -Government Shutdown -Paula Modersohn-Becker -Enzo Amore -Paula Modersohn-Becker -Super Blue Blood Moon -Florida shooting -Donald Trump Jr -Rob Delaney -Valentines Day -Super Bowl 2018 -State of the Union -Cory Booker -Florida shooting -Google Drive -Dwyane Wade -Patriots -Super Bowl Commercials 2018 -Sergei Eisenstein -Grammys 2018 -Early Man -Jason Kelce -Justin Timberlake -Happy Valentines Day -Chinese New Year 2018 -Adam Schiff -Culture 2 -Virginia Woolf -Florida shooting -Pro Bowl 2018 -Super Bowl score -Super Bowl score -tsunami -This Is Us -This Is Us -Virginia Woolf -Winter Olympics -Carter G. Woodson -Grammys 2018 -Grammys 2018 -Justin Timberlake -Elizabeth Blackwell -Virginia Woolf -Josh McDaniels -Virginia Woolf -Paula Modersohn-Becker -Elizabeth Blackwell -Kylie Jenner -Pro Bowl 2018 -Meteor -Virginia Woolf -Olympic Medal Count -Super Bowl 2018 -Winter Olympics -Anastasia Bryzgalova -SpaceX -Bitcoin Price -Happy Valentines Day -Andre the Giant -Maze Runner: The Death Cure -Patriots -Paula Modersohn-Becker -Brie Larson -Red Gerard -Alex Smith -Super Bowl 2018 -Alex Reimer -Elizabeth Blackwell -Paula Modersohn-Becker -Carter G. Woodson -Enzo Amore -earthquake -Grammys 2018 -Daryle Singletary -Super Bowl score -Happy Valentines Day -Toys R Us -Virginia Woolf -Walter Payton -Andre Roberson -Patriots -Celebrity Big Brother cast -Solo Trailer -Paula Modersohn-Becker -Chinese New Year 2018 -Virginia Woolf -Pro Bowl 2018 -Government Shutdown -Sarah Barthel -Wilder Penfield -Super Bowl 2018 -Super Bowl 2018 -SAG Awards 2018 -Government shutdown -Kylie Jenner -Robert Wagner -Robert Wagner -NBA Trades -Vikings Vs Eagles -Super Bowl score -Winter Olympics -This Is Us -Patriots -Blake Griffin -What Time Is The Super Bowl -Patriots -Grammys 2018 -Jeremy London -Farmers Insurance Open 2018 -Dow Jones -Paula Modersohn-Becker -Sergei Eisenstein -Carter G. Woodson -Florida shooting -Elizabeth Blackwell -SpaceX -Mardi Gras 2018 -Carter G. Woodson -Early Man -Black Panther -Steven Tyler -Amtrak -Sergei Eisenstein -Virginia Woolf -Turpin -Culture 2 -Kylie Jenner -Chicago West -Wilder Penfield -Larry Nassar -State of the Union -MS13 -Kylie Jenner -Kentucky shooting -Cavs -Grammys 2018 -Sergei Eisenstein -Patriots -Sean Hannity -This Is Us -Carter G. Woodson -SpaceX -Wilder Penfield -Super Bowl score -Winter Olympics -Mark Salling -Kylie Jenner Baby Girl -Paula Modersohn-Becker -Sergei Eisenstein -Jeff Flake -Elizabeth Blackwell -What Time Is The Super Bowl -Sabrina Dhowre -Carter G. Woodson -Groundhog Day 2018 -Amazon HQ2 -Obama portrait -Kentucky shooting -Sergei Eisenstein -Adam Rippon -Rob Gronkowski -Groundhog Day 2018 -Government shutdown -The Home Depot -Wilder Penfield -Larry Nassar -Kim Kardashian -Elizabeth Blackwell -Vikings vs Eagles -Vikings Vs Eagles -Valentines Day -Virginia Woolf -Tom Brady -Sergei Eisenstein -Venom -Virginia Woolf -Carter G. Woodson -Lady Bird -Robert Wagner -Super Bowl score -Childish Gambino -Florida shooting -Super Bowl score -Dua Lipa -Oscar Nominations 2018 -Government Shutdown -NASCAR -Patriots -Larry Nassar -National Pizza Day -What Time Is The Super Bowl -Patriots -Solo Trailer -Groundhog Day 2018 -Elizabeth Blackwell -Sergei Eisenstein -Google Classroom -Vikings Vs Eagles -Kylie Jenner -Super Bowl score -Government shutdown 2018 -Wilder Penfield -Rob Delaney -Princess Eugenie -Patriots -Olive Garden -This Is Us -Tammy Duckworth -Puppy Bowl 2018 -Terrell Owens -Elizabeth Blackwell -Chipper Jones -Den of Thieves -Oscar Nominations 2018 -Super Bowl 2018 -Super blue blood Moon -Eric Wood -Florida shooting -Lindsey Vonn -Vikings vs Eagles -Super Bowl 2018 -Virginia Woolf -Tara Lipinski -Red Gerard -Super Bowl 2018 -Justin Timberlake -Patriots -Maze Runner: The Death Cure -Black Panther -Winter Olympics -Virginia Woolf -Alex Smith -Deadpool 2 -Kim Kardashian -Larry Nassar -Paula Modersohn-Becker -Kesha Grammy -Bitcoin Price -SpaceX -Justin Timberlake -Google docs -Trump State of the Union -Zion Williamson -Rose McGowan -Elizabeth Blackwell -Patriots -Winter Olympics -Isaiah Thomas -Dow Jones -Wilder Penfield -Larry Nassar -School Closings -Blake Griffin -Super blue blood Moon -Justin Timberlake -Government Shutdown -Super Bowl 2018 -Trey Gowdy -Carter G. Woodson -Lena Zawaideh -Wilder Penfield -Super Bowl score -Elizabeth Blackwell -Sergei Eisenstein -Chipper Jones -SpaceX -Earthquake Today -Paula Modersohn-Becker -Paula Modersohn-Becker -Google Classroom -Winter Olympics -Sergei Eisenstein -This is Us -Florida shooting -Carter G. Woodson -Elton John -Oscar Nominations 2018 -Florida shooting -SAG Awards 2018 -Waco -Florida shooting -Jessica Chastain -Obama portrait -Vikings Vs Eagles -Joseph Haynes -NBA Trades -FA Cup -Kylie Jenner -Winter Olympics -Women's March 2018 -Justin Timberlake -Wilder Penfield -Super Bowl 2018 -Memo -Virginia Woolf -Fortnite New Map -Super Bowl score -Amy Schumer -Virginia Woolf -Valentines Day Images -Happy Valentines Day -Blake Griffin -Super Bowl score -Winter Olympics -Super Bowl 2018 -Melania Trump -Vince McMahon -Larry Nassar -Paula Modersohn-Becker -Mark Salling -Apolo Ohno -Oar Olympics -Joe Kennedy -Solo Trailer -Senior Bowl -Tom Petty -Chinese New Year 2018 -Florida shooting -Paula Modersohn-Becker -Chloe Kim -Celtics -Tom Brady daughter -Patriots -Bitcoin Price -Carter G. Woodson -Chicago West -Carter G. Woodson -Did the Groundhog See His Shadow -Kylie Jenner -Happy Valentines Day -Super blue blood Moon -Sharon Stone -Blake Griffin Trade -Alexander Polinsky -stock market -Winchester -Carter G. Woodson -Super Blue Blood Moon -Cavs -Winter Olympics -Memo -Winter Olympics -Johnny Weir -Larry Nassar -Patriots -AR-15 -Sergei Eisenstein -Kentucky shooting -curling -Elizabeth Blackwell -Paula Modersohn-Becker -Lee Miglin -Government shutdown -Fredo Santana -BitConnect -Shaun White -Carter G. Woodson -Chinese New Year 2018 -SpaceX -Cloverfield Paradox -Columbine -Super Bowl score -Jennifer Aniston -Super Bowl score -Carter G. Woodson -Rasual Butler -Super blue blood Moon -Super Bowl score -Wilder Penfield -What Time Is The Super Bowl -Carter G. Woodson -Vikings vs Eagles -Kesha Grammy -Chloe Kim Snowboarder -Obama portrait -The Home Depot -Patriots -Amy Schumer -Virginia Woolf -Oscar Nominations 2018 -Florida shooting -SpaceX -Sergei Eisenstein -United States Of America Winter Olympics -government shutdown -Jennifer Aniston -Memo -Logan Paul -Kentucky shooting -Elizabeth Blackwell -Harley Barber -This Is Us -Super Bowl 2018 -Patriots -Elizabeth Blackwell -Alex Smith -Tom Petty -Super Bowl 2018 -fake news awards -SpaceX -Groundhog Day 2018 -Jane Fonda -Steven Tyler -Patriots -SpaceX -Rasual Butler -Blake Griffin -Super Bowl score -The 15:17 to Paris -Oscar Nominations 2018 -Dow Jones -Phantom Thread -Black Lightning -Gigi Hadid -Patriots -Ash Wednesday -Vikings Vs Eagles -Adam Rippon -Black Panther -Winter Olympics -Jennifer Aniston -Carter G. Woodson -Winter Olympics -Blake Griffin -Winter Olympics -Brynn Cameron -Super Bowl 2018 -Kesha Grammy -Kodak Black -Elizabeth Blackwell -Dow Jones -Lou Anna Simon -Wilder Penfield -Super Bowl Commercials 2018 -Groundhog Day 2018 -Jennifer Aniston -Kentucky shooting -Dane Cook -What Time Is The Super Bowl -Pink -Paula Modersohn-Becker -Sergei Eisenstein -Esteban Loaiza -Government Shutdown Meaning -Mark Salling -Alex Reimer -Jennifer Aniston -Black Panther -Cavs -Winter Olympics -Arsenal -Super Bowl score -What Time Is The Super Bowl -Josh McDaniels -Virginia Woolf -Elizabeth Blackwell -Sergei Eisenstein -Government shutdown 2018 -SpaceX -Virginia Woolf -Florida shooting -Sandy Hook -Rasual Butler -UFC 220 -Kentucky shooting -Carter G. Woodson -Julie Bowen -John Mahoney -Greg Monroe -School Closings -Juventus -State of the Union -Government shutdown 2018 -Zuleyka Rivera -What Time Is The Super Bowl -Carter G. Woodson -Paula Modersohn-Becker -Sergei Eisenstein -Virginia Woolf -Fredo Santana -Patriots -Super Bowl 2018 -Did the Groundhog See His Shadow -Wilder Penfield -Chinese New Year 2018 -Wilder Penfield -Stan Lee -Westminster Dog Show 2018 -Wilder Penfield -UFC 220 -SpaceX -Taiwan Earthquake Today -Incredibles 2 -Obama portrait -Florida shooting -Rasual Butler -Patriots -Government Shutdown -Vikings Vs Eagles -Dow Jones -Lunar eclipse -Elizabeth Blackwell -Tyler Hilinski -Larry Nassar -Alison Brie -Kelly Clark -Quincy Jones -Meteor -Winter Olympics -NBA Trades -Sergei Eisenstein -Virginia Woolf -Childish Gambino -Valentines Day -Elizabeth Blackwell -What Time Is The Super Bowl -Dow Jones -Patriots -Super Bowl score -Shaun White -Duke Basketball -Paula Modersohn-Becker -Princess Eugenie -Kesha -Winter Olympics -Gods Plan -Bitcoin Price -Patti LuPone -Dwyane Wade -Adam Rippon -Carter G. Woodson -Sergei Eisenstein -Friends movie -Sammy Sosa -Winter Olympics -SpaceX -Elizabeth Blackwell -Super Bowl Commercials 2018 -Super Bowl score -Patriots -Solo Trailer -Wilder Penfield -Kylie Jenner -Super Bowl 2018 -DeMarcus Cousins -Dwyane Wade -Super Bowl score -Patriots -Carter G. Woodson -James Baldwin -NBA Trades -Elizabeth Blackwell -NHL All Star Game -Neil Diamond -Virginia Woolf -Super Bowl 2018 -Kesha Grammy -Winter Olympics -Grammys 2018 -Winter Olympics -Kylie Jenner -Super Bowl 2018 -Paula Modersohn-Becker -Super Bowl 2018 -Carter G. Woodson -Patriots -SpaceX -Justin Timberlake -Government Shutdown -Sergei Eisenstein -Happy Valentines Day -Super blue blood Moon -Lunar eclipse -Grey's Anatomy -Turpin -Elizabeth Blackwell -Valentines Day -Winter Olympics -Larry Nassar -Adam Schiff -Florida shooting -Ash Wednesday -Alex Smith -When We First Met -Super blue blood Moon -Government Shutdown Meaning -Black Panther -What Time Is The Super Bowl -Florida shooting -Carter G. Woodson -Lindsey Vonn -Rachel Brand -Winter Olympics -Super Bowl 2018 -Mikaela Shiffrin -Quincy Jones -Adam Rippon -Bitcoin Price -Virginia Woolf -Larry Nassar -Super Bowl 2018 -Shaun White -SpaceX -Elizabeth Blackwell -Culture 2 -Mikaela Shiffrin -Super blue blood Moon -Best Superbowl Commercials 2018 -Kim Kardashian -Super Bowl 2018 -Bruno Mars Tour 2018 -Elizabeth Blackwell -Government Shutdown -Fifty Shades Freed -Justin Timberlake -Paula Modersohn-Becker -Wing Bowl 2018 -Super Bowl 2018 -Super Bowl score -Paula Modersohn-Becker -Elizabeth Blackwell -Johnny Weir -Winter Olympics -SpaceX -What Time Is The Super Bowl -Winter Olympics -Kentucky shooting -Elizabeth Blackwell -Grammys 2018 -Super Bowl score -Google Drive -Virginia Woolf -Government shutdown 2018 -Kylie Jenner -State of the Union -SpaceX -Patriots -Super blue blood Moon -Florida shooting -Winter Olympics -Sergei Eisenstein -Vic Damone -Virginia Woolf -Mark Salling -The 15:17 to Paris -Super Bowl score -Larry Nassar -Larry Nassar -Groundhog Day 2018 -United States Of America Winter Olympics -Virginia Woolf -Patriots -Montreal Cognitive Assessment -Super Bowl 2018 -Super Bowl 2018 -Carter G. Woodson -Patriots -Winter Olympics -Esteban Loaiza -Wilder Penfield -Super Bowl 2018 -Oscar Nominations 2018 -Florida shooting -Bitcoin Price -Carter G. Woodson -Kylie Jenner -Carter G. Woodson -Lunar eclipse -Wilder Penfield -Justin Timberlake -Super Bowl score -Super Bowl 2018 -Florida shooting -Blake Griffin -Elizabeth Blackwell -Virginia Woolf -Virginia Woolf -Red Gerard -Kylie Jenner -Paula Modersohn-Becker -Wilder Penfield -Virginia Woolf -Carter G. Woodson -Wilder Penfield -UFC 220 -Amtrak -Carter G. Woodson -Fredo Santana -Florida shooting -earthquake -Shani Davis -Caroline Wozniacki -Andrew McCabe -Google Classroom -Alex Smith -Alessia Cara -Paula Modersohn-Becker -Fredo Santana -Logan Paul -Kylie Jenner -Super Bowl 2018 -Betty White -Mardi Gras 2018 -Eric Wood -Lunar eclipse -Columbine -Marlon Brando -Super Bowl 2018 -Luke Wilson -Black Panther -Wilder Penfield -Patriots -Winter Olympics -Kylie Jenner -NBA Trades -Winter Olympics -Wilder Penfield -Chloe Kim Snowboarder -Winter Olympics -Meteor -Government Shutdown -Shiffrin -Virginia Woolf -NHL All Star Game -Elizabeth Blackwell -Justin Timberlake -Google docs -Maria Menounos -Wilder Penfield -Houston Rockets -Bitcoin Price -Sergei Eisenstein -Langston Hughes -What Time Is The Super Bowl -Virginia Woolf -Football Playoffs 2018 -National Pizza Day -Florida shooting -Doomsday Clock -Kylie Jenner -Edwin Jackson -State of the Union -Blood Moon -Obama portrait -Patriots -calculator -Florida shooting -Wilder Penfield -Valentines Day Cards -Brynn Cameron -Virginia Woolf -Kim Cattrall -Vikings Vs Eagles -Government Shutdown 2018 -Florida shooting -Groundhog Day 2018 -stock market -Government Shutdown -Elizabeth Blackwell -Vince McMahon -Larry Nassar -BitConnect -Super Bowl 2018 -Justin Timberlake -Pro Bowl 2018 -AR-15 -Daryle Singletary -Elizabeth Blackwell -Virginia Woolf -Sergei Eisenstein -Sergei Eisenstein -Adam Rippon -Childish Gambino -Patriots -Isaiah Thomas -SpaceX -Tiger Woods -Virginia Woolf -Bitcoin Price -Homeland -Grammys 2018 -Carrie Underwood -Florida shooting -Super Bowl 2018 -Elizabeth Blackwell -Mexico earthquake -NBA Trades -Virginia Woolf -SpaceX -Danielle Herrington -Carter G. Woodson -Patriots -Super Bowl 2018 -Cavs -Michigan State -Winter Olympics -State of the Union -Larry Nassar -Call Me by Your Name -Super Bowl 2018 -Sarah Barthel -Winter Olympics -Patriots -Kylie Jenner -Patriots -Pro Bowl 2018 -Florida shooting -Altered Carbon -CNN -State of the Union -Super Blue Blood Moon -Rett Syndrome -Wilder Penfield -Super Bowl 2018 -Wilder Penfield -Wilder Penfield -Sergei Eisenstein -Elizabeth Blackwell -Adam Hicks -Wilder Penfield -Laura Ingraham -Daryle Singletary -Blake Griffin -Kylie Jenner -Wilder Penfield -Quincy Jones -What Time Is The Super Bowl -Carter G. Woodson -Johnny Weir -Bitcoin Price -Mark Salling -Elizabeth Blackwell -Cloverfield Paradox -Ash Wednesday -Derrick Rose -Sea of Thieves -The Home Depot -Super Bowl 2018 -Government shutdown -Wilder Penfield -Wilder Penfield -Patriots -The Home Depot -Obama portrait -Virginia Woolf -Carter G. Woodson -SpaceX -Super Bowl 2018 -Kesha Grammy -Happy Valentines Day -Super Bowl Commercials 2018 -Jennifer Aniston -What Time Is The Super Bowl -Paula Modersohn-Becker -Chicago West -Alaska earthquake -Adam Rippon -Paula Modersohn-Becker -Tom Izzo -Did the Groundhog See His Shadow -Virginia Woolf -Grammys 2018 -Sergei Eisenstein -NFC Championship Game 2018 -Sergei Eisenstein -Elizabeth Blackwell -Peter Rabbit -Jason Kelce -Tessa Virtue -NBA Trades -Super Bowl score -Sergei Eisenstein -Winter Olympics -Earthquake Today -Korea -Patriots -Grammys 2018 -Halsey -NBA Trades -Super Bowl score -Carter G. Woodson -The Home Depot -Elton John -Kylie Jenner -Cryptocurrency News -Happy Valentines Day -Kirstjen Nielsen -Bitcoin Price -Andre the Giant -Ash Wednesday -Super Bowl score -Jessica Chastain -Rasual Butler -Alex Reimer -Shaun White -Snap Stock -Steven Tyler -Google Classroom -Government Shutdown Meaning -Cloverfield Paradox -Super Bowl score -Justin Timberlake -Carter G. Woodson -Paula Modersohn-Becker -Winter Olympics -SpaceX -Patriots -IXL -Winter Olympics -Adam Rippon -Memo -Super Bowl 2018 -Childish Gambino -Blake Griffin -Tom Petty -Lil Pump -Elizabeth Blackwell -Oscar Nominations 2018 -Blake Griffin Trade -Wilder Penfield -12 Strong -What Time Is The Super Bowl -Super Bowl score -Carter G. Woodson -Mark Salling -Elizabeth Blackwell -Google Classroom -Virginia Woolf -Super Bowl 2018 -Kylie Jenner -Larry Nassar -Joe Kennedy -Paula Modersohn-Becker -Paula Modersohn-Becker -Rose McGowan -Black Panther -Black Panther -Chipper Jones -Trump State of the Union -Patriots -Bitcoin Price -Carter G. Woodson -Google Classroom -Chris Paul -Patriots -Google Drive -SpaceX -SpaceX -Wilder Penfield -Alaska earthquake -Kim Kardashian -Jane Fonda -Super Bowl score -Natalie Portman -Kylie Jenner -Florida shooting -Jennifer Aniston -Chris Paul -Paula Modersohn-Becker -Westerville Ohio -Florida shooting -Best Superbowl Commercials 2018 -Den of Thieves -Tom Petty -Virginia Woolf -Virginia Woolf -Super Bowl 2018 -Government shutdown -Ash Wednesday -Patriots -What Time Is The Super Bowl -Alessia Cara -Groundhog Day 2018 -Tom Brady -earthquake today -Virginia Woolf -Sting -Virginia Woolf -Robert Wagner -Elizabeth Blackwell -Nba All Star Draft -Larry Nassar -Winter Olympics -Lindsey Vonn -Red Gerard -Cloverfield Paradox -Edible Arrangements -Will Ferrell -Patriots -Google Drive -Winter Olympics -Super blue blood Moon -Red Gerard -Black Panther -Shaun White -Elizabeth Blackwell -SpaceX -Chloe Kim Snowboarder -Venom -Stan Lee -Kim Kardashian -The Resident -Carter G. Woodson -Mavic Air -Did the Groundhog See His Shadow -Forever My Girl -Patriots -XFL -Google Drive -Justin Timberlake -Daryle Singletary -Sergei Eisenstein -Black Panther -Paula Modersohn-Becker -Super Bowl 2018 -Virginia Woolf -Rachel Brand -Virginia Woolf -Wilder Penfield -Virginia Woolf -Super Bowl 2018 -Patriots -Oscar Nominations 2018 -Justin Timberlake -Natalie Wood -Carter G. Woodson -XFL -Florida shooting -Patriots -Larry Nassar -Winter Olympics -Elizabeth Blackwell -Scott Baio -Super blue blood Moon -Carter G. Woodson -Kylie Jenner -Kesha -Grammys 2018 -Meteor -State of the Union -Super blue blood Moon -Paula Modersohn-Becker -Scott Baio -Florida shooting -Super Bowl 2018 -What Time Is The Super Bowl -Red Gerard -SpaceX -XFL -Kristaps Porzingis -Sergei Eisenstein -UFC 220 -Wilder Penfield -Ann Curry -NBA Trades -Patriots -SpaceX -Alex Reimer -Elizabeth Blackwell -Kylie Jenner -Justin Timberlake -Super Bowl score -Super Bowl 2018 -Wilder Penfield -UFC 220 -Stan Lee -Sergei Eisenstein -Isaiah Thomas -Sergei Eisenstein -Bob Dole -Government Shutdown -Eli Manning -Elizabeth Blackwell -Winter Olympics -Super Bowl score -Kylie Jenner -Isaiah Thomas -The 15:17 to Paris -Fredo Santana -Super Bowl score -Bitcoin Price -Patriots -XFL -Duke basketball -Elizabeth Blackwell -Mikaela Shiffrin -Ursula Le Guin -Super blue blood Moon -Frank Reich -Kylie Jenner -Grammys 2018 -Super Bowl score -Sergei Eisenstein -Obama portrait -Grammys 2018 -Shiffrin -Super Bowl score -Fredo Santana -Johnny Weir -Wilder Penfield -Florida shooting -Kim Kardashian -Alaska earthquake -12 Strong -Edwin Jackson -Ellen Pompeo -Kylie Jenner -What Time Is The Super Bowl -Pink -Larry Nassar -Fredo Santana -This Is Us -NHL All Star Game -Alex Smith -Government Shutdown -Elizabeth Blackwell -Wilder Penfield -Phantom Thread -Shibutani -Mike Tomlin -Kentucky shooting -Super Bowl score -Sergei Eisenstein -Jessica Chastain -Patriots -Super blue blood Moon -Patriots -Dow Jones industrial average -Luke Wilson -Elizabeth Blackwell -Oscar Nominations 2018 -Justin Timberlake -Justin Timberlake -Cavs -Sergei Eisenstein -Mardi Gras 2018 -Virginia Woolf -Elizabeth Blackwell -Government Shutdown -Bitcoin Price -Super Bowl score -Devin Nunes -Grammys 2018 -Florida shooting -Carter G. Woodson -Mikaela Shiffrin -CNN -Super Bowl score -Altered Carbon -Fb Stock -Sean Hannity -What Time Is The Super Bowl -Elizabeth Blackwell -Bitcoin Price -Elizabeth Blackwell -What Time Is The Super Bowl -Did the Groundhog See His Shadow -Super Bowl score -Carter G. Woodson -Carter G. Woodson -United States Of America Winter Olympics -Edwin Jackson -XFL -Florida shooting -Johnny Weir -Groundhog Day 2018 -Wilder Penfield -H&r Block -Bradie Tennell -Black Panther -Tyler Hilinski -XFL -Winter Olympics -Patriots -Steve Wynn -Enzo Amore -Kylie Jenner -Paula Modersohn-Becker -Patriots -Paula Modersohn-Becker -Cloverfield Paradox -Elizabeth Blackwell -Elizabeth Blackwell -Florida shooting -SpaceX -Mike Tomlin -SpaceX -What Time Is The Super Bowl -Elizabeth Blackwell -Google Classroom -school closings -NBA Trades -Duke basketball -Senior Bowl -Donald Trump Jr -NBA Trades -Forever My Girl -Elton John tickets -BitConnect -Justin Timberlake -Jamie Anderson -Elizabeth Blackwell -Kylie Jenner -Elizabeth Blackwell -Patriots -Amy Schumer -What Time Is The Super Bowl -Wilder Penfield -Obama portrait -Super Bowl Winners -Paula Modersohn-Becker -Wilder Penfield -Super Bowl 2018 -Florida shooting -Tammy Duckworth -Wilder Penfield -Google Classroom -Elizabeth Blackwell -Patriots -Kylie Jenner -Super Bowl score -Mattie Larson -Kylie Jenner -Shaun White -Sergei Eisenstein -Matt Czuchry -Elizabeth Blackwell -Dow Jones -Chloe Kim -Puppy Bowl 2018 -Chief Wahoo -Justin Timberlake -Super Bowl 2018 -Grammys 2018 -Super Bowl score -Jo Jo White -Florida shooting -Florida shooting -Super Bowl 2018 -Chipper Jones -Sergei Eisenstein -United States Of America Winter Olympics -Kylie Jenner -Sergei Eisenstein -What Time Is The Super Bowl -SpaceX -Paula Modersohn-Becker -Paula Modersohn-Becker -Tyler Hilinski -Larry Nassar -Alaska earthquake -Amy Schumer -Florida shooting -Winter Olympics -Super Bowl 2018 -Chris Stapleton -Florida shooting -NBA Trades -Mark E Smith -Westerville Ohio -12 Strong -Super Bowl score -Kylie Jenner -Patriots -Super Bowl 2018 -Fredo Santana -Winter Olympics -Gianni Versace -Florida shooting -Grammys 2018 -Sergei Eisenstein -Pro Bowl 2018 -Maria Menounos -Walter Payton -Kylie Jenner -Brie Larson -Chinese New Year 2018 -SAG Awards 2018 -Vikings Vs Eagles -Paula Modersohn-Becker -Solo Trailer -Michigan State -Larry Nassar -Bradie Tennell -Scott Baio -Elizabeth Blackwell -Kim Kardashian -North Korean cheerleaders -Olive Garden -New England Patriots owner -Kylie Jenner -Gianni Versace -Joe Kennedy -Sea Of Thieves -Tom Brady -Paula Modersohn-Becker -Paula Modersohn-Becker -Patriots -Paula Modersohn-Becker -Dwyane Wade -Jason Kelce -Bitcoin Price -Carter G. Woodson -Justin Timberlake -Vikings Vs Eagles -Sergei Eisenstein -Florida shooting -Cloverfield Paradox -Winter Olympics -Florida shooting -Scott Baio -Winter Olympics -Adam Hicks -Justin Timberlake -Elizabeth Blackwell -Sergei Eisenstein -Grammys 2018 -Vanessa Marcil -Grammys 2018 -This Is Us -Super Bowl 2018 -Elizabeth Blackwell -Super Bowl 2018 -Elizabeth Blackwell -Super blue blood Moon -Vikings vs Eagles -Larry Nassar -Call Me by Your Name -Women's March 2018 -Patriots -Adam Rippon -Chinese New Year 2018 -Winter Olympics -Winter Olympics -Kylie Jenner -Wilder Penfield -School closings -Tyler Hilinski -Adam Rippon -Grammys 2018 -Alex Smith -Elton John -Winter Olympics -SpaceX -Carter G. Woodson -Justin Timberlake -Carter G. Woodson -Paula Modersohn-Becker -JUUL -Alexa Commercial -Amy Schumer -Chris Long -NBC Sports -Terrell Owens -Maddie Mastro -Elizabeth Blackwell -Vikings Vs Eagles -Florida shooting -Tara Lipinski -Winter Olympics -Oscar Nominations 2018 -Florida shooting -Justin Timberlake -Wilder Penfield -Wilder Penfield -Florida shooting -Sergei Eisenstein -Winter Olympics -Cherry Seaborn -Black Panther -Valentines Day -Oscar Gamble -Grammys 2018 -Sergei Eisenstein -Virginia Woolf -Government Shutdown -Patriots -Mardi Gras 2018 -Winter Olympics -Cavs -Forever My Girl -Kylie Jenner -What Time Is The Super Bowl -Patriots -Winter Olympics -Super Bowl score -Super Bowl Commercials 2018 -Patriots -Westminster Dog Show 2018 -Valentines Day -Groundhog Day 2018 -Stan Lee -Tom Petty -Sergei Eisenstein -Super Bowl 2018 -Johnny Weir -Shani Davis -Jane Fonda -Carter G. Woodson -Scott Baio -Joe Kennedy -Blake Griffin Trade -SpaceX -Football Playoffs 2018 -Red Gerard -Super Bowl score -Kesha -Wilder Penfield -Winter Olympics -Carter G. Woodson -Bitcoin Price -Florida shooting -Solo Trailer -Mark Salling -School Closings -Wilder Penfield -Presidents Day 2018 -Solo Trailer -Mardi Gras 2018 -Carter G. Woodson -Aaron Hernandez -New England Patriots owner -Patti LuPone -Vanessa Trump -Peter Rabbit -Patriots -Wilder Penfield -Super Bowl Commercials -NBA Trades -Sergei Eisenstein -Virginia Woolf -earthquake today -Alex Smith -Mark Salling -Elizabeth Blackwell -Atlanta Weather -Bitcoin Price -Carter G. Woodson -Super Bowl score -Sergei Eisenstein -Sergei Eisenstein -Winter Olympics -Sergei Eisenstein -SpaceX -Dow Jones -Super Bowl 2018 -Nintendo Labo -Sal Castro Middle School -Dane Cook -Black Panther -Government Shutdown -Groundhog Day 2018 -Chris Paul -Patriots -Justin Timberlake -AR-15 -Justin Timberlake -Virginia Woolf -Sergei Eisenstein -XFL -Super Bowl 2018 -Super Blue Blood Moon -School Closings -Wilder Penfield -Super Bowl 2018 -Joe Kennedy -Mickey Jones -NHL All Star Game -Joe Kennedy -Paula Modersohn-Becker -Bradie Tennell -Shaun White -Google Classroom -Did the Groundhog See His Shadow -Russell Wilson -Sergei Eisenstein -Pro Bowl 2018 -Kylie Jenner -Groundhog Day 2018 -Patriots -Trump State of the Union -Robinhood -Justin Timberlake -Shiffrin -Lindsey Vonn -Larry Nassar -Google Classroom -Elizabeth Blackwell -Pro Bowl 2018 -Super Bowl score -Kesha -Paula Modersohn-Becker -SpaceX -Waco -Government Shutdown -Grammys 2018 -Virginia Woolf -Elton John -Meteor -Sergei Eisenstein -Winter Olympics -Wilder Penfield -SpaceX -Patriots -Patriots -This Is Us -Mcdonald's -What Time Is The Super Bowl -Mike Fisher -Google Drive -Adam Rippon -Larry Nassar -Virginia Woolf -Altered Carbon -Winter Olympics -Mueller -Zion Williamson -Chloe Kim -Elizabeth Blackwell -Carter G. Woodson -Den of Thieves -Super Bowl score -Bitcoin Price -Florida shooting -Google Classroom -Government Shutdown -Sergei Eisenstein -Bruno Mars -Elizabeth Blackwell -Sergei Eisenstein -Dwyane Wade -Super blue blood Moon -Gods Plan -Olympic medal count -Wilder Penfield -Super Bowl score -Alessia Cara -Mcdonald's -Florida shooting -Get Out -Blue Ivy -Government Shutdown -Larry Nassar -Elton John -Snake -Carl Higbie -James Maslow -Timor Leste -Winter Olympics -Tyler Hilinski -Grammys 2018 -Mikaela Shiffrin -Classroom -Super Bowl score -AR-15 -Sergei Eisenstein -Olive Garden -United States Of America Winter Olympics -Elizabeth Blackwell -Super Bowl score -Super Bowl score -Olympic Medal Count -Wilder Penfield -Rodney Hood -Super Bowl 2018 -Carter G. Woodson -Oscar Nominations 2018 -Jennifer Aniston -Paula Modersohn-Becker -Jason Kelce -Shiffrin -Government Shutdown 2018 -Government Shutdown -Paula Modersohn-Becker -Government Shutdown Meaning -Did the Groundhog See His Shadow -Government Shutdown -Zion Williamson -Gods Plan -Sergei Eisenstein -State of the Union -Super Bowl 2018 -Super Bowl score -Sabrina Dhowre -Black Panther -What Time Is The Super Bowl -Andrew Cunanan -Valentines Day -Mardi Gras 2018 -Florida shooting -Elizabeth Blackwell -Larry Nassar -School closings -Kim Kardashian -Blake Griffin -Virginia Woolf -Derrick Rose -Super Bowl 2018 -Omarosa -Valentines Day -slides -NFL Honors -Virginia Woolf -Patti LuPone -Wonder Woman -Shani Davis -Sergei Eisenstein -Black Panther -Vikings vs Eagles -Super Bowl 2018 -Paula Modersohn-Becker -Dow Jones -Incredibles 2 -Paula Modersohn-Becker -Grammys 2018 -Paula Modersohn-Becker -Mardi Gras 2018 -Duke Basketball -What Time Is The Super Bowl -Kylie Jenner -Rasual Butler -Larry Nassar -What Time Is The Super Bowl -State of the Union -Virginia Woolf -Wilder Penfield -Justin Timberlake -Winter Olympics -Government shutdown 2018 -Meteor -What Time Is The Super Bowl -State of the Union -Super blue blood Moon -Kylie Jenner -Wilder Penfield -Winter Olympics -Groundhog Day 2018 -Vikings Vs Eagles -Winter Olympics -Grammys 2018 -Patriots -What Time Is The Super Bowl -Paula Modersohn-Becker -Russell Wilson -school closings -Patriots -Winter Olympics -Elizabeth Blackwell -Natalie Portman -Kevin Love -Wilder Penfield -Carter G. Woodson -Super Bowl score -Winter Olympics -Virginia Woolf -Rodney Hood -Grammys 2018 -Super Bowl score -Mark Salling -Steve Wynn -Dane Cook -Florida shooting -Government Shutdown -Paula Modersohn-Becker -Grammys 2018 -Patriots -Carter G. Woodson -Real Madrid -Florida shooting -Justin Timberlake -Lil Xan -Virginia Woolf -Patriots -Elon Musk -Elizabeth Blackwell -The 15:17 to Paris -Robert Wagner -Elizabeth Blackwell -Wilder Penfield -curling -Rodney Hood -Sergei Eisenstein -Grammys 2018 -Tom Brady daughter -Mark Salling -Nancy Pelosi -Sergei Eisenstein -Winter Olympics -Winter Olympics -Super Bowl 2018 -Virginia Woolf -Super blue blood Moon -Virginia Woolf -Government Shutdown -Super Bowl 2018 -Sammy Sosa -Carter G. Woodson -Super Bowl score -Cherry Seaborn -Royal Rumble 2018 -Walter Payton -Super Bowl score -Markelle Fultz -Uma Thurman -Omarosa -Patriots -Virginia Woolf -Brie Larson -Super Bowl score -Wilder Penfield -Government Shutdown -Elizabeth Blackwell -Vikings Vs Eagles -Matt Patricia -Chris Long -Vikings Vs Eagles -Alessia Cara -Carter G. Woodson -Virginia Woolf -Wilder Penfield -Black Panther -Elizabeth Blackwell -calculator -State of the Union -JUUL -Super Bowl 2018 -Women's March 2018 -Super Bowl 2018 -Sergei Eisenstein -Solo Trailer -Super Bowl 2018 halftime show -Russell Wilson -Amy Schumer -Virginia Woolf -Julie Ertz -Mark Salling -Sharon Stone -Virginia Woolf -CBS Sports -Olympic medal count -Black Panther -Google Drive -Did the Groundhog See His Shadow -Vikings vs Eagles -Trump State of the Union -Super Bowl 2018 -Sergei Eisenstein -Super Bowl 2018 -Dane Cook -Justin Timberlake -Super Bowl Commercials 2018 -The 15:17 to Paris -Tiger Woods -Did the Groundhog See His Shadow -Chloe Kim -Lena Zawaideh -Oscar Nominations 2018 -Virginia Woolf -Super Bowl 2018 -Joe Kennedy -Kylie Jenner -What Time Is The Super Bowl -Rasual Butler -Childish Gambino -Grammys 2018 -Grammys 2018 -Wilder Penfield -Elizabeth Blackwell -State of the Union -Josh McDaniels -School closings -Reg E Cathey -Patriots -Carrie Underwood -Virginia Woolf -CNN -Elizabeth Blackwell -Florida shooting -Tiger Woods -Elon Musk -Cryptocurrency News -Florida shooting -Wilder Penfield -Super Bowl score -Heath Ledger -Government Shutdown -Patriots -Sergei Eisenstein -Chris Long -Winter Olympics -Fredo Santana -Super Bowl score -Wilder Penfield -Google docs -Winter Olympics -New England Patriots owner -Virginia Woolf -Betty White -Wilder Penfield -Olympic medal count -Carter G. Woodson -Virginia Woolf -Sergei Eisenstein -Patriots -Matt Patricia -Dow Jones -NBA Trades -John Mahoney -Super Bowl score -Sergei Eisenstein -NBA Trades -Elizabeth Blackwell -Shaun White -This is Us -SpaceX -Winter Olympics -Sergei Eisenstein -Wilder Penfield -Valentines Day -Wilder Penfield -Blue Ivy -Paula Modersohn-Becker -Duke Basketball -Wilder Penfield -Mickey Jones -Sabrina Dhowre -Lena Zawaideh -Steve Wynn -Groundhog Day 2018 -SpaceX -Vikings Vs Eagles -State of the Union -What Time Is The Super Bowl -Memo -Wilder Penfield -Chicago West -Hillary Clinton -CNN -Winter Olympics -lady gaga grammys -Winter Olympics -Elizabeth Blackwell -Mikaela Shiffrin -Black Panther -Virginia Woolf -Google Classroom -Bradie Tennell -Carter G. Woodson -Pro Bowl 2018 -Heath Ledger -Valentines Day Memes -Kesha Grammy -Winter Olympics -Patriots -Johnny Weir -SpaceX -Shaun White -Government shutdown 2018 -Dwyane Wade -Den of Thieves -Paula Modersohn-Becker -State of the Union -Obama portrait -Detroit Lions -Super Bowl 2018 -Chipper Jones -Mikaela Shiffrin -Paula Modersohn-Becker -Super Bowl 2018 -NBA Trades -Fifty Shades Freed -Virginia Woolf -Patriots -Tom Brady daughter -Carter G. Woodson -Robert Mueller -Blake Griffin -Johnny Weir -Sergei Eisenstein -XFL -Jennifer Aniston -Virginia Woolf -Columbine Shooting -Elton John -Super blue blood Moon -Josh McDaniels -Chicago West -Florida shooting -Larry Nassar -Super Bowl score -Tyler Hilinski -Winter Olympics -Florida shooting -Black Panther -Virginia Woolf -SpaceX -Winter Olympics -Virginia Woolf -Patriots -Black Panther -Oscar Nominations 2018 -Sergei Eisenstein -Super Bowl score -Friends movie -Pro Bowl 2018 -Elizabeth Blackwell -Government Shutdown -Florida shooting -Florida shooting -Wilder Penfield -NBA Trades -Justin Timberlake -Virginia Woolf -Wilder Penfield -Paula Modersohn-Becker -Rasual Butler -Tonga -Sergei Eisenstein -Super Bowl score -Paula Modersohn-Becker -Carter G. Woodson -Paula Modersohn-Becker -Government shutdown -Shaun White -Super Bowl score -SpaceX -XFL -Winter Olympics -Super Bowl 2018 -Wilder Penfield -Super Bowl 2018 -Omarosa -SpaceX -Cavs -Super Bowl 2018 -Chloe Kim -Paula Modersohn-Becker -Zion Williamson -Peter Rabbit -Florida shooting -Amtrak -Elton John -Kylie Jenner -Super Bowl 2018 -Chinese New Year 2018 -Government shutdown 2018 -Jason Kidd -State of the Union -Gianni Versace -Daniel Kaluuya -Patriots -Super Bowl 2018 -Fredo Santana -Did the Groundhog See His Shadow -State of the Union -Wilder Penfield -Carter G. Woodson -Government Shutdown -Valentines Day Memes -Government Shutdown -Groundhog Day 2018 -Aaliyah -Winter Olympics -Patriots -Lonzo Ball -Super Bowl 2018 -Chinese New Year 2018 -Super Bowl 2018 -Sergei Eisenstein -Bitcoin Price -calculator -New England Patriots owner -Elton John -Dennis Edwards -Wilder Penfield -Gianni Versace -Bitcoin Price -Kim Kardashian -SAG Awards 2018 -Happy Valentines Day -Tom Petty -Florida shooting -Government Shutdown -Sergei Eisenstein -Sergei Eisenstein -SAG Awards 2018 -Shaun White -Patriots -Scott Baio -Winter Olympics -BitConnect -Super Bowl 2018 -Super Bowl score -Florida shooting -Super Bowl 2018 -Paul Ryan -Patriots -Government shutdown 2018 -New England Patriots owner -Super Bowl score -Prince William -Solo Trailer -Carter G. Woodson -SpaceX -Super Bowl score -Michigan State -Terrell Owens -Paula Modersohn-Becker -Carter G. Woodson -Justin Timberlake -Gianni Versace -school closings -Winter Olympics -Despacito -Josh McDaniels -Patriots -Patriots -Super Bowl score -Larry Nassar -Sergei Eisenstein -fake news awards -NBC Sports -Sea Of Thieves -Shaun White -Adam Rippon -Florida shooting -Daryle Singletary -Super Bowl 2018 -Amy Schumer -Sarah Barthel -Rodney Hood -Justin Timberlake -Paula Modersohn-Becker -Grammys 2018 -Wilder Penfield -Kylie Jenner -Dow Jones -Jennifer Aniston -Super Bowl 2018 -Rose McGowan -NFC Championship Game 2018 -Paula Modersohn-Becker -Rasual Butler -Paula Modersohn-Becker -Elizabeth Blackwell -Forever My Girl -State of the Union -slides -Scott Baio -Super Bowl score -Winter Olympics -Abraham Lincoln -Kesha -John Mahoney -Jessica Chastain -Super Bowl score -Super Bowl 2018 halftime show -Devin Nunes -Sergei Eisenstein -Sergei Eisenstein -Virginia Woolf -National Pizza Day -Kim Kardashian -Homeland -Paula Modersohn-Becker -Bitcoin Price -Olympic Medal Count -Larry Nassar -Vikings Vs Eagles -XFL -Jason Kelce -Happy Valentines Day -Rob Porter -Carter G. Woodson -Robert Wagner -Ash Wednesday -Super Bowl score -Patriots -SpaceX -Larry Nassar -Kylie Jenner -Elizabeth Blackwell -Virginia Woolf -Larry Nassar -Carter G. Woodson -Release The Memo -Super Bowl score -Tom Petty -Justin Timberlake -Tom Petty -Omarosa -Chicago Weather -Sergei Eisenstein -Dow Jones -Sean Hannity -Mexico Vs Bosnia -Sergei Eisenstein -Larry Nassar -Sergei Eisenstein -Alaska earthquake -Google Drive -Jennifer Aniston -Ash Wednesday -Rasual Butler -Grammys 2018 -Virginia Woolf -Carter G. Woodson -Royal Rumble 2018 -Halsey -Mark E Smith -Valentines Day -Justin Timberlake -Olive Garden -Patriots -Chinese New Year 2018 -calculator -Super Bowl 2018 -Elizabeth Blackwell -Virginia Woolf -Wilder Penfield -Virginia Woolf -Mexico Vs Bosnia -Harley Barber -Florida shooting -slides -Portia de Rossi -Winter Olympics -Jason Kelce -Paula Modersohn-Becker -Super Bowl score -Elizabeth Blackwell -SpaceX -Florida shooting -Winter Olympics -Alaska earthquake -Omarosa -Dow Jones -Mardi Gras 2018 -Florida shooting -Google docs -Super Bowl score -Super Bowl Commercials 2018 -Government shutdown -Jimmy Garoppolo -Carter G. Woodson -Elizabeth Blackwell -Justin Timberlake -Real Madrid -XFL -Korea -Dow Jones -Daniel Kaluuya -Matt Patricia -Super Bowl score -Carrie Underwood -Carter G. Woodson -Justin Timberlake -Mikaela Shiffrin -Mark Salling -Government Shutdown -Neil Diamond -Winter Olympics -Super blue blood Moon -Friends The Movie 2018 -Oscar Nominations 2018 -Justin Timberlake -Fifty Shades Freed -Winter Olympics -Florida shooting -Winter Olympics -Virginia Woolf -Classroom -Justin Timberlake -Happy Valentines Day -Cloverfield Paradox -Vikings Vs Eagles -Sammy Sosa -Sergei Eisenstein -UFC 221 -Winter Olympics -Maze Runner: The Death Cure -Portia de Rossi -Memo -Government Shutdown Meaning -Winter Olympics -Sarah Barthel -Meteor -What Time Is The Super Bowl -Black Panther -Tyler Hilinski -Grammys 2018 -Eli Manning -Paula Modersohn-Becker -Blake Griffin Trade -Patriots -Columbine -Happy Valentines Day -Sergei Eisenstein -Cloverfield Paradox -Blake Griffin -Paula Modersohn-Becker -Justin Timberlake -Mark Salling -Eli Manning -Carter G. Woodson -Super Bowl 2018 -Grammys 2018 -Larry Nassar -Larry Nassar -Sergei Eisenstein -Rodney Hood -Vikings vs Eagles -SpaceX -Edwin Jackson -Elton John -Elizabeth Blackwell -Google docs -Wilder Penfield -Sergei Eisenstein -Elizabeth Blackwell -Wilder Penfield -NBA Trades -Super Bowl 2018 -Isaiah Thomas -Wilder Penfield -SpaceX -Florida shooting -Super Bowl score -Super Bowl 2018 -Winter Olympics -Paula Modersohn-Becker -Wilder Penfield -Justin Timberlake -Grammys 2018 -NFL Honors -Government Shutdown -Wilder Penfield -Jessica Chastain -Sergei Eisenstein -Black Panther -Sergei Eisenstein -Johnny Weir -Jason Momoa -Mardi Gras 2018 -Paula Modersohn-Becker -Happy Valentines Day -Camila Cabello -Google docs -Rasual Butler -James Maslow -Lunar eclipse -Super Bowl score -Virginia Woolf -Mardi Gras 2018 -Government shutdown 2018 -Super Bowl 2018 -Carter G. Woodson -Paula Modersohn-Becker -Hope Hicks -Sergei Eisenstein -SpaceX -United States Of America Winter Olympics -Celebrity Big Brother cast -Steve Wynn -Justin Timberlake -Elizabeth Blackwell -Uma Thurman -Patriots -Elizabeth Blackwell -Wilder Penfield -Maria Menounos -Elizabeth Blackwell -Florida shooting -Super Bowl 2018 -Justin Timberlake -What Time Is The Super Bowl -Wilder Penfield -Patriots -Kylie Jenner Baby Girl -Black Panther -Tiger Woods -Tom Brady daughter -Kentucky shooting -Paula Modersohn-Becker -Government Shutdown -SpaceX -Florida shooting -Paula Modersohn-Becker -Wilder Penfield -Jennifer Aniston -Winter Olympics -Super Bowl 2018 -What Time Is The Super Bowl -Shaun White -Cedi Osman -Cherry Seaborn -Winter Olympics -Wilder Penfield -Justin Timberlake -Sergei Eisenstein -Virginia Woolf -Virginia Woolf -Matt Patricia -Kylie Jenner -Elizabeth Blackwell -Sergei Eisenstein -Lunar eclipse -Super Bowl 2018 -pissant -Super blue blood Moon -Patriots -Larry Nassar -Danielle Herrington -Taiwan -Super blue blood Moon -Andrew McCabe -Carter G. Woodson -Snake -Grammys 2018 -Chris Paul -Dwyane Wade -Snapchat Update -Elizabeth Blackwell -SpaceX -Valentines Day Images -Elizabeth Blackwell -Kentucky shooting -Elizabeth Blackwell -Shaun White -Stormi -Rett Syndrome -Chicago Weather -Government shutdown 2018 -Zuleyka Rivera -Wilder Penfield -Government Shutdown 2018 -The Home Depot -Super Bowl 2018 -Morgan Freeman -Bill Belichick -Happy Valentines Day -Waco -Winter Olympics -Super blue blood Moon -Bill Paxton -Rett Syndrome -Super Bowl 2018 -Paula Modersohn-Becker -Tyler Hilinski -Super Bowl score -Super blue blood Moon -Super blue blood Moon -Chinese New Year 2018 -Virginia Woolf -Elizabeth Blackwell -Dua Lipa -Kylie Jenner -calculator -Groundhog Day 2018 -John Mahoney -Cryptocurrency News -Super Bowl score -Wilder Penfield -Luke Wilson -Farmers Insurance Open 2018 -Google Classroom -SpaceX -Shani Davis -Elizabeth Blackwell -Super Bowl Commercials 2018 -Jason Kidd -Doomsday Clock -Paula Modersohn-Becker -Kylie Jenner -Johnny Weir -Elizabeth Blackwell -Brynn Cameron -Super Bowl score -Super Bowl 2018 -Groundhog Day 2018 -Patriots -Wilder Penfield -Super Bowl score -Dow Jones -Daryle Singletary -Virginia Woolf -Celtics -Paula Modersohn-Becker -Charissa Thompson -Chris Mazdzer -Mikaela Shiffrin -What Time Is The Super Bowl -Larry Nassar -Emily Sweeney -Puppy Bowl 2018 -What Time Is The Super Bowl -Memo -SpaceX -Winter Olympics -Matt Patricia -Kim Kardashian -Florida shooting -Alison Brie -CNN -tsunami -Happy Valentines Day -State of the Union -Justin Timberlake -Super Bowl 2018 -Mark Salling -Wilder Penfield -Kate Upton -Alaska earthquake -Carter G. Woodson -Alessia Cara -SpaceX -Patriots -Super Bowl score -Paula Modersohn-Becker -Super Bowl 2018 -Happy Valentines Day -Wilder Penfield -Elizabeth Blackwell -Sergei Eisenstein -Jacob Copeland -Mark Salling -Kylie Jenner -Sergei Eisenstein -Otto Warmbier -Elizabeth Blackwell -Paula Modersohn-Becker -Government Shutdown -Blood Moon -Edgar Martinez -Paula Modersohn-Becker -Super Bowl score -Florida shooting -Fredo Santana -Elizabeth Blackwell -Virginia Woolf -Winter Olympics -Terrell Owens -Florida shooting -Florida shooting -Shaun White -Carter G. Woodson -Virginia Woolf -Royal Rumble 2018 -Super Bowl 2018 -Kylie Jenner -Solo Trailer -Florida shooting -Winter Olympics -Andrew Cunanan -Elizabeth Blackwell -Isaiah Thomas -Korea -Paula Modersohn-Becker -Carter G. Woodson -Pro Bowl 2018 -Altered Carbon -Kylie Jenner -Grammys 2018 -Super Bowl score -Carter G. Woodson -Super blue blood Moon -Carter G. Woodson -Super Bowl 2018 -Wilder Penfield -Elizabeth Blackwell -Ronaldinho -Florida shooting -Winter Olympics -Olympics 2018 -Government Shutdown 2018 -Wilder Penfield -Black Panther -Puppy Bowl 2018 -Super Bowl score -What Time Is The Super Bowl -What Time Is The Super Bowl -DeMarcus Cousins -Edible Arrangements -Sergei Eisenstein -State of the Union -Super Bowl score -Obama portrait -Andrew Cunanan -Winter Olympics -Kate Upton -Super Bowl score -Wilder Penfield -Carter G. Woodson -Chloe Kim -CNN -Portia de Rossi -Robert Wagner -Kylie Jenner -Greg Monroe -Chloe Kim -Elizabeth Blackwell -Wilder Penfield -Super Bowl 2018 -Halsey -Oscar Nominations 2018 -Korea -Sergei Eisenstein -Kesha Grammy -Winter Olympics -United States Postal Service -Vince McMahon -Larry Nassar -Kim Kardashian -Winter Olympics -State of the Union -State of the Union -Justin Timberlake -Wilder Penfield -Groundhog Day 2018 -Wilder Penfield -Memo -Patriots -What Time Is The Super Bowl -Caroline Wozniacki -Super Bowl 2018 -Outback Steakhouse -Florida shooting -Super Bowl score -Winter Olympics -Joel Taylor -Grammys 2018 -Florida shooting -Olympics 2018 -Carter G. Woodson -school closings -Winter Olympics -Amy Schumer -Pro Bowl 2018 -Groundhog Day 2018 -Winter Olympics -Paula Modersohn-Becker -Super Bowl 2018 -Florida shooting -Wilder Penfield -Government Shutdown Meaning -Kylie Jenner -Winter Olympics -Kodak Black -Otto Warmbier -AR-15 -SpaceX -Government Shutdown -Patti LuPone -Sergei Eisenstein -Sergei Eisenstein -Government Shutdown -Rasual Butler -Trayvon Martin -Groundhog Day 2018 -Kylie Jenner -This is Us -Megan Barry -Justin Timberlake -Trump State of the Union -Florida shooting -Adam Rippon -Korea -Winter Olympics -Carter G. Woodson -Carter G. Woodson -What Time Is The Super Bowl -SpaceX -Mcdonald's -Waco -Shaun White -Valentines Day -Mark Salling -Sergei Eisenstein -Adam Rippon -Super Bowl 2018 -Super Bowl score -Virginia Woolf -Terrell Owens -Government shutdown 2018 -State of the Union -Groundhog Day 2018 -Patriots -Wilder Penfield -UFC 220 -Vikings vs Eagles -Paula Modersohn-Becker -Carrie Underwood -Joe Kennedy -Paula Modersohn-Becker -Kesha -Wilder Penfield -Dow Jones -NASCAR -Super Blue Blood Moon -Elizabeth Blackwell -SAG Awards 2018 -Jessica Chastain -What Time Is The Super Bowl -Super Bowl 2018 halftime show -Obama portrait -Mark Salling -Super blue blood Moon -Super Bowl 2018 -Patriots -Bitcoin Price -Justin Timberlake -Patriots -Patriots -Paula Modersohn-Becker -Patti LuPone -United States Postal Service -UFC 220 -Paula Modersohn-Becker -Winter Olympics -Betty White -Larry Nassar -Wilder Penfield -Winter Olympics -Virginia Woolf -Wilder Penfield -SAG Awards 2018 -Carter G. Woodson -Elizabeth Blackwell -Justin Timberlake -Super Bowl 2018 -Kim Kardashian -Dow Jones -Patriots -Justin Timberlake -Solo Trailer -Super Bowl 2018 -Memo -Anna Kournikova -Hostiles -Uma Thurman -Sergei Eisenstein -Rasual Butler -Winter Olympics -Elizabeth Blackwell -Wilder Penfield -Virginia Woolf -Winter Olympics -Shaun White -Altered Carbon -NBA Trades -Warren Miller -Tom Brady daughter -What Time Is The Super Bowl -Real Madrid -Larry Nassar -Amy Schumer -NSA -Paula Modersohn-Becker -Florida shooting -Super Bowl 2018 -Bitcoin Price -Shaun White -Super Bowl 2018 -Tonga -Larry Nassar -Super Bowl Commercials 2018 -Doomsday Clock -Aaliyah -Super Bowl 2018 -Maze Runner: The Death Cure -Sandy Hook -Virginia Woolf -Winter Olympics -Maze Runner: The Death Cure -SpaceX -Incredibles 2 -Marlon Brando -Winter Olympics -Google docs -SpaceX -Google docs -Google Drive -Call Me by Your Name -Dow Jones -Enzo Amore -Patriots -Russell Wilson -Super blue blood Moon -Olympic medal count -Elizabeth Blackwell -Tyler Hilinski -Florida shooting -Paula Modersohn-Becker -Justin Timberlake -Patriots -This Is Us -Justin Timberlake -Alex Smith -Paula Modersohn-Becker -Florida shooting -What Time Is The Super Bowl -Sergei Eisenstein -Justin Timberlake -Paula Modersohn-Becker -SAG Awards 2018 -Vince McMahon -Wilder Penfield -Wilder Penfield -Elizabeth Blackwell -Roger Federer -Stan Lee -Google docs -Wilder Penfield -Women's March 2018 -Dow Jones -Kylie Jenner -Cavs -Kylie Jenner -Eli Manning -Mark Salling -Steve Wynn -United States Postal Service -Paula Modersohn-Becker -Government Shutdown -Patriots -NBA Trades -The Home Depot -What Time Is The Super Bowl -Government Shutdown -Patriots -Mark Salling -Florida shooting -Early Man -Danielle Herrington -Devin Nunes -Florida shooting -Warren Miller -Florida shooting -Winter Olympics -Wilder Penfield -Vanity Fair Cover -Sergei Eisenstein -Happy Valentines Day -Fredo Santana -Adam Rippon -Paula Modersohn-Becker -Justin Timberlake -NFL Honors -Elizabeth Blackwell -Red Gerard -Shaun White -Eli Manning -Carter G. Woodson -Larry Nassar -Ash Wednesday -Sergei Eisenstein -Yahoo Finance -Greg Monroe -Virginia Woolf -What Time Is The Super Bowl -Wilder Penfield -Scott Baio -Cloverfield Paradox -Patriots -Quincy Jones -Super Bowl 2018 -Dow Jones -Esteban Loaiza -Carter G. Woodson -Super Bowl 2018 -Larry Nassar -Paula Modersohn-Becker -Google Drive -Bitcoin Price -Groundhog Day 2018 -Happy Valentines Day -Justin Timberlake -Florida shooting -Amy Schumer -Blood Moon -Vikings vs Eagles -Paula Modersohn-Becker -Sergei Eisenstein -Solo Trailer -Virginia Woolf -Elizabeth Blackwell -Classroom -Blood Moon -Jessica Chastain -Vikings Vs Eagles -Super Bowl 2018 -Danielle Herrington -Adam Rippon -Carter G. Woodson -Super Bowl 2018 -What Time Is The Super Bowl -Kim Kardashian -Kim Kardashian -Blood Moon -Virginia Woolf -XFL -Patriots -Super Bowl Commercials 2018 -Winter Olympics -Wilder Penfield -Carter G. Woodson -Super Bowl 2018 -Patriots -Elizabeth Blackwell -Rachel Brand -Florida shooting -Mark Salling -Patriots -SAG Awards 2018 -Kim Kardashian -Tom Petty -Virginia Woolf -Super Bowl 2018 -Venom -Government Shutdown -Super Bowl score -Carter G. Woodson -Obama portrait -Trump State of the Union -Super Bowl score -Johnny Weir -Carter G. Woodson -Super Bowl 2018 -Virginia Woolf -Justin Timberlake -Memo -Sergei Eisenstein -Sergei Eisenstein -Carter G. Woodson -Kylie Jenner -Real Madrid -Terrell Owens -This Is Us -NBA Trades -Grammys 2018 -Michigan State -Tesla in space -Blood Moon -Mexico Vs Bosnia -Kentucky shooting -Elizabeth Blackwell -Carter G. Woodson -Mardi Gras 2018 -Super Bowl 2018 -Justin Timberlake -Kodak Black -Elizabeth Blackwell -Joe Kennedy -Bitcoin Price -Lakers -Lunar eclipse -Patriots -What Time Is The Super Bowl -Cloverfield Paradox -Florida shooting -Dow Jones -Rasual Butler -Bill Belichick -Bitcoin Price -Paula Modersohn-Becker -What Time Is The Super Bowl -Post Malone -Wilder Penfield -Paula Modersohn-Becker -Peter Rabbit -Wilder Penfield -Justin Timberlake -All Star Weekend 2018 -Rasual Butler -Winter Olympics -Kylie Jenner -Lakers -CNN -Dragon Ball Super -Snapchat Update -Super Bowl 2018 -Winter Olympics -Carter G. Woodson -Super Bowl score -Quincy Jones -Sergei Eisenstein -SAG Awards 2018 -Carter G. Woodson -shutdown -Justin Timberlake -Solo Trailer -Winter Olympics -Super Bowl score -Meteor -Sergei Eisenstein -Sea Of Thieves -Grammys 2018 -Kawhi Leonard -Kim Kardashian -Simona Halep -Rasual Butler -Government shutdown 2018 -Omarosa -The First Purge -Memo -Childish Gambino -Grammys 2018 -Grammys 2018 -Omarosa -Florida shooting -Kylie Jenner -Winter Olympics -Super blue blood Moon -government shutdown -Grammys 2018 -Happy Valentines Day -Jennifer Aniston -Reg E Cathey -Super Bowl Commercials -Government Shutdown -Korea -Justin Timberlake -Kylie Jenner -Patriots -Grammys 2018 -Danielle Herrington -Shaun White -Super Bowl 2018 -Justin Timberlake -Florida shooting -Super Bowl 2018 -Jason Kelce -Super Bowl 2018 -12 Strong -Sergei Eisenstein -Den of Thieves -Cherry Seaborn -Paula Modersohn-Becker -Apple stock -Mark Salling -Super Bowl 2018 -Virginia Woolf -Dennis Edwards -Andrew Cunanan -Isaiah Canaan -Phantom Thread -Vikings Vs Eagles -Virginia Woolf -Super Bowl 2018 -Fifty Shades Freed -Florida shooting -Grammys 2018 -Halsey -This Is Us -Florida shooting -Larry Nassar -Patriots -Dow Jones -Rihanna -Super Bowl score -Robert Mueller -Elizabeth Blackwell -Despacito -Super Bowl 2018 -Super Bowl 2018 -Carter G. Woodson -Sergei Eisenstein -Patriots -Super Bowl 2018 -Super Bowl score -Olympic Medal Count -Rasual Butler -Sergei Eisenstein -Valentines Day -CNN -Wilder Penfield -Chinese New Year 2018 -Andrew McCabe -Super Bowl 2018 -Fredo Santana -Elizabeth Blackwell -Bill Belichick -Dow Jones -Jessica Biel -Alex Reimer -Virginia Woolf -Google docs -Government Shutdown -Florida shooting -Oscar Nominations 2018 -Mardi Gras 2018 -Winter Olympics -Bitcoin Price -Josh McDaniels -Jennifer Aniston -Luke Wilson -Ellen DeGeneres -Grammys 2018 -Super Bowl 2018 -What Time Is The Super Bowl -Shani Davis -Winter Olympics -Kylie Jenner -Olympics 2018 -Mitt Romney -Bitcoin Price -NFC Championship Game 2018 -Super Bowl score -National Pizza Day -Grammys 2018 -New England Patriots owner -SAG Awards 2018 -Winter Olympics -Kylie Jenner -Oscar Nominations 2018 -Florida shooting -Elizabeth Blackwell -earthquake today -Winter Olympics -Carter G. Woodson -Adam Hicks -Winter Olympics -Florida shooting -New England Patriots owner -State of the Union -Kylie Jenner -Lunar eclipse -12 Strong -Virginia Woolf -Enzo Amore -Edwin Jackson -Wilder Penfield -Government Shutdown -Julie Ertz -Lindsey Vonn -Elizabeth Blackwell -Elizabeth Blackwell -Government Shutdown -Elton John -Cherry Seaborn -Elizabeth Blackwell -Vikings Vs Eagles -What Time Is The Super Bowl -Justin Timberlake -Paula Modersohn-Becker -What Time Is The Super Bowl -Shaun White -Larry Nassar -Alessia Cara -School Closings -Johnny Weir -Wilder Penfield -Super Bowl score -Happy Valentines Day -Government Shutdown Meaning -Dow Jones -Winter Olympics -Bitcoin Price -Kim Cattrall -Vikings Vs Eagles -Florida shooting -Bitcoin Price -Elizabeth Blackwell -Riverdale -Vikings Vs Eagles -Super Bowl score -CNN -Wilder Penfield -Patriots -Woody Allen -Senior Bowl -Grammys 2018 -Groundhog Day 2018 -Morgan Freeman -Tom Brady -Elizabeth Blackwell -Doomsday Clock -What Time Is The Super Bowl -Joel Taylor -Rodney Hood -Call Me by Your Name -Sergei Eisenstein -Kylie Jenner -Joe Kennedy -Oar Olympics -Samson -Shaun White -Black Panther -What Time Is The Super Bowl -Government shutdown 2018 -Florida shooting -Memo -Celtics -Steve Mcnair -Harley Barber -Ann Curry -Larry Nassar -Larry Nassar -Super Bowl score -Grammys 2018 -Blood Moon -Mardi Gras 2018 -The 15:17 to Paris -Florida shooting -Super Bowl 2018 -Sergei Eisenstein -Virginia Woolf -Royal Rumble 2018 -Virginia Woolf -Florida shooting -Isaiah Canaan -Grey's Anatomy -Carter G. Woodson -Florida shooting -Tonga -Patriots -Paula Modersohn-Becker -Groundhog Day 2018 -school closings -Carter G. Woodson -State of the Union -Larry Nassar -Super Bowl 2018 -Virginia Woolf -Virginia Woolf -Carter G. Woodson -Patriots -Eli Manning -Vikings vs Eagles -Patriots -Camila Cabello -Meteor -Wilder Penfield -Government Shutdown -Florida shooting -Meteor -Florida shooting -Peter Rabbit -Paula Modersohn-Becker -Government Shutdown -Elizabeth Blackwell -Sergei Eisenstein -Government Shutdown -Government Shutdown -Amy Schumer -Sergei Eisenstein -Super Bowl Commercials 2018 -Eli Manning -SpaceX -Mary And The Witch's Flower -Virginia Woolf -Florida shooting -Oscar Nominations 2018 -Mark E Smith -Super Bowl score -Eli Manning -Royal Rumble 2018 -Camila Cabello -Rob Porter -Government shutdown 2018 -Google Classroom -Terrell Owens -Andrew Cunanan -Winter Olympics -SpaceX -Rob Porter -Bill Paxton -Carter G. Woodson -Peter Rabbit -Waco -Purdue basketball -Super Bowl Commercials 2018 -Stock Market Crash Today -Justin Timberlake -Paula Modersohn-Becker -Chinese New Year 2018 -Monster Hunter World -Sergei Eisenstein -Super Bowl 2018 -Florida shooting -Larry Nassar -Vikings Vs Eagles -Cbs -Olympic medal count -Vikings Vs Eagles -Winter Olympics -Sean Hannity -Trump State of the Union -State of the Union -Larry Nassar -Government shutdown 2018 -Paula Modersohn-Becker -Super Bowl 2018 -Olympic medal count -Carter G. Woodson -Florida shooting -Florida shooting -Paula Modersohn-Becker -Michigan State -Elizabeth Blackwell -Wilder Penfield -Puppy Bowl 2018 -Carter G. Woodson -Jason Kelce -School closings -Grammys 2018 -Wilder Penfield -Chinese New Year 2018 -Sea of Thieves -Sergei Eisenstein -Florida shooting -Jamie Dornan -Paula Modersohn-Becker -Bitcoin Price -Blake Griffin -Winter Olympics -Vikings Vs Eagles -Florida shooting -Patriots -Johnny Weir -Cherry Seaborn -Florida shooting -Michigan State -Government Shutdown -Super Bowl score -Mardi Gras 2018 -Florida shooting -John Mahoney -Shiffrin -Super Bowl score -Winter Olympics -Venom -Cavs -Paula Modersohn-Becker -Lauren Davis -Super blue blood Moon -Grammys 2018 -Sergei Eisenstein -Princess Eugenie -Super Bowl score -Rodney Hood -Virginia Woolf -Carter G. Woodson -Patriots -Kylie Jenner -Childish Gambino -Patriots -Patriots -Super Bowl score -Frank Reich -Carter G. Woodson -School closings -Sergei Eisenstein -Chicago West -Florida shooting -Justin Timberlake -Warren Miller -Carter G. Woodson -Sergei Eisenstein -Vikings Vs Eagles -Altered Carbon -Winter Olympics -Lunar eclipse -Carter G. Woodson -Carter G. Woodson -Monster Hunter World -Elizabeth Blackwell -Super Bowl score -Meteor -XFL -Winter Olympics -Matt Patricia -Patriots -Tonga -Kesha Grammy -Carter G. Woodson -Super Bowl 2018 -Patriots -Sergei Eisenstein -Terrell Owens -Jon Huntsman -Chloe Kim -Super Bowl score -Wilder Penfield -Edible Arrangements -Wilder Penfield -Larry Nassar -Robinhood -Carter G. Woodson -Sal Castro Middle School -Sergei Eisenstein -New England Patriots owner -Tom Petty -Andrew Cunanan -Solo Trailer -Carl Higbie -Lakers -Mikaela Shiffrin -Sandy Hook -Did the Groundhog See His Shadow -Black Panther -Den of Thieves -What Time Is The Super Bowl -Adam Hicks -Kristaps Porzingis -Amazon Stock -Government shutdown 2018 -Florida shooting -Elizabeth Blackwell -Grammys 2018 -Valentine's Day -Mark Salling -Winter Olympics -12 Strong -Super Bowl score -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl 2018 -Kylie Jenner -Super Bowl 2018 -Florida shooting -Early Man -Hostiles -Super Bowl score -Chief Wahoo -Jessica Chastain -Carter G. Woodson -Super Bowl score -Alex Smith -What Time Is The Super Bowl -Florida shooting -Chinese New Year 2018 -Tesla in space -Lunar eclipse -Chloe Kim -Cavs -Obama portrait -Elizabeth Blackwell -Nintendo Labo -Winter Olympics -Luke Wilson -Kylie Jenner -Cloverfield Paradox -Super Bowl score -Virginia Woolf -Solo Trailer -Vanessa Trump -Government shutdown -Super Bowl 2018 -Paula Modersohn-Becker -Super Bowl 2018 -Kentucky shooting -Sergei Eisenstein -SpaceX -Kylie Jenner -Justin Timberlake -Vanity Fair Cover -Jane Fonda -Fifty Shades Freed -Winter Olympics -Blake Griffin -Korea -Carter G. Woodson -Larry Nassar -Alex Smith -Wilder Penfield -Florida shooting -Paula Modersohn-Becker -Florida shooting -Grammys 2018 -calculator -Nba All Star 2018 -calculator -IXL -Elizabeth Blackwell -State of the Union -Blake Griffin -Carter G. Woodson -Government Shutdown 2018 -Government Shutdown -Florida shooting -Wilder Penfield -Virginia Woolf -Florida shooting -Carter G. Woodson -Bitcoin Price -Super Bowl score -Paula Modersohn-Becker -Venom -Winter Olympics -Virginia Woolf -Carter G. Woodson -Kylie Jenner -Bob Marley -Wilder Penfield -Sergei Eisenstein -Florida shooting -Paula Modersohn-Becker -SpaceX -Virginia Woolf -Shaun White -Tyler Hilinski -Chicago West -earthquake today -Super Bowl 2018 -Dwyane Wade -Vikings Vs Eagles -NHL All Star Game -Sergei Eisenstein -Fredo Santana -Elizabeth Blackwell -Caitlin McHugh -Timor Leste -Omarosa -Sergei Eisenstein -Jason Kidd -Super Bowl 2018 -Government shutdown -Larry Nassar -Super Bowl 2018 -Snapchat Update -This is Us -Carter G. Woodson -Paula Modersohn-Becker -Carter G. Woodson -Adam Rippon -Super Bowl 2018 -Justin Timberlake -Winter Olympics -Florida shooting -Super Bowl score -Kim Kardashian -Wilder Penfield -Blood Moon -Carter G. Woodson -Paula Modersohn-Becker -Florida shooting -The Alienist -National Pizza Day -Florida shooting -Paula Modersohn-Becker -Did the Groundhog See His Shadow -Luke Wilson -Yahoo Finance -Super Bowl score -Paula Modersohn-Becker -Justin Timberlake -Stock Market Crash Today -Chloe Kim -Elizabeth Blackwell -Justin Timberlake -Government Shutdown Meaning -DeMarcus Cousins -Super Bowl 2018 -Childish Gambino -Larry Nassar -Carter G. Woodson -Groundhog Day 2018 -Jennifer Aniston -Super Bowl score -Bitcoin Price -Wilder Penfield -Frank Reich -New England Patriots owner -Justin Timberlake -Justin Timberlake -Portia de Rossi -Virginia Woolf -Joshua Cooper Ramo -XFL -Andrew Cunanan -Steven Tyler -Chloe Kim -Early Man -Dow Jones -Snapchat Update -Sergei Eisenstein -CNN -Florida shooting -Justin Timberlake -Grammys 2018 -Grammys 2018 -Government shutdown 2018 -Patriots -Alexander Polinsky -Jennifer Aniston -Elizabeth Blackwell -Virginia Woolf -Kratom -Elton John -Elizabeth Blackwell -Oscar Nominations 2018 -Vikings Vs Eagles -Fredo Santana -Super Bowl Commercials 2018 -Carter G. Woodson -Sergei Eisenstein -Grammys 2018 -Alaska earthquake -Edible Arrangements -Fredo Santana -SpaceX -Happy Valentines Day -Patriots -Super Bowl score -Robert Mueller -Sergei Eisenstein -SpaceX -Daniel Kaluuya -Friends movie -John Mahoney -SpaceX -Elizabeth Blackwell -Paula Modersohn-Becker -Josh McDaniels -Wilder Penfield -Government Shutdown -Paula Modersohn-Becker -Vikings Vs Eagles -Joy Villa -Turpin -Happy Valentines Day -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl 2018 -Sergei Eisenstein -Altered Carbon -What Time Is The Super Bowl -Elizabeth Blackwell -Patriots -The 15:17 to Paris -Edwin Jackson -Larry Nassar -Winter Olympics -Super Bowl score -Todd Haley -Super Bowl 2018 -Florida shooting -Virginia Woolf -Fredo Santana -Winter Olympics -Super Bowl score -Eli Manning -Black Panther -Kodak Black -School Closings -Super Bowl score -Snake -Virginia Woolf -government shutdown -Mcdonald's -Winter Olympics -SpaceX -This Is Us -Carter G. Woodson -VIX -Sandy Hook -Elizabeth Blackwell -Winter Olympics -Carter G. Woodson -Government Shutdown -Wilder Penfield -Elizabeth Blackwell -Sergei Eisenstein -Patriots -Bitcoin Price -Louise Linton -Winter Olympics -Kylie Jenner -Blue Moon -Larry Nassar -Wilder Penfield -NBA Trades -Super Bowl 2017 -Paula Modersohn-Becker -What Time Is The Super Bowl -What Time Is The Super Bowl -Google Classroom -Super Bowl score -Kim Kardashian -Government Shutdown -Patriots -Rasual Butler -Valentines Day -Tyler Hilinski -Mardi Gras 2018 -Sergei Eisenstein -Ash Wednesday -Memo -SpaceX -Virginia Woolf -SpaceX -Blood Moon -Patriots -Virginia Woolf -Super Bowl Commercials 2018 -Grammys 2018 -NBC Sports -Rodney Hood -Paula Modersohn-Becker -Bitcoin Price -Shaun White -Grammys 2018 -Paula Modersohn-Becker -Super Bowl score -Elizabeth Blackwell -Winter Olympics -Wilder Penfield -Patty Hearst -PlayStation Network -Winter Olympics -Super Bowl score -Amy Schumer -12 Strong -Puppy Bowl 2018 -Carl Higbie -New England Patriots owner -Super Bowl score -Sergei Eisenstein -Super Bowl score -Virginia Woolf -Happy Valentines Day -Elizabeth Blackwell -Black Panther -Winter Olympics -Amy Schumer -Sergei Eisenstein -State of the Union -NBA Trades -Alison Brie -Wilder Penfield -What Time Is The Super Bowl -Patriots -Kylie Jenner -Groundhog Day 2018 -Justin Timberlake -Florida shooting -Chris Stapleton -Wilder Penfield -Pyeongchang 2018 Olympic Winter Games -Patriots -Carter G. Woodson -Florida shooting -Mexico earthquake -Florida shooting -What Time Is The Super Bowl -SpaceX -Elizabeth Blackwell -New England Patriots owner -Carter G. Woodson -Sergei Eisenstein -Elizabeth Blackwell -Bill Belichick -Government Shutdown -Justin Timberlake -Rodney Hood -Vikings Vs Eagles -SpaceX -Cavs -Chinese New Year 2018 -Obama portrait -Google Classroom -Harry Styles -Virginia Woolf -Carter G. Woodson -What Time Is The Super Bowl -Winter Olympics -Kylie Jenner -Sergei Eisenstein -Winter Olympics -What Time Is The Super Bowl -SpaceX -Wilder Penfield -Super Bowl 2018 -Adam Rippon -Sergei Eisenstein -Tara Lipinski -XFL -Mardi Gras 2018 -New California -New England Patriots owner -Esteban Loaiza -Kesha Grammy -John Mahoney -Release The Memo -Super Bowl score -Black Panther -Blake Griffin Trade -Grammys 2018 -Sergei Eisenstein -Florida shooting -Grammys 2018 -Groundhog Day 2018 -Patriots -Uma Thurman -State of the Union -Duke Basketball -Wilder Penfield -Patriots -Patriots -Sergei Eisenstein -Tonga -What Time Is The Super Bowl -Mikaela Shiffrin -Government Shutdown -Chinese New Year 2018 -Shiffrin -State of the Union -Super Bowl score -Cavs -Patriots -Kylie Jenner -Paula Modersohn-Becker -Winter Olympics -SpaceX -Florida shooting -Obama portrait -Obama portrait -Paula Modersohn-Becker -Kylie Jenner -Andrew McCabe -Did the Groundhog See His Shadow -Kodak Black -Winter Olympics -Super Bowl score -Oscar Nominations 2018 -Elizabeth Blackwell -Rasual Butler -Carter G. Woodson -Super blue blood Moon -Celtics -Montreal Cognitive Assessment -Kylie Jenner -Mike Vrabel -Government Shutdown -Enzo Amore -Shibutani -12 Strong -NBA Trades -Elizabeth Blackwell -Super Bowl 2018 -Did the Groundhog See His Shadow -Super Bowl 2018 -Google Drive -12 Strong -Warren Miller -Zion Williamson -Florida shooting -Elizabeth Blackwell -Kylie Jenner -Rihanna -Betty White -Virginia Woolf -Joe Kennedy -Joe Kennedy -Florida shooting -Paula Modersohn-Becker -Kylie Jenner -Carter G. Woodson -Super Bowl score -Grammys 2018 -Lauren Davis -Paula Modersohn-Becker -Peter Rabbit -Jacob Copeland -Neil Diamond -SpaceX -What Time Is The Super Bowl -Super Bowl 2018 -Deadpool 2 -Sergei Eisenstein -Oscar Nominations 2018 -Government shutdown -Justin Timberlake -Super Bowl 2018 -Tom Izzo -Kylie Jenner -Sergei Eisenstein -Caroline Wozniacki -John Mahoney -Cryptocurrency News -Real Madrid -Royal Rumble 2018 -Real Madrid -Cloverfield Paradox -Super Bowl 2018 -Carter G. Woodson -Super Bowl 2018 -Patriots -Paula Modersohn-Becker -Patriots -Celtics -Justin Timberlake -Valentines Day Images -Fortnite New Map -School Closings -Elizabeth Blackwell -Wilder Penfield -Wilder Penfield -Isaiah Thomas -Larry Nassar -This Is Us -Super blue blood Moon -Sergei Eisenstein -Virginia Woolf -SpaceX -Chicago West -Florida shooting -Happy Valentines Day -Call Me by Your Name -Sergei Eisenstein -Wonder Woman -Dow Jones -Florida shooting -NBA Trades -Grey's Anatomy -calculator -Paula Modersohn-Becker -Memo -Cavs -Super Bowl Commercials 2018 -Yura Min -The 15:17 to Paris -Paula Modersohn-Becker -SAG Awards 2018 -Super Bowl score -Wilder Penfield -Omarosa -This Is Us -Government Shutdown 2018 -Elton John -Super Bowl 2018 -Government Shutdown -Carter G. Woodson -Super Bowl score -Google docs -Super Bowl 2018 -Solo Trailer -Bitcoin Price -Justin Timberlake -Chloe Kim -Google Classroom -Paula Modersohn-Becker -AR-15 -Harley Barber -Winter Olympics -Super Bowl 2018 -Kim Kardashian -Wilder Penfield -Caitlin McHugh -Super Bowl score -Den of Thieves -Mark Salling -Winter Olympics -Joel Taylor -Valentines Day -Trump State of the Union -Shaun White -Wilder Penfield -Justin Timberlake -Super Bowl 2018 -Earthquake Today -Mardi Gras 2018 -Winter Olympics -Virginia Woolf -Super Bowl score -Florida shooting -Friends movie -Winchester -Virginia Woolf -SpaceX -Edible Arrangements -Larry Nassar -Rasual Butler -Chloe Kim -Jessica Chastain -XFL -NBA Trades -Elizabeth Blackwell -Caitlin McHugh -Shaun White -Rolling Loud -Google Classroom -Justin Timberlake -Virginia Woolf -Patriots -Elizabeth Blackwell -Tomi Lahren -Winter Olympics -State of the Union -Wilder Penfield -SpaceX -Alex Smith -Winchester -Mardi Gras 2018 -The Alienist -Kesha -Wilder Penfield -Lindsey Vonn -Virginia Woolf -Gregory Salcido -Paula Modersohn-Becker -What Time Is The Super Bowl -What Time Is The Super Bowl -Carter G. Woodson -Carter G. Woodson -Larry Nassar -Kylie Jenner -Justin Timberlake -Kylie Jenner -This Is Us -Tom Petty -Super blue blood Moon -Government Shutdown -Winter Olympics -Wilder Penfield -Jacob Copeland -Black Panther -Winter Olympics -Super Bowl score -Elizabeth Blackwell -Virginia Woolf -Florida shooting -Bitcoin Price -Elizabeth Blackwell -Super Bowl score -Chloe Kim Snowboarder -Grammys 2018 -Sergei Eisenstein -Florida shooting -Nintendo Labo -Virginia Woolf -Tammy Duckworth -Virginia Woolf -Dwyane Wade -Blake Griffin -Wilder Penfield -Taiwan Earthquake Today -Adam Rippon -Super Bowl score -Black Panther -The 15:17 to Paris -Chicago Weather -Patriots -Mikaela Shiffrin -Grammys 2018 -Fredo Santana -Super Bowl score -slides -Champions League -Cavs -Sergei Eisenstein -Dow Jones -Super Bowl 2018 -Patriots -Winter Olympics -Dog Food Recall -Florida shooting -XIV -What Time Is The Super Bowl -Black Panther -Valentines Day -Paula Modersohn-Becker -Tiger Woods -Paula Modersohn-Becker -Super Bowl 2018 -Super Bowl 2018 -Wilder Penfield -Gods Plan -Super Bowl 2018 -Carter G. Woodson -Patriots -Paula Modersohn-Becker -Mikaela Shiffrin -Winter Olympics -Super Bowl Commercials 2018 -Black Panther -Florida shooting -Larry Nassar -Wilder Penfield -DeMarcus Cousins -Carter G. Woodson -Winter Olympics -Carter G. Woodson -Puppy Bowl 2018 -Sergei Eisenstein -SpaceX -Super Bowl score -What Time Is The Super Bowl -Winter Olympics -Jason Momoa -Mark Salling -Justin Timberlake -Patriots -Super Bowl 2018 -State of the Union -Carter G. Woodson -Lonzo Ball -XFL -What Time Is The Super Bowl -Patriots -Jason Kidd -Super Bowl 2018 -Patriots -Jacob Copeland -AFC Championship Game 2018 -Winter Olympics -Elizabeth Blackwell -Government shutdown -Kentucky shooting -Super Bowl score -CNN -Florida shooting -Natalie Wood -Paula Modersohn-Becker -Tom Brady daughter -New England Patriots owner -Cloverfield Paradox -Florida shooting -Elton John -Patriots -Vikings Vs Eagles -Alessia Cara -Justin Timberlake -Elizabeth Blackwell -stock market -SpaceX -Super Bowl score -Larry Nassar -Super Bowl score -Super Bowl score -Winter Olympics -Wilder Penfield -VIX -Tesla in space -Paula Modersohn-Becker -SpaceX -Black Panther -Lindsey Vonn -Super Bowl 2018 -fake news awards -SpaceX -stock market -Paula Modersohn-Becker -Justin Timberlake -UFC 220 -Paula Modersohn-Becker -Tsunami Warning -Super Bowl 2018 -Westminster Dog Show 2018 -Oscar Nominations 2018 -SpaceX -Wilder Penfield -Elizabeth Blackwell -school closings -Terrell Owens -Carter G. Woodson -Super Bowl score -Chinese New Year 2018 -Valentines Day -Elton John -Government Shutdown -Super Bowl 2018 -Kylie Jenner -Google Classroom -Dane Cook -Dow Jones -Rodney Hood -Nadal -What Time Is The Super Bowl -Grammys 2018 -Winter Olympics -Mark Salling -Bitcoin Price -Super Bowl score -Patriots -SpaceX -Justin Timberlake -Vikings vs Eagles -Camila Cabello -Virginia Woolf -Patriots -Kesha -Eli Manning -Carter G. Woodson -Montreal Cognitive Assessment -Terrell Owens -Florida shooting -Obama portrait -Paula Modersohn-Becker -Florida shooting -Patriots -Sergei Eisenstein -Jo Jo White -Alessia Cara -Kristaps Porzingis -Super Bowl score -Government Shutdown -Shaun White -Celtics -Elizabeth Blackwell -Sergei Eisenstein -Kentucky shooting -Memo -Winter Olympics -Groundhog Day 2018 -Florida shooting -Blake Griffin -Groundhog Day 2018 -Florida shooting -Paula Modersohn-Becker -Carter G. Woodson -XFL -Carter G. Woodson -United States Of America Winter Olympics -Rob Gronkowski -SpaceX -Andrew Cunanan -Oscar Nominations 2018 -Montreal Cognitive Assessment -Paula Modersohn-Becker -Super Bowl 2018 -Memo -Black Panther -Kylie Jenner -Tesla in space -Florida shooting -Mikaela Shiffrin -Paula Modersohn-Becker -Virginia Woolf -Aaron Hernandez -Alex Smith -Rachel Brand -What Time Is The Super Bowl -Virginia Woolf -Winter Olympics -SpaceX -Larry Nassar -SAG Awards 2018 -Chicago Weather -NFL Honors -Chicago West -Patriots -Carter G. Woodson -Jennifer Aniston -Google Classroom -Patriots -Meteor -Super Bowl score -Government shutdown 2018 -Fredo Santana -Grammys 2018 -Super Bowl score -Shibutani -Lunar eclipse -Oscar Nominations 2018 -Justin Timberlake -Kylie Jenner -Joe Kennedy -Florida shooting -Culture 2 -Wilder Penfield -Grammys 2018 -Black Panther -Devin Nunes -Patriots -Kylie Jenner -Terrell Owens -Virginia Woolf -State of the Union -Carter G. Woodson -Sergei Eisenstein -Vikings Vs Eagles -Larry Nassar -Winter Olympics -Carrie Underwood -SAG Awards 2018 -Government Shutdown -Patriots -Sea Of Thieves -Kylie Jenner -Patriots -Elizabeth Blackwell -Sammy Sosa -Valentines Day -Bitcoin Price -Scott Baio -Winter Olympics -Grammys 2018 -Kim Kardashian -School Closings -Sergei Eisenstein -Super Bowl 2018 -Carter G. Woodson -Florida shooting -Solo Trailer -12 Strong -Patriots -Bitcoin Price -State of the Union -Larry Nassar -UFC 220 -Mardi Gras 2018 -Government Shutdown -UFC 221 -NBA Trades -Paul Ryan -Paula Modersohn-Becker -Virginia Woolf -Super Bowl 2018 -Terry Bradshaw -Elizabeth Blackwell -Trump State of the Union -Virginia Woolf -calculator -Kylie Jenner -Virginia Woolf -Duke Basketball -LeBron James -Chloe Kim -Quincy Jones -Wilder Penfield -National Pizza Day -What Time Is The Super Bowl -Government Shutdown Meaning -Sergei Eisenstein -Alessia Cara -Presidents Day 2018 -Memo -Dow Jones -Mikaela Shiffrin -Valentines Day Memes -Elizabeth Blackwell -State of the Union -Elizabeth Blackwell -Jamie Anderson -Winter Olympics -Alex Smith -Dow Jones -Harley Barber -Tessa Virtue -What Time Is The Super Bowl -Larry Nassar -Jennifer Aniston -Ash Wednesday -shutdown -Government Shutdown 2018 -Patriots -Carter G. Woodson -Google Drive -What Time Is The Super Bowl -Groundhog Day 2018 -Kodak Black -National Pizza Day -Elizabeth Blackwell -Winter Olympics -JUUL -Patty Hearst -Carter G. Woodson -Patti LuPone -school closings -Super Bowl Commercials 2018 -Patriots -SpaceX -Super Bowl score -Government shutdown -Winter Olympics -Government Shutdown -Shani Davis -Super Bowl score -Patriots -Chloe Kim -Altered Carbon -Government Shutdown -Super Bowl score -Shaun White -Virginia Woolf -Kylie Jenner -Obama portrait -Elizabeth Blackwell -Elizabeth Blackwell -Cloverfield Paradox -Elizabeth Blackwell -Carter G. Woodson -Paula Modersohn-Becker -New England Patriots owner -Kentucky shooting -Florida shooting -Super Bowl score -Celebrity Big Brother cast -SAG Awards 2018 -Korea -Grammys 2018 -SpaceX -Jason Kidd -Did the Groundhog See His Shadow -Elizabeth Blackwell -All Star Weekend 2018 -Super Bowl score -Wilder Penfield -Black Panther -Obama portrait -Government Shutdown -Grammys 2018 -Oscar Nominations 2018 -Florida shooting -Mavic Air -Elizabeth Blackwell -Forever My Girl -Andre Roberson -Oscar Nominations 2018 -Oscar Nominations 2018 -United States Of America Winter Olympics -Super Bowl 2018 -Florida shooting -Chloe Kim Snowboarder -Black Panther -Cavs -Lunar eclipse -Government Shutdown 2018 -Amy Schumer -Super Bowl 2018 -Winter Olympics -NBA Trades -United States Of America Winter Olympics -Stan Lee -Super Bowl score -Winter Olympics -Bitcoin Price -Amazon Stock -Apolo Ohno -Cherry Seaborn -stock market -Kim Kardashian -Government Shutdown -Paula Modersohn-Becker -Elizabeth Blackwell -Larry Nassar -Kim Kardashian -Sergei Eisenstein -Mardi Gras 2018 -Duke Basketball -Kylie Jenner Baby Girl -Winter Olympics -Meteor -CNN -Paula Modersohn-Becker -Johnny Weir -Virginia Woolf -Paula Modersohn-Becker -Virginia Woolf -Kylie Jenner -Florida shooting -Sergei Eisenstein -Winter Olympics -Joe Kennedy -Government Shutdown Meaning -Tyler Hilinski -Super Bowl 2018 -Sean Hannity -Google docs -Friends movie -Jason Kelce -What Time Is The Super Bowl -Vincent Zhou -Sergei Eisenstein -Blake Griffin -Elizabeth Blackwell -Greg Monroe -All Star Weekend 2018 -Florida shooting -School Closings -Carter G. Woodson -United States Postal Service -Montreal Cognitive Assessment -SpaceX -Paula Modersohn-Becker -Chicago West -Kentucky shooting -Portia de Rossi -Alex Reimer -Luke Wilson -NBA Trades -Virginia Woolf -Justin Timberlake -Post Malone -Justin Timberlake -Super Bowl score -Zion Williamson -XIV -What Time Is The Super Bowl -Elizabeth Blackwell -Johnny Weir -SpaceX -Venom -Patriots -Sergei Eisenstein -Florida shooting -JUUL -Government Shutdown 2018 -Carter G. Woodson -Super Bowl 2018 -Elizabeth Blackwell -Wilder Penfield -Nathan Chen -Justin Timberlake -Shaun White -Kylie Jenner -Kylie Jenner -Shaun White -What Time Is The Super Bowl -Grammys 2018 -Olympic Medal Count -Virginia Woolf -Winter Olympics -happy new year in Chinese -Patriots -Carter G. Woodson -Sergei Eisenstein -Trump State of the Union -Nba All Star 2018 -Wilder Penfield -Elizabeth Blackwell -Florida shooting -Dow Jones -Groundhog Day 2018 -Kylie Jenner -Trey Gowdy -Sergei Eisenstein -State of the Union -Patriots -Obama portrait -Valentine's Day -Florida shooting -Sarah Barthel -Cavs -Jessica Chastain -Duke Basketball -Grammys 2018 -What Time Is The Super Bowl -Super Bowl score -Carter G. Woodson -Justin Timberlake -This Is Us -Ncaa Basketball Top 25 -Grammys 2018 -Isaiah Thomas -Florida shooting -Altered Carbon -Grammys 2018 -Patriots -shutdown -Sergei Eisenstein -Quincy Jones -Sergei Eisenstein -Valentines Day -Tom Brady daughter -Florida shooting -Bitcoin Price -Government Shutdown Meaning -Elizabeth Blackwell -Rose McGowan -stock market -What Time Is The Super Bowl -Super Bowl 2018 -Duke Basketball -Super Bowl score -Oscar Nominations 2018 -One Day At A Time -Wilder Penfield -Robert Wagner -Classroom -Super Bowl score -Elizabeth Blackwell -Caroline Wozniacki -Winter Olympics -Hostiles Movie -SpaceX -Kylie Jenner -SpaceX -Virginia Woolf -Peter Rabbit -Super Bowl 2018 -SZA -Did the Groundhog See His Shadow -Florida shooting -Carter G. Woodson -Donald Trump Jr -Carter G. Woodson -Vikings Vs Eagles -Patriots -Sergei Eisenstein -SpaceX -Carter G. Woodson -Chloe Kim -Andrew Cunanan -Super Bowl 2018 -Florida shooting -Winter Olympics -Blake Griffin Trade -Happy Valentines Day -Vikings Vs Eagles -Tom Brady daughter -Mikaela Shiffrin -Sergei Eisenstein -Tiger Woods -Sergei Eisenstein -Super Bowl 2018 -Jacob Copeland -Virginia Woolf -Sergei Eisenstein -Paula Modersohn-Becker -Paula Modersohn-Becker -Paula Modersohn-Becker -Paula Modersohn-Becker -Dwyane Wade -Woody Allen -fake news awards -Carter G. Woodson -Wilder Penfield -Super Bowl score -Justin Timberlake -Black Panther -Costco Wholesale -Sergei Eisenstein -Black Lightning -Wilder Penfield -Florida shooting -Google Classroom -Florida shooting -Chris Paul -Jason Kidd -Super blue blood Moon -Sergei Eisenstein -Carter G. Woodson -What Time Is The Super Bowl -Wilder Penfield -Daytona 500 -Elizabeth Blackwell -Florida shooting -earthquake today -Government Shutdown 2018 -Florida shooting -Elizabeth Blackwell -Larry Nassar -Olympic Medal Count -NBA Trades -Jennifer Aniston -Carter G. Woodson -Ash Wednesday -Government Shutdown -Super Bowl score -Super Bowl score -Cavs -Sergei Eisenstein -Wilder Penfield -Chloe Kim -Justin Timberlake -Rasual Butler -Chipper Jones -Carter G. Woodson -Royal Rumble 2018 -Tessa Virtue -Justin Timberlake -Paula Modersohn-Becker -Super Bowl 2018 -Justin Timberlake -Columbine Shooting -John Mahoney -Government Shutdown 2018 -Jennifer Aniston -Virginia Woolf -Hope Hicks -Kylie Jenner -Chicago West -Black Panther -Edible Arrangements -Super Bowl 2018 -Kesha -Elizabeth Blackwell -Wilder Penfield -Olympic Medal Count -What Time Is The Super Bowl -Tiger Woods -John Mahoney -Super Bowl 2018 -Virginia Woolf -Carter G. Woodson -Super Bowl score -Kylie Jenner -Shaun White -Super Bowl score -Altered Carbon -Carter G. Woodson -Solo Trailer -What Time Is The Super Bowl -Dow Jones -Larry Nassar -Olivia Culpo -Patriots -Jalen Ramsey -State of the Union -Paula Modersohn-Becker -Neil Diamond -Fredo Santana -Super Bowl score -Winter Olympics -Elizabeth Blackwell -Wilder Penfield -Real Madrid -Super Bowl 2018 -Super Bowl score -Virginia Woolf -Chloe Kim -School closings -Super Bowl 2018 -Alaska earthquake -What Time Is The Super Bowl -Quincy Jones -NASA -Happy Valentines Day -Kawhi Leonard -Carter G. Woodson -Super Bowl 2018 -Natalie Portman -Florida shooting -Bruno Mars -Kentucky shooting -XFL -XFL -Jamie Anderson -Vikings Vs Eagles -Lorenzo Cain -SpaceX -Tiger Woods -Vikings Vs Eagles -Roger Federer -Super Bowl 2018 -Florida shooting -Megan Barry -Sergei Eisenstein -Meteor -Carter G. Woodson -Kylie Jenner Baby Girl -Norovirus -Super Bowl score -Yu Darvish -Chris Paul -Alessia Cara -Virginia Woolf -Paula Modersohn-Becker -Sergei Eisenstein -Sharon Stone -Malcom Butler -Toys R Us -Government Shutdown -Oscar Nominations 2018 -Grammys 2018 -Chinese New Year 2018 -Winter Olympics -Patriots -Adam Rippon -Kim Kardashian -SpaceX -Mcdonald's -Kingdom Come Deliverance -Elizabeth Blackwell -Winter Olympics -Fredo Santana -Waco -Sergei Eisenstein -Toys R Us -Malcom Butler -Duke Basketball -Pro Bowl 2018 -Government Shutdown -SAG Awards 2018 -Paula Modersohn-Becker -Obama portrait -Elizabeth Blackwell -Kentucky shooting -Earthquake -Super Bowl 2018 -Esteban Loaiza -Grammys 2018 -Sergei Eisenstein -What Time Is The Super Bowl -Winter Olympics -SpaceX -Winter Olympics -Doomsday Clock -Westerville Ohio -Oscar Nominations 2018 -United States Of America Winter Olympics -Virginia Woolf -Kylie Jenner -Andrew Cunanan -Government Shutdown -Super Bowl score -Elizabeth Blackwell -Winter Olympics -Grammys 2018 -Grammys 2018 -Elizabeth Blackwell -Scandal -Wilder Penfield -Dwyane Wade -Valentines Day Cards -SpaceX -Wilder Penfield -Earthquake Today -Black Panther -Florida shooting -Did the Groundhog See His Shadow -What Time Is The Super Bowl -Super Bowl Winners -Lunar eclipse -Virginia Woolf -Super Bowl score -Patriots -Carter G. Woodson -Oscar Nominations 2018 -Harley Barber -Netflix Stock -Super Bowl 2018 -Real Madrid -AFC Championship Game 2018 -SpaceX -Alaska earthquake -Government Shutdown -Jimmy Garoppolo -Black Panther -Sammy Sosa -Senior Bowl -Winter Olympics -Brie Larson -luge -Kentucky shooting -Super Bowl score -Super Bowl 2018 -Eli Manning -SpaceX -Patti LuPone -Columbine -Wilder Penfield -Lunar eclipse -Elizabeth Blackwell -Super Bowl 2018 halftime show -Florida shooting -Tessa Virtue -Carter G. Woodson -SpaceX -Super Bowl score -Paula Modersohn-Becker -Kylie Jenner -Government Shutdown Meaning -Super Bowl 2018 -Super Bowl score -Johnny Weir -Florida shooting -Virginia Woolf -Shaun White -Release The Memo -Trump State of the Union -Paula Modersohn-Becker -Bitcoin Price -Happy Valentines Day -Justin Timberlake -Virginia Woolf -IXL -Patriots -Ursula Le Guin -Bitcoin Price -Florida shooting -Super blue blood Moon -Tennys Sandgren -calculator -Super Bowl score -Florida shooting -Super Bowl 2018 -Kylie Jenner -Carter G. Woodson -Sergei Eisenstein -Groundhog Day 2018 -New California -Super Bowl 2018 -Obama portrait -Justin Timberlake -Government Shutdown -Kim Kardashian -Josh McDaniels -SpaceX -Kylie Jenner -Government shutdown -Cherry Seaborn -Shaun White -Mexico Vs Bosnia -Derrick Rose -Sergei Eisenstein -Josh McDaniels -Paula Modersohn-Becker -Paula Modersohn-Becker -What Time Is The Super Bowl -Elizabeth Blackwell -Super Bowl 2018 -school closings -Tomi Lahren -Carter G. Woodson -Wilder Penfield -UFC 220 -Virginia Woolf -Justin Timberlake -Mark Salling -Google docs -Super blue blood Moon -Shaun White -Super Bowl 2018 -Wilder Penfield -What Time Is The Super Bowl -Andrew Cunanan -Florida shooting -Fredo Santana -Carter G. Woodson -Carter G. Woodson -Elizabeth Blackwell -Patriots -Super Bowl 2018 -Winter Olympics -Super blue blood Moon -Elizabeth Blackwell -Matt Patricia -Super Bowl Commercials 2018 -Government Shutdown 2018 -NFC Championship Game 2018 -Shaun White -Carter G. Woodson -Paula Modersohn-Becker -Winter Olympics -Fredo Santana -Super Bowl score -Groundhog Day 2018 -Wilder Penfield -Paula Modersohn-Becker -Virginia Woolf -Black Panther -Nancy Pelosi -Wilder Penfield -Black Panther -Grammys 2018 -NBA Trades -Grammys 2018 -Altered Carbon -Dow Jones -SpaceX -Paula Modersohn-Becker -Wilder Penfield -Florida shooting -State of the Union -Puppy Bowl 2018 -Hope Hicks -Groundhog Day 2018 -Cedi Osman -United States Postal Service -Justin Timberlake -NBA Trades -Carter G. Woodson -Patriots -Monster Hunter World -Wilder Penfield -MS13 -Montreal Cognitive Assessment -What Time Is The Super Bowl -Super Bowl 2018 -Grammys 2018 -Valentines Day Images -Wilder Penfield -Carter G. Woodson -Carter G. Woodson -Super Bowl score -Grammys 2018 -Government Shutdown -Roger Federer -Super Bowl 2018 -Virginia Woolf -The Home Depot -Groundhog Day 2018 -Kylie Jenner -Montreal Cognitive Assessment -Wilder Penfield -Taiwan Earthquake Today -Kylie Jenner -Patriots -Daryle Singletary -Kylie Jenner -SAG Awards 2018 -Carter G. Woodson -Patriots -Google Drive -Sergei Eisenstein -Bitcoin Price -Real Madrid -Carter G. Woodson -Call Me by Your Name -Logan Paul -Happy Valentines Day -UFC 220 -Black Panther -Kylie Jenner -Winter Olympics -SpaceX -Real Madrid -Super Bowl 2018 -Football Playoffs 2018 -Camila Cabello -Jane Fonda -What Time Is The Super Bowl -Gigi Hadid -Super Bowl score -Senior Bowl -Patti LuPone -SpaceX -Lindsey Vonn -Virginia Woolf -Patriots -Kylie Jenner -Virginia Woolf -Virginia Woolf -Super Bowl 2018 -Vikings Vs Eagles -Happy Valentines Day -Jason Momoa -New England Patriots owner -Kylie Jenner -Wilder Penfield -New England Patriots owner -The 15:17 to Paris -Wilder Penfield -Google Drive -Carter G. Woodson -Florida shooting -Dennis Edwards -Jennifer Aniston -New England Patriots owner -Terrell Owens -12 Strong -Super Bowl score -Super Bowl score -Kim Kardashian -Super Bowl 2018 -Wilder Penfield -Virginia Woolf -Florida shooting -Blake Griffin -Samson -What Time Is The Super Bowl -Patriots -Carter G. Woodson -Bitcoin Price -Nintendo Labo -Happy Valentines Day -Ellen DeGeneres -Rob Porter -SpaceX -Florida shooting -Florida shooting -Wilder Penfield -Paula Modersohn-Becker -Carter G. Woodson -Groundhog Day 2018 -Government shutdown 2018 -Virginia Woolf -Kentucky shooting -Gods Plan -Sergei Eisenstein -Winter Olympics -Peter Rabbit -Pro Bowl 2018 -Elton John -Alex Smith -Wilder Penfield -Black Panther -Naya Rivera -Mardi Gras 2018 -Super Bowl score -Paula Modersohn-Becker -Super Bowl score -Bitcoin Price -Paula Modersohn-Becker -Mexico earthquake -Virginia Woolf -Super Bowl 2018 -Wilder Penfield -Tiger Woods -Elton John -Black Panther -Shaun White -Nintendo Labo -Government shutdown 2018 -What Time Is The Super Bowl -Jason Kelce -Wilder Penfield -Fredo Santana -Virginia Woolf -Government Shutdown 2018 -Matt Patricia -Carter G. Woodson -Elizabeth Blackwell -Winter Olympics -Wilder Penfield -Vikings Vs Eagles -Super Bowl score -Winter Olympics -Florida shooting -Women's March 2018 -Elizabeth Blackwell -Super blue blood Moon -Sergei Eisenstein -curling -Google Classroom -Google docs -Justin Timberlake -Eli Manning -Super Bowl score -Tom Brady daughter -Virginia Woolf -Dow Jones -Brynn Cameron -Obama portrait -Rasual Butler -Justin Timberlake -Kelsey Grammer -Kratom -Wilder Penfield -Paula Modersohn-Becker -Adam Rippon -Wilder Penfield -Government shutdown -Adam Rippon -Super Bowl 2018 -Elizabeth Blackwell -Super Bowl 2018 -Super Bowl score -Altered Carbon -Fredo Santana -Justin Timberlake -Winter Olympics -CNN -Kylie Jenner -Virginia Woolf -Virginia Woolf -Government Shutdown Meaning -This is Us -Kelsey Grammer -Virginia Woolf -Carter G. Woodson -Super blue blood Moon -Larry Nassar -Shiffrin -Cavs -Kylie Jenner -Drake -Super Bowl score -Patriots -Sergei Eisenstein -Grammys 2018 -Champions League -Wonder Woman -Wilder Penfield -Valentines Day Images -Vikings Vs Eagles -calculator -Super Bowl 2018 -Elizabeth Blackwell -SpaceX -Paula Modersohn-Becker -Royal Rumble 2018 -Valentine's Day -Justin Timberlake -SpaceX -12 Strong -Government shutdown 2018 -Virginia Woolf -Groundhog Day 2018 -Groundhog Day 2018 -Groundhog Day 2018 -Wilder Penfield -Super Bowl score -Government shutdown 2018 -Terrell Owens -Carter G. Woodson -This Is Us -Kylie Jenner -Virginia Woolf -Winter Olympics -Elizabeth Blackwell -Korea -Shaun White -UFC 220 -Paula Modersohn-Becker -Lakers -Sergei Eisenstein -Dwyane Wade -Paula Modersohn-Becker -Bitcoin Price -Sergei Eisenstein -Lunar eclipse -Harley Barber -Chinese New Year 2018 -Bitcoin Price -Sergei Eisenstein -New England Patriots owner -NASA -Sergei Eisenstein -12 Strong -Carter G. Woodson -Wilder Penfield -Patriots -Chloe Kim -Paula Modersohn-Becker -Larry Nassar -Oar Olympics -Forever My Girl -Kim Kardashian -What Time Is The Super Bowl -Alex Reimer -What Time Is The Super Bowl -Carrie Underwood -Jenna Morasca -Elizabeth Blackwell -Esteban Loaiza -Wilder Penfield -FA Cup -Virginia Woolf -Super Bowl 2018 -Florida shooting -Super Bowl 2018 -Justin Timberlake -Super Bowl 2018 -Will Ferrell -Sergei Eisenstein -State of the Union -Carter G. Woodson -Larry Nassar -Paula Modersohn-Becker -NBA Trades -Nikki Haley -Super Bowl 2018 -Yahoo Finance -Chinese New Year 2018 -NBA Trades -Blue Ivy -State of the Union -Larry Nassar -Super blue blood Moon -Sergei Eisenstein -Bob Marley -State of the Union -Paul Ryan -Super Bowl score -Paula Modersohn-Becker -Larry Nassar -Virginia Woolf -Will Ferrell -Carter G. Woodson -Trump State of the Union -School Closings -Elizabeth Blackwell -Trump State of the Union -Super Bowl 2018 -Carter G. Woodson -Carter G. Woodson -Florida shooting -Sergei Eisenstein -Sergei Eisenstein -Amy Schumer -Sabrina Dhowre -Kesha Grammy -John Mahoney -What Time Is The Super Bowl -Wilder Penfield -Shaun White -Virginia Woolf -Royal Rumble 2018 -Super Bowl 2018 -Patti LuPone -Larry Nassar -Cherry Seaborn -Groundhog Day 2018 -Grammys 2018 -Government Shutdown -Sergei Eisenstein -Carter G. Woodson -Joe Kennedy -Bitcoin Price -Celtics -Groundhog Day 2018 -Cnbc -Waco -NASA -Uma Thurman -Oscar Nominations 2018 -Sergei Eisenstein -Chinese New Year 2018 -Wilder Penfield -Lakers -fake news awards -Sergei Eisenstein -What Time Is The Super Bowl -Edible Arrangements -Bradie Tennell -Kylie Jenner -Bitcoin Price -Groundhog Day 2018 -Caroline Wozniacki -Winter Olympics -Dow Jones -Virginia Woolf -Wilder Penfield -calculator -Kylie Jenner -Government Shutdown Meaning -What Time Is The Super Bowl -Patriots -Elizabeth Blackwell -Sergei Eisenstein -Groundhog Day 2018 -Bitcoin Price -SpaceX -Paula Modersohn-Becker -Patriots -Super Bowl score -State of the Union -Carter G. Woodson -Elon Musk -Paula Modersohn-Becker -Government Shutdown -Carter G. Woodson -Post Malone -Government Shutdown Meaning -Hostiles -Will Ferrell -Groundhog Day 2018 -Super Bowl score -Paula Modersohn-Becker -Larry Nassar -NBA Trades -Winter Olympics -Once Upon a Time -What Time Is The Super Bowl -Steve Mcnair -Super Bowl score -Paula Modersohn-Becker -calculator -Joy Villa -Royal Rumble 2018 -Woody Allen -Justin Timberlake -Did the Groundhog See His Shadow -Happy Valentines Day -Tom Petty -Toys R Us -Elizabeth Blackwell -Virginia Woolf -Cloverfield Paradox -Fred Savage -Wilder Penfield -Super Bowl 2018 -Government Shutdown -Kim Cattrall -Paula Modersohn-Becker -Florida shooting -Winter Olympics -Winter Olympics -Blake Griffin Trade -Cloverfield Paradox -Kentucky shooting -Super Bowl score -Patriots -Chicago West -Kim Kardashian -Winter Olympics -Winter Olympics -Trump State of the Union -Luke Wilson -Terrell Owens -Slender Man -Kratom -NBA Trades -Jason Kelce -Sergei Eisenstein -Super Bowl 2018 -National Pizza Day -Larry Nassar -Carter G. Woodson -Super Blue Blood Moon -Happy Valentines Day -Mardi Gras 2018 -Alaska earthquake -Elizabeth Blackwell -Grammys 2018 -Sergei Eisenstein -Mcdonald's -Matt Patricia -Larry Nassar -Kylie Jenner -Kevin Love -Mardi Gras 2018 -Wilder Penfield -Super Bowl Winners -Florida shooting -Mardi Gras 2018 -LL Bean -Super Bowl 2018 halftime show -Presidents Day 2018 -What Time Is The Super Bowl -Bitcoin Price -Winter Olympics -Super Bowl score -Wilder Penfield -Fredo Santana -Celebrity Big Brother cast -Mikaela Shiffrin -DeMarcus Cousins -Oar Olympics -Black Panther -Super Bowl 2018 -School Closings -Wilder Penfield -Early Man -Happy Valentines Day -Google Classroom -Government shutdown -Early Man -Red Gerard -Winter Olympics -Korea -Olympic Medal Count -Oscar Nominations 2018 -Government shutdown -Rob Porter -Black Panther -Paula Modersohn-Becker -What Time Is The Super Bowl -Elizabeth Blackwell -NBA Trades -Kesha -North Korean cheerleaders -Groundhog Day 2018 -Quincy Jones -Kingdom Come Deliverance -Elizabeth Blackwell -Sergei Eisenstein -Larry Nassar -UFC 220 -Alaska earthquake -Patriots -Virginia Woolf -Patriots -Zuleyka Rivera -Virginia Woolf -Florida shooting -Florida shooting -Florida shooting -New England Patriots owner -State of the Union -NBA Trades -Mattie Larson -Wilder Penfield -Super Bowl score -Sergei Eisenstein -Groundhog Day 2018 -State of the Union -State of the Union -Obama portrait -Carter G. Woodson -Patriots -Obama portrait -Trump State of the Union -Daytona 500 -Florida shooting -Elizabeth Blackwell -Alaska earthquake -Tammy Duckworth -Drive -Sergei Eisenstein -Jason Kelce -Super Bowl score -Ash Wednesday -Super Bowl score -CNN -Black Panther -Winter Olympics -Andrew Cunanan -Obama portrait -SpaceX -Sergei Eisenstein -SAG Awards 2018 -New England Patriots owner -Ursula Le Guin -Sal Castro Middle School -Paula Modersohn-Becker -What Time Is The Super Bowl -Winter Olympics -Lindsey Vonn -Patriots -Winter Olympics -Virginia Woolf -What Time Is The Super Bowl -Blue Moon -Justin Timberlake -Anna Kournikova -Solo Trailer -Andrew Cunanan -Winter Olympics -Rasual Butler -Kate Upton -Celebrity Big Brother cast -Kylie Jenner -Jessica Chastain -Don Lemon -CNN -Super Bowl 2018 -Paula Modersohn-Becker -SpaceX -Call Me by Your Name -Wilder Penfield -Government Shutdown -Carter G. Woodson -Adam Rippon -Winter Olympics -Jason Kidd -XFL -MS13 -Carter G. Woodson -Rasual Butler -What Time Is The Super Bowl -Paula Modersohn-Becker -Sergei Eisenstein -Shaun White -Wilder Penfield -Carter G. Woodson -Patti LuPone -Jen Selter -United States Of America Winter Olympics -Patriots -Pro Bowl 2018 -Super Bowl 2018 -SpaceX -Super Bowl score -Florida shooting -Bitcoin Price -Jennifer Aniston -Super Blue Blood Moon -Wilder Penfield -Government Shutdown Meaning -Super Bowl score -Google docs -Olive Garden -Elizabeth Blackwell -Patriots -Hillary Clinton -Ash Wednesday -Paula Modersohn-Becker -Florida shooting -Dwyane Wade -State of the Union -Winter Olympics -Carter G. Woodson -Kodak Black -Bitcoin Price -Oscar Nominations 2018 -Robby Anderson -Olivia Munn -Wilder Penfield -Winter Olympics -Wilder Penfield -Super Bowl 2018 -Super Bowl 2018 -Florida shooting -Virginia Woolf -Winter Olympics -Sergei Eisenstein -Paula Modersohn-Becker -Chris Paul -Government shutdown -Super Bowl 2018 -shutdown -KSI Vs Weller -When We First Met -All Star Weekend 2018 -Wilder Penfield -LeBron James -Wilder Penfield -Did the Groundhog See His Shadow -Trump State of the Union -calculator -Royal Rumble 2018 -Patriots -Kim Kardashian -Virginia Woolf -Yu Darvish -Sergei Eisenstein -Super Bowl 2018 -Maze Runner: The Death Cure -Winter Olympics -Tara Lipinski -Doomsday Clock -SAG Awards 2018 -Tyler Hilinski -Justin Timberlake -Russell Wilson -Kim Kardashian -Happy Valentines Day -Ursula Le Guin -Super Bowl Commercials 2018 -Cavs -Super Bowl 2018 -Kentucky shooting -Tom Petty -Justin Timberlake -Paula Modersohn-Becker -XFL -Kentucky shooting -Alessia Cara -Patriots -Happy Valentines Day -Florida shooting -Grammys 2018 -Sammy Sosa -Alaska earthquake -Earthquake Today -Oscar Nominations 2018 -Grammys 2018 -Carter G. Woodson -Obama portrait -New California -Wilder Penfield -Jason Kelce -Oscar Nominations 2018 -What Time Is The Super Bowl -SpaceX -Winter Olympics -Anna Kournikova -Florida shooting -Wilder Penfield -Meteor -NBA Trades -Elizabeth Blackwell -Fredo Santana -Super Bowl 2018 -Fifty Shades Freed -Pro Bowl 2018 -Isaiah Thomas -Dow Jones -Sergei Eisenstein -Memo -Winter Olympics -Florida shooting -Wilder Penfield -All Star Weekend 2018 -Pro Bowl 2018 -Lunar eclipse -Jennifer Aniston -Blake Griffin -Grey's Anatomy -Sergei Eisenstein -Carter G. Woodson -Elton John -Highline College -Paula Modersohn-Becker -luge -Super Bowl score -Justin Timberlake -Elizabeth Blackwell -Kesha Grammy -Football Playoffs 2018 -Wilder Penfield -Sergei Eisenstein -SpaceX -Juegos Olímpicos de Invierno 2018 -Patriots -SpaceX -XFL -SZA -SZA -Oscar Nominations 2018 -Carter G. Woodson -Jason Kelce -Blake Griffin -Andrew Cunanan -Rodney Hood -Elizabeth Blackwell -Winter Olympics -Vikings Vs Eagles -Carter G. Woodson -Royal Rumble 2018 -SpaceX -Paula Modersohn-Becker -Memo -State of the Union -Mardi Gras 2018 -Super Bowl 2018 halftime show -Wilder Penfield -Greg Monroe -AR-15 -Ann Curry -New England Patriots owner -Patriots -Happy Valentines Day -Alessia Cara -Sergei Eisenstein -Virginia Woolf -Chloe Kim -Chicago West -Virginia Woolf -Paula Modersohn-Becker -Super Bowl 2018 -SpaceX -Larry Nassar -Vincent Zhou -Virginia Woolf -Blue Moon -Johnny Weir -Virginia Woolf -Sergei Eisenstein -New England Patriots owner -Super Bowl 2018 -Alaska earthquake -SpaceX -Winter Olympics -Wilder Penfield -Patti LuPone -earthquake -SpaceX -Olympics 2018 -Quincy Jones -Virginia Woolf -Winter Olympics -Winter Olympics -Kylie Jenner -Super Bowl 2018 -Real Madrid -Virginia Woolf -Mark Salling -Florida shooting -NASCAR -CNN -Groundhog Day 2018 -State of the Union -Steven Tyler -Valentines Day -Super Bowl score -Carter G. Woodson -Vikings Vs Eagles -Alison Brie -Duke Basketball -Super blue blood Moon -Robert Wagner -Kentucky shooting -Neil Diamond -Super Bowl Commercials -Amy Schumer -Oar Olympics -Paula Modersohn-Becker -Justin Timberlake -Ronaldinho -Virginia Woolf -Florida shooting -Hope Hicks -Terrell Owens -Carter G. Woodson -Elizabeth Blackwell -Paula Modersohn-Becker -Black Panther -Carter G. Woodson -Jacob Copeland -Carter G. Woodson -Olive Garden -Super Bowl score -Super Bowl score -Happy Valentines Day -Alaska earthquake -Rodney Hood -Kylie Jenner -Winter Olympics -Winter Olympics -Dow Jones -Super Bowl score -Alex Smith -Blake Griffin Trade -Carter G. Woodson -What Time Is The Super Bowl -Real Madrid -Justin Timberlake -Winter Olympics -Altered Carbon -Florida shooting -Peter Rabbit -Justin Timberlake -Patriots -Vikings vs Eagles -Paula Modersohn-Becker -Amazon HQ2 -Justin Timberlake -Winter Olympics -Kylie Jenner Baby Girl -Super Bowl score -What Time Is The Super Bowl -Todd Haley -Sergei Eisenstein -Kim Kardashian -Patriots -Super Blue Blood Moon -Grammys 2018 -Josh McDaniels -Groundhog Day 2018 -Florida shooting -Megan Barry -Florida shooting -Super Bowl score -Luke Wilson -Naya Rivera -Super Bowl 2018 -Winter Olympics -Elizabeth Blackwell -Elizabeth Blackwell -Winter Olympics -Black Lightning -Andre the Giant -Elizabeth Blackwell -Carter G. Woodson -Government Shutdown -Super Bowl score -Black Panther -Kylie Jenner -Wilder Penfield -Timor Leste -Shaun White -Virginia Woolf -Sabrina Dhowre -Winter Olympics -Puppy Bowl 2018 -Shaun White -Obama portrait -What Time Is The Super Bowl -Carter G. Woodson -NBA Trades -Sergei Eisenstein -Robinhood -Wilder Penfield -NBA Trades -12 Strong -Virginia Woolf -Carter G. Woodson -Winter Olympics -Florida shooting -Chris Long -Winter Olympics -NSA -Grammys 2018 -Justin Timberlake -Sergei Eisenstein -Paula Modersohn-Becker -Winter Olympics -Incredibles 2 -Mikaela Shiffrin -Carter G. Woodson -Super Bowl 2018 -CNN -Elizabeth Blackwell -Super Bowl score -Esteban Loaiza -Carter G. Woodson -Super Bowl 2018 -Patriots -Royal Rumble 2018 -Wilder Penfield -Larry Nassar -Virginia Woolf -Florida shooting -Sergei Eisenstein -Happy Valentines Day -Patti LuPone -Justin Timberlake -Johnny Weir -Kylie Jenner -Russell Wilson -Sean McVay -Florida shooting -Virginia Woolf -What Time Is The Super Bowl -Elizabeth Blackwell -Larry Nassar -Virginia Woolf -Sergei Eisenstein -Chicago Weather -Super blue blood Moon -Valentines Day Images -What Time Is The Super Bowl -Florida shooting -Jimmy Garoppolo -Patriots -Florida shooting -Black Panther -Super Bowl score -Real Madrid -Jason Kelce -Jimmy Kimmel -Rose McGowan -Bitcoin Price -Adam Rippon -Cavs -XIV -Nikki Haley -IXL -Sergei Eisenstein -Alaska earthquake -State of the Union -Did the Groundhog See His Shadow -Sergei Eisenstein -Blue Moon -Kentucky shooting -Wilder Penfield -Super Bowl score -NBA Trades -Robert Wagner -Black Panther -Super Bowl score -Memo -Super Bowl 2018 -Winter Olympics -Dow Jones -Elizabeth Blackwell -Adam Rippon -Patriots -Wilder Penfield -Lindsey Vonn -Chicago West -Tom Petty -Waco -Memo -Jennifer Aniston -Super Bowl 2018 -Patriots -Super Bowl Commercials -Purdue Basketball -OKC Thunder -Adam Rippon -Cloverfield Paradox -Yu Darvish -Edible Arrangements -Sting -What Time Is The Super Bowl -Maria Menounos -Alex Smith -Adam Rippon -Virginia Woolf -Florida shooting -Winter Olympics -Super Bowl score -shutdown -Kylie Jenner -Patriots -Super Bowl score -Vikings Vs Eagles -Elizabeth Blackwell -Wilder Penfield -Ar 15 -Real Madrid -Patti LuPone -Paula Modersohn-Becker -Florida shooting -Vanity Fair Cover -Kentucky shooting -Government Shutdown -Adam Rippon -Lena Zawaideh -Brynn Cameron -New England Patriots owner -school closings -Sergei Eisenstein -Sergei Eisenstein -Patriots -Super Bowl 2018 -Sergei Eisenstein -Grammys 2018 -Fredo Santana -Patriots -Wilder Penfield -Virginia Woolf -Carter G. Woodson -Sergei Eisenstein -Patriots -Jalen Ramsey -Grammys 2018 -Sergei Eisenstein -Kim Kardashian -Norovirus -Kylie Jenner -Kylie Jenner -Did the Groundhog See His Shadow -Florida shooting -Patriots -What Time Is The Super Bowl -Mardi Gras 2018 -Enzo Amore -What Time Is The Super Bowl -NFC Championship Game 2018 -Carter G. Woodson -Justin Timberlake -Dane Cook -Justin Timberlake -Sergei Eisenstein -Quincy Jones -Mardi Gras 2018 -Paula Modersohn-Becker -Kylie Jenner -XFL -Women's March 2018 -Alex Smith -Chicago Weather -Carter G. Woodson -Did the Groundhog See His Shadow -Florida shooting -Sergei Eisenstein -Super Bowl score -Super Bowl 2018 -Royal Rumble 2018 -Elizabeth Blackwell -Malcom Butler -What Time Is The Super Bowl -Paula Modersohn-Becker -Meteor -Rob Porter -Super blue blood Moon -Royal Rumble 2018 -Virginia Woolf -SpaceX -Jimmy Garoppolo -Government Shutdown 2018 -Super Bowl 2018 -Kylie Jenner -Zuleyka Rivera -Sergei Eisenstein -Carter G. Woodson -Chicago Weather -Royal Rumble 2018 -Super Bowl score -Justin Timberlake -Justin Timberlake -Ash Wednesday -Florida shooting -Shiffrin -Vanessa Trump -Memo -Super Bowl 2018 -Super Bowl score -Patriots -Super Bowl score -Luke Wilson -Sergei Eisenstein -Super Bowl 2018 -Super Bowl 2018 -Winter Olympics -State of the Union -SpaceX -Patti LuPone -Grammys 2018 -Kylie Jenner -Super Blue Blood Moon -Hostiles -Sergei Eisenstein -Super Bowl 2018 -Daryle Singletary -stock market -Kristaps Porzingis -Kylie Jenner -Paula Modersohn-Becker -Tiger Woods -Super Blue Blood Moon -Monster Hunter World -Elizabeth Blackwell -AR-15 -Pro Bowl 2018 -Virginia Woolf -Steve Wynn -Cavs -The 15:17 to Paris -Larry Nassar -Groundhog Day 2018 -Sergei Eisenstein -Super Bowl score -Virginia Woolf -State of the Union -Wilder Penfield -Dow Jones -Cherry Seaborn -Super Bowl 2018 -Paula Modersohn-Becker -Grammys 2018 -Dwyane Wade -Esteban Loaiza -Super Bowl Commercials -Lindsey Vonn -Happy Valentines Day -Super Bowl 2018 -Government Shutdown -Kylie Jenner -Kylie Jenner -Virginia Woolf -Winter Olympics -Virginia Woolf -Patriots -Carter G. Woodson -Rob Gronkowski -Super blue blood Moon -What Time Is The Super Bowl -Wilder Penfield -Government Shutdown Meaning -Florida shooting -Mikaela Shiffrin -Wilder Penfield -Rachel Brand -Super Bowl score -Google Drive -Kylie Jenner -New England Patriots owner -Carter G. Woodson -Super Bowl score -Memo -XFL -Larry Nassar -Super Bowl 2018 -Sergei Eisenstein -State of the Union -Sergei Eisenstein -Sergei Eisenstein -Larry Nassar -Blake Griffin -Women's March 2018 -Carter G. Woodson -Google Classroom -What Time Is The Super Bowl -Kylie Jenner -Paula Modersohn-Becker -Hope Hicks -Wilder Penfield -Jessica Chastain -Larry Nassar -Florida shooting -Virginia Woolf -Carter G. Woodson -Valentines Day -Super Bowl 2018 -Scott Baio -12 Strong -Wilder Penfield -SpaceX -Jane Fonda -Adam Rippon -Paula Modersohn-Becker -Florida shooting -Happy Valentines Day -Florida shooting -Sergei Eisenstein -State of the Union -Alessia Cara -Florida shooting -Melania Trump -Winter Olympics -Super Bowl 2018 -Dow Jones -Government Shutdown -The 15:17 to Paris -Wilder Penfield -Patriots -Release The Memo -Elizabeth Blackwell -Mark Salling -Yahoo Finance -Cnbc -Virginia Woolf -Grammys 2018 -Black Panther -Daryle Singletary -Mexico Vs Bosnia -Grammys 2018 -SpaceX -Patriots -Super blue blood Moon -Sergei Eisenstein -SpaceX -Nathan Chen -Groundhog Day 2018 -Bitcoin Price -Kesha Grammy -Sergei Eisenstein -Obama portrait -Government shutdown 2018 -Lena Zawaideh -Netflix Stock -Paula Modersohn-Becker -Super Bowl score -Florida shooting -What Time Is The Super Bowl -Black Panther -Kylie Jenner -Steve Wynn -Carter G. Woodson -Grammys 2018 -Brie Larson -Larry Nassar -Robert Wagner -Paula Modersohn-Becker -Dow Jones -Paula Modersohn-Becker -Super Bowl 2018 -Dow Jones -Winter Olympics -Senior Bowl -Mark Salling -Sergei Eisenstein -Hope Hicks -Purdue basketball -Patriots -Super Bowl 2018 -Kylie Jenner -Super Bowl 2018 -Winter Olympics -Winter Olympics -SAG Awards 2018 -Groundhog Day 2018 -Russell Wilson -Winter Olympics -Florida shooting -Larry Nassar -Groundhog Day 2018 -Google docs -SpaceX -Florida shooting -Carter G. Woodson -Super Bowl 2018 -Paula Modersohn-Becker -Government Shutdown -Wilder Penfield -Patriots -Sea of Thieves -Den of Thieves -Carter G. Woodson -Real Madrid -Super Bowl 2018 -Paula Modersohn-Becker -Oar Olympics -Camila Cabello -Wilder Penfield -Carter G. Woodson -What Time Is The Super Bowl -Shaun White -Presidents Day 2018 -Virginia Woolf -Dwyane Wade -Government Shutdown -Jason Kelce -Kylie Jenner -What Time Is The Super Bowl -Mark Salling -Mardi Gras 2018 -Vikings Vs Eagles -Roger Federer -12 Strong -Super Bowl score -Bradie Tennell -Sergei Eisenstein -Wilder Penfield -Russell Wilson -Elizabeth Blackwell -Nintendo Labo -State of the Union -Super Bowl 2018 -Jane Fonda -Super Bowl 2018 -UFC 220 -Patriots -What Time Is The Super Bowl -Halsey -Elizabeth Blackwell -Grammys 2018 -Florida shooting -Paula Modersohn-Becker -Super Bowl score -Grammys 2018 -Justin Timberlake -Virginia Woolf -SpaceX -Super Bowl score -Happy Valentines Day -Florida shooting -Olympic Medal Count -Kylie Jenner -Winter Olympics -Groundhog Day 2018 -Super Bowl score -Laura Ingraham -Paula Modersohn-Becker -Tesla in space -SAG Awards 2018 -Government shutdown -Super Bowl 2018 -Groundhog Day 2018 -Black Panther -Kylie Jenner -Rasual Butler -Fifty Shades Freed -XFL -Childish Gambino -Justin Timberlake -Super Bowl score -Government Shutdown -Patriots -Florida shooting -Elizabeth Blackwell -Kylie Jenner Baby Girl -Shaun White -Happy Valentines Day -Patti LuPone -Virginia Woolf -Super Bowl score -Super Bowl 2018 -Dow Jones -Dwyane Wade -Early Man -Patriots -Wilder Penfield -earthquake -Altered Carbon -Virginia Woolf -Paula Modersohn-Becker -Carter G. Woodson -Vikings Vs Eagles -Pro Bowl 2018 -Eli Manning -Larry Nassar -Vikings Vs Eagles -Groundhog Day 2018 -Adam Rippon -Blake Griffin -Florida shooting -Elizabeth Blackwell -What Time Is The Super Bowl -UFC 220 -Kylie Jenner -Carter G. Woodson -Winter Olympics -SAG Awards 2018 -Winter Olympics -Chinese New Year 2018 -Groundhog Day 2018 -Solo Trailer -Simona Halep -Patriots -Super Bowl score -Julie Ertz -Florida shooting -Carter G. Woodson -Super Bowl 2018 -Florida shooting -Wilder Penfield -Mikaela Shiffrin -Carter G. Woodson -What Time Is The Super Bowl -Florida shooting -What Time Is The Super Bowl -Paula Modersohn-Becker -Super Bowl 2018 -Shaun White -Florida shooting -Olivia Culpo -Edwin Jackson -CNN -Olympic medal count -Super Bowl score -Sergei Eisenstein -Super Bowl score -UFC 220 -Super Bowl score -Valentines Day -All Star Weekend 2018 -Celtics -Did the Groundhog See His Shadow -What Time Is The Super Bowl -Super Bowl 2018 -Wilder Penfield -Josh McDaniels -What Time Is The Super Bowl -Super Bowl 2018 -Patriots -Super Bowl score -New England Patriots owner -Dow Jones -Government Shutdown -Super blue blood Moon -SpaceX -Nancy Pelosi -Real Madrid -Kesha Grammy -Paula Modersohn-Becker -H&r Block -Paula Modersohn-Becker -Dow Jones -Sergei Eisenstein -Black Panther -Alex Smith -Yura Min -Larry Nassar -Super blue blood Moon -Wilder Penfield -Nintendo Labo -XFL -Steve Mcnair -Elizabeth Blackwell -All Star Weekend 2018 -Super Bowl 2018 -Carter G. Woodson -Solo Trailer -Harley Barber -Carter G. Woodson -Winter Olympics -Bitcoin Price -Atlanta Weather -Dow Jones -State of the Union -Super Bowl score -Sergei Eisenstein -Mark Salling -Virginia Woolf -CNN -Steve Mcnair -Justin Timberlake -Super Bowl Commercials 2018 -CNN -Super Bowl 2018 -Robert Wagner -Florida shooting -Rob Porter -Carter G. Woodson -Lil Xan -Super Bowl 2018 -John Mahoney -Winter Olympics -Carter G. Woodson -Jessica Chastain -Virginia Woolf -Rasual Butler -Government Shutdown -XFL -Sergei Eisenstein -NBA Trades -Turpin -Larry Nassar -Government Shutdown -Olympic Medal Count -Jemele Hill -Super Bowl score -Justin Timberlake -Cavs -Sergei Eisenstein -AR-15 -Paula Modersohn-Becker -Daryle Singletary -Kristaps Porzingis -Winter Olympics -Bruno Mars -Carter G. Woodson -Paula Modersohn-Becker -Elizabeth Blackwell -Olympics 2018 -Lindsey Vonn -Dua Lipa -Patriots -Winter Olympics -Super Bowl score -Dwyane Wade -NBA Trades -Virginia Woolf -Shaun White -12 Strong -Florida shooting -Logan Paul -Virginia Woolf -Portia de Rossi -Omarosa -Carter G. Woodson -Winter Olympics -Jennifer Aniston -Kylie Jenner -KSI Vs Weller -Carter G. Woodson -Virginia Woolf -Trump State of the Union -Winter Olympics -Tiger Woods -Oscar Nominations 2018 -Black Panther -Laura Ingraham -Danielle Herrington -Nba All Star 2018 -Vikings Vs Eagles -calculator -Patriots -Justin Timberlake -Paula Modersohn-Becker -Wilder Penfield -Elizabeth Blackwell -Royal Rumble 2018 -Phantom Thread -Paula Modersohn-Becker -Virginia Woolf -Oar Olympics -Alaska earthquake -Sergei Eisenstein -Super Bowl 2018 -Winter Olympics -Justin Timberlake -Oscar Nominations 2018 -Oscar Nominations 2018 -Virginia Woolf -Wilder Penfield -Justin Timberlake -Sergei Eisenstein -Sergei Eisenstein -Kim Kardashian -Dwyane Wade -Valentines Day -Oscar Nominations 2018 -Solo Trailer -Patriots -Patriots -Carter G. Woodson -Government Shutdown -Yahoo Finance -Government shutdown 2018 -Roger Federer -Jessica Chastain -Duke Basketball -Justin Timberlake -Patriots -Grammys 2018 -Florida shooting -Winter Olympics -Grammys 2018 -Memo -Columbine Shooting -Oscar Nominations 2018 -Dwyane Wade -Larry Nassar -Robert Wagner -Sergei Eisenstein -Patriots -Oscar Nominations 2018 -Mark Salling -What Time Is The Super Bowl -Emily Sweeney -Winter Olympics -SpaceX -Patriots -Carter G. Woodson -Florida shooting -Obama portrait -Virginia Woolf -Josh McDaniels -Super Bowl score -Florida shooting -Juventus -Winter Olympics -LL Bean -Homeland -Adam Rippon -Patriots -Super Bowl 2018 -Patriots -Justin Timberlake -Patriots -Grammys 2018 -Patriots -Groundhog Day 2018 -Rodney Hood -Super Bowl score -Ted Bundy -Walter Payton -Paula Modersohn-Becker -Elizabeth Blackwell -Edwin Jackson -Shaun White -Super blue blood Moon -Andrew McCabe -Houston Rockets -Oscar Nominations 2018 -Elizabeth Blackwell -Despacito -What Time Is The Super Bowl -Elizabeth Blackwell -Cavs -Wilder Penfield -Carter G. Woodson -Zion Williamson -Virginia Woolf -Dow Jones -Mark Salling -NBA Trades -Cavs -Wilder Penfield -SpaceX -Florida shooting -Justin Timberlake -Government shutdown 2018 -Aaron Hernandez -Virginia Woolf -Super Bowl Commercials 2018 -Wilder Penfield -Wilder Penfield -Winter Olympics -Super blue blood Moon -Paula Modersohn-Becker -Super blue blood Moon -Sergei Eisenstein -Oscar Nominations 2018 -Justin Timberlake -Winter Olympics -school closings -Winter Olympics -Sergei Eisenstein -CBS Sports -Super Bowl Commercials 2018 -Virginia Woolf -Halsey -Google Classroom -Kris Dunn -Florida shooting -Super Bowl Commercials 2018 -Government Shutdown -Government Shutdown -Kesha -Patriots -Mitt Romney -Patriots -Blood Moon -Korea -Omarosa -Carrie Underwood -Lindsey Vonn -Farmers Insurance Open 2018 -Quincy Jones -Justin Timberlake -Valentines Day -Elizabeth Blackwell -Virginia Woolf -Mark Salling -Sergei Eisenstein -Steve Wynn -SpaceX -Elizabeth Blackwell -Chicago West -Florida shooting -Alexa Commercial -Virginia Woolf -Virginia Woolf -Rasual Butler -Dow Jones -Kentucky shooting -Jamie Dornan -SpaceX -Elizabeth Blackwell -SpaceX -Florida shooting -Happy Valentines Day -Super Bowl 2018 -Sergei Eisenstein -Wilder Penfield -NBA Trades -Winter Olympics -Elizabeth Blackwell -Elizabeth Blackwell -Chloe Kim -Super Bowl 2018 -XFL -Sergei Eisenstein -Elizabeth Blackwell -Bruno Mars -This Is Us -Winter Olympics -Blood Moon -Super blue blood Moon -AR-15 -Super Bowl score -Dragon Ball Super -Dwyane Wade -Groundhog Day 2018 -Elizabeth Blackwell -Elizabeth Blackwell -Robert Wagner -Government Shutdown -Sergei Eisenstein -Grammys 2018 -Sergei Eisenstein -SpaceX -Winter Olympics -Chris Mazdzer -Alison Brie -Tom Brady -Larry Nassar -Virginia Woolf -Sergei Eisenstein -Grammys 2018 -Olympics 2018 -Jessica Chastain -Elizabeth Blackwell -Kodak Black -CNN -Wilder Penfield -Bitcoin Price -Kylie Jenner -Olympic medal count -Blue Moon -Carter G. Woodson -Sergei Eisenstein -fake news awards -Justin Timberlake -Meteor -What Time Is The Super Bowl -Patriots -Florida shooting -calculator -Nathan Chen -What Time Is The Super Bowl -Justin Timberlake -Yura Min -Government Shutdown 2018 -Patriots -Elizabeth Blackwell -Carter G. Woodson -Elizabeth Blackwell -Wilder Penfield -Patriots -Memo -Justin Timberlake -SpaceX -Earthquake Today -Elizabeth Blackwell -Florida shooting -Virginia Woolf -Sergei Eisenstein -Carter G. Woodson -school closings -Super Bowl score -Government shutdown 2018 -Shaun White -Jason Kelce -Red Gerard -Lou Anna Simon -Winter Olympics -Sergei Eisenstein -Paula Modersohn-Becker -Patriots -Super Bowl 2018 -What Time Is The Super Bowl -CNN -Patriots -Presidents Day 2018 -Super Bowl score -Ar 15 -SpaceX -Larry Nassar -Super Bowl Commercials 2018 -Super Bowl score -Wilder Penfield -Classroom -Oscar Nominations 2018 -Wilder Penfield -Wonder Woman -Grammys 2018 -Jessica Chastain -Government shutdown 2018 -Virginia Woolf -Kingdom Come Deliverance -Kylie Jenner -Justin Timberlake -Quincy Jones -Dolly Parton -Royal Rumble 2018 -Valentines Day Memes -Winter Olympics -Blake Griffin -Virginia Woolf -Virginia Woolf -Virginia Woolf -Lindsey Vonn -Culture 2 -Lonzo Ball -What Time Is The Super Bowl -Pro Bowl 2018 -Wilder Penfield -Amazon stock -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl score -Tesla in space -Shaun White -Florida shooting -Elizabeth Blackwell -Super Bowl score -Puppy Bowl 2018 -Frederick Douglass -Justin Timberlake -UFC 220 -Adam Rippon -Virginia Woolf -Kylie Jenner Baby Girl -Elizabeth Blackwell -Bruno Mars -Justin Timberlake -Florida shooting -Government Shutdown Meaning -State of the Union -Cedi Osman -Deadpool 2 -Super Bowl 2018 -Wilder Penfield -Super Bowl 2018 -Once Upon a Time -Winter Olympics -Despacito -Winter Olympics -Manchester United -The 15:17 to Paris -Carter G. Woodson -Red Gerard -Paula Modersohn-Becker -Wilder Penfield -Paula Modersohn-Becker -Tom Brady daughter -Super Bowl 2018 -Josh McDaniels -Elton John -Super Bowl score -Elizabeth Blackwell -Patriots -Carter G. Woodson -Patriots -Steve Mcnair -SpaceX -Cloverfield Paradox -Kylie Jenner -DeMarcus Cousins -Florida shooting -Kylie Jenner -Ash Wednesday -Super Bowl Commercials 2018 -Lunar eclipse -Bitcoin Price -Google Classroom -Rampage -SpaceX -Chloe Kim -Kesha Grammy -Super blue blood Moon -Elizabeth Blackwell -Sergei Eisenstein -Grammys 2018 -Sergei Eisenstein -Carter G. Woodson -Florida shooting -Virginia Woolf -Valentines Day -Super blue blood Moon -Wilder Penfield -Den of Thieves -Andrew McCabe -Sabrina Dhowre -Government Shutdown Meaning -tsunami -Virginia Woolf -Langston Hughes -Bitcoin Price -Mikaela Shiffrin -Alison Brie -Carter G. Woodson -Farmers Insurance Open 2018 -Chloe Kim -Super Bowl score -State of the Union -Government Shutdown -Sergei Eisenstein -Virginia Woolf -Jamie Anderson -Nancy Pelosi -Elizabeth Blackwell -Chinese New Year 2018 -Wilder Penfield -School Closings -Lena Zawaideh -Sergei Eisenstein -Florida shooting -Wilder Penfield -Mikaela Shiffrin -Forever My Girl -Aaron Hernandez -SpaceX -Florida shooting -calculator -Florida shooting -Black Panther -NBA Trades -Hope Hicks -Alex Smith -Super Bowl 2018 -Alex Smith -Vikings Vs Eagles -Elizabeth Blackwell -Johnny Manziel -Mark Salling -Zion Williamson -Fifty Shades Freed -Super Bowl 2018 -Fredo Santana -Earthquake Today -Sergei Eisenstein -Dow Jones -Kylie Jenner -Justin Timberlake -Memo -Super Bowl 2018 -Chrissy Teigen -Alexa Commercial -NBA Trades -Paula Modersohn-Becker -Bitcoin Price -Carter G. Woodson -Paula Modersohn-Becker -Government Shutdown -Super Bowl 2018 -Justin Timberlake -Tom Brady -Fredo Santana -Elizabeth Blackwell -Paula Modersohn-Becker -Venom -SpaceX -Justin Timberlake -Wilder Penfield -Black Panther -Elizabeth Blackwell -Super Bowl score -Winter Olympics -What Time Is The Super Bowl -Shaun White -Justin Timberlake -Terrell Owens -Paula Modersohn-Becker -Carter G. Woodson -Super blue blood Moon -Super Bowl 2018 -Grammys 2018 -Patriots -Wilder Penfield -Super Bowl score -Elizabeth Blackwell -Costco Wholesale -Government Shutdown Meaning -Paula Modersohn-Becker -Super Bowl 2018 -SpaceX -LL Bean -Virginia Woolf -Carter G. Woodson -Vikings Vs Eagles -Black Panther -Justin Timberlake -Kevin Love -Happy Valentines Day -SpaceX -Jamie Anderson -Fredo Santana -Patriots -Jamie Anderson -Sergei Eisenstein -Fredo Santana -SpaceX -Virginia Woolf -Florida shooting -Did the Groundhog See His Shadow -Virginia Woolf -Sergei Eisenstein -Early Man -Memo -Kentucky shooting -Abraham Lincoln -calculator -Sergei Eisenstein -Winter Olympics -New England Patriots owner -Super Bowl score -Winter Olympics -Shaun White -Kylie Jenner -NBA Trades -Cloverfield Paradox -Groundhog Day 2018 -Grammys 2018 -Carter G. Woodson -Paula Modersohn-Becker -Jenna Morasca -Justin Timberlake -Warren Miller -Paula Modersohn-Becker -Jimmy Garoppolo -Dwyane Wade -Jason Kelce -Virginia Woolf -Paula Modersohn-Becker -IXL -Solo Trailer -Super Bowl 2018 -Walter Payton -Wilder Penfield -Celebrity Big Brother cast -Super Bowl 2018 -Carter G. Woodson -NBA Trades -Oscar Nominations 2018 -Dow Jones -Wilder Penfield -Paula Modersohn-Becker -Bitcoin Price -Patriots -Doomsday Clock -Elizabeth Blackwell -Edwin Jackson -Chloe Kim -Elizabeth Blackwell -Sergei Eisenstein -Vince McMahon -Wilder Penfield -Carter G. Woodson -Grammys 2018 -Virginia Woolf -Happy Valentines Day -Patti LuPone -Caroline Wozniacki -Justin Timberlake -Jamie Dornan -Mark Salling -Sergei Eisenstein -Sergei Eisenstein -Zion Williamson -Super Bowl 2018 -Adam Rippon -Amy Schumer -Blake Griffin -Hostiles -Virginia Woolf -Chicago Weather -Nintendo Labo -SpaceX -Grammys 2018 -Florida shooting -Adam Rippon -Donald Trump Jr -stock market -Patriots -Paula Modersohn-Becker -Super Bowl score -Snapchat Update -Carter G. Woodson -Netflix Stock -Kingdom Come Deliverance -Super Bowl 2018 -Mardi Gras 2018 -Groundhog Day 2018 -Wilder Penfield -Yu Darvish -Oscar Nominations 2018 -Oscar Nominations 2018 -Sergei Eisenstein -Kylie Jenner -Fredo Santana -Super blue blood Moon -Winter Olympics -Grammys 2018 -Justin Timberlake -Wilder Penfield -Omarosa -School closings -Call Me by Your Name -Sergei Eisenstein -Kim Kardashian -Florida shooting -Super blue blood Moon -Elizabeth Blackwell -Ursula Le Guin -What Time Is The Super Bowl -Sergei Eisenstein -Farmers Insurance Open 2018 -Government Shutdown -Tom Brady -Mardi Gras 2018 -Super Bowl 2018 -Elon Musk -Dennis Edwards -Kylie Jenner -Gregory Salcido -Wilder Penfield -Sergei Eisenstein -Alex Smith -This Is Us -Blake Griffin Trade -Gods Plan -Chloe Kim -Wilder Penfield -Grammys 2018 -Super Bowl 2018 -Wilder Penfield -Google docs -Virginia Woolf -Isaiah Thomas -Carrie Underwood -Florida shooting -Government Shutdown -Jennifer Aniston -Oscar Nominations 2018 -Shaun White -AR-15 -DeMarcus Cousins -Patriots -Virginia Woolf -Winter Olympics -Elizabeth Blackwell -Patriots -Esteban Loaiza -Women's March 2018 -Johnny Weir -Mark Salling -Winter Olympics -Sergei Eisenstein -Paula Modersohn-Becker -Dow Jones -Vikings Vs Eagles -Florida shooting -Florida shooting -Alexander Polinsky -Carter G. Woodson -Phantom Thread -Oscar Nominations 2018 -Sergei Eisenstein -Elizabeth Blackwell -stock market -Rasual Butler -Super Bowl score -Super Bowl 2018 -Kylie Jenner -Bill Belichick -Super Bowl 2018 -Florida shooting -Memo -Paula Modersohn-Becker -Patriots -Florida shooting -Wilder Penfield -Alaska earthquake -Groundhog Day 2018 -Devin Nunes -Super Bowl score -Halsey -Virginia Woolf -Super Bowl Commercials 2018 -Justin Timberlake -Groundhog Day 2018 -Kentucky shooting -Bradie Tennell -Google Drive -Florida shooting -NBA Trades -Super Bowl 2018 -Wilder Penfield -Elizabeth Blackwell -Groundhog Day 2018 -Patriots -Paula Modersohn-Becker -Super Bowl score -Patriots -Super Bowl Commercials 2018 -Kylie Jenner -Super Bowl score -State of the Union -Megan Barry -Government Shutdown -Wilder Penfield -Paula Modersohn-Becker -Super Bowl score -Call Me by Your Name -Cloverfield Paradox -Florida shooting -Virginia Woolf -Shaun White -Vanessa Trump -Rob Porter -Justin Timberlake -Sergei Eisenstein -Harry Styles -Super blue blood Moon -Amy Schumer -Winter Olympics -Larry Nassar -Virginia Woolf -Mcdonald's -What Time Is The Super Bowl -Enzo Amore -Deadpool 2 -Vikings vs Eagles -Happy Valentines Day -Bitcoin Price -Olympic medal count -Winter Olympics -Patriots -XFL -Montreal Cognitive Assessment -Rose McGowan -Vikings vs Eagles -Google Classroom -Johnny Weir -Grammys 2018 -Kylie Jenner -Super Bowl 2018 -Valentines Day -Virginia Woolf -Wilder Penfield -Will Ferrell -Virginia Woolf -Super Bowl 2018 -Wilder Penfield -Bitcoin Price -What Time Is The Super Bowl -What Time Is The Super Bowl -CNN -Wilder Penfield -Elizabeth Blackwell -Super Bowl 2018 -Elizabeth Blackwell -Sergei Eisenstein -HomePod -Winter Olympics -Malcom Butler -Larry Nassar -Steve Wynn News -Super Bowl 2018 -Paula Modersohn-Becker -Shaun White -Paula Modersohn-Becker -Patriots -Super Bowl score -Vikings Vs Eagles -Justin Timberlake -Paula Modersohn-Becker -Florida shooting -Did the Groundhog See His Shadow -Super Bowl score -Elizabeth Blackwell -Patriots -Real Madrid -What Time Is The Super Bowl -Dow Jones -Super Bowl 2018 -Winter Olympics -Elizabeth Blackwell -12 Strong -Mr Rogers -Did the Groundhog See His Shadow -Florida shooting -Carter G. Woodson -Larry Nassar -Royal Rumble 2018 -Ash Wednesday -school closings -Super Bowl score -Andrew Cunanan -Earthquake Today -Patriots -Sergei Eisenstein -Wilder Penfield -Elizabeth Blackwell -SpaceX -Oscar Nominations 2018 -Black Panther -Logan Paul -Chloe Kim -Princess Eugenie -Patriots -Chloe Kim -Grammys 2018 -Florida shooting -Carter G. Woodson -Alaska earthquake -Tomi Lahren -Kim Cattrall -Grammys 2018 -UFC 220 -Jennifer Aniston -Did the Groundhog See His Shadow -Government Shutdown -Mikaela Shiffrin -Zion Williamson -Cavs -Elizabeth Blackwell -Shaun White -school closings -Government Shutdown -Florida shooting -Grammys 2018 -Florida shooting -Alex Smith -Logan Paul -Black Panther -Super Bowl 2018 -Grammys 2018 -Patriots -Super Bowl score -New England Patriots owner -Oscar Nominations 2018 -Aaron Feis -Dow Jones -Blake Griffin -Red Gerard -Valentines Day -Carter G. Woodson -Quincy Jones -Steve Wynn -Sergei Eisenstein -Natalie Portman -SAG Awards 2018 -SAG Awards 2018 -SpaceX -Shaun White -The 15:17 to Paris -Patriots -Wilder Penfield -Winter Olympics -Patriots -Elizabeth Blackwell -Trump State of the Union -Carter G. Woodson -Grammys 2018 -Google Classroom -Carter G. Woodson -Super Bowl score -Google Classroom -Alex Smith -Virginia Woolf -Happy Valentines Day -Mikaela Shiffrin -Caroline Wozniacki -Super Bowl score -Elizabeth Blackwell -calculator -Wilder Penfield -SpaceX -Vincent Zhou -Alaska earthquake -Culture 2 -Valentines Day -Oscar Nominations 2018 -Kitty Kat West -Dow Jones -NBA Trades -Elizabeth Blackwell -Carter G. Woodson -What Time Is The Super Bowl -Trump State of the Union -Cavs -Winter Olympics -Justin Timberlake -New England Patriots owner -Elizabeth Blackwell -Super blue blood Moon -Super blue blood Moon -Jane Fonda -Carter G. Woodson -Sal Castro Middle School -Andrew Cunanan -SAG Awards 2018 -Kylie Jenner -Grammys 2018 -Carter G. Woodson -Google docs -Patriots -Grammys 2018 -Florida shooting -What Time Is The Super Bowl -Robert Wagner -Bitcoin Price -Paula Modersohn-Becker -LeBron James -Johnny Weir -Justin Timberlake -Justin Timberlake -Black Panther -Elizabeth Blackwell -Ash Wednesday -Florida shooting -Grammys 2018 -Winter Olympics -Sergei Eisenstein -Edwin Jackson -Logan Paul -Chicago West -Paula Modersohn-Becker -Women's March 2018 -Vanessa Marcil -Juventus -Olympic Medal Count -Grey's Anatomy -Chicago West -Vikings Vs Eagles -What Time Is The Super Bowl -Florida shooting -Justin Timberlake -Kesha Grammy -Florida shooting -Ar 15 -SpaceX -Super Bowl score -Super Bowl score -Google Classroom -Peter Rabbit -Patriots -Rachel Brand -Shaun White -Carter G. Woodson -Melania Trump -What Time Is The Super Bowl -Kylie Jenner -Ann Curry -Elizabeth Blackwell -calculator -Elizabeth Blackwell -Virginia Woolf -Winter Olympics -Justin Timberlake -Dwyane Wade -Mark Salling -Government Shutdown Meaning -Mardi Gras 2018 -Portia de Rossi -Virginia Woolf -Esteban Loaiza -Taiwan -Kylie Jenner -Patriots -Fredo Santana -Alex Smith -Happy Valentines Day -Meteor -Bitcoin Price -Super Bowl score -State of the Union -February -Lakers -Outback Steakhouse -Winter Olympics -Jen Selter -Ted Bundy -Patriots -Super Bowl 2018 -Andrew Cunanan -Paula Modersohn-Becker -Patriots -Sergei Eisenstein -Wilder Penfield -Red Gerard -Mardi Gras 2018 -What Time Is The Super Bowl -Virginia Woolf -Carter G. Woodson -Fifty Shades Freed -Trump State of the Union -Alessia Cara -Super Bowl Commercials 2018 -Carter G. Woodson -Virginia Woolf -Happy Valentines Day -Wilder Penfield -Mardi Gras 2018 -Grammys 2018 -Super Bowl score -Wilder Penfield -Patriots -Sergei Eisenstein -Trump State of the Union -Despacito -Sergei Eisenstein -Fifty Shades Freed -Gigi Hadid -Sergei Eisenstein -Wilder Penfield -Wilder Penfield -Virginia Woolf -Wilder Penfield -Adam Rippon -Winter Olympics -SpaceX -Justin Timberlake -Carter G. Woodson -Tiger Woods -Cavs -Super Bowl Commercials 2018 -Justin Timberlake -Will Ferrell -Robert Wagner -Cloverfield Paradox -Government Shutdown -Paula Modersohn-Becker -Mark Salling -Joe Kennedy -NHL All Star Game -Berkshire Hathaway -Puppy Bowl 2018 -Carter G. Woodson -Uma Thurman -Patriots -Childish Gambino -Larry Nassar -Paula Modersohn-Becker -Winter Olympics -Government Shutdown -SAG Awards 2018 -Paula Modersohn-Becker -Kylie Jenner -Paula Modersohn-Becker -SAG Awards 2018 -Mark Salling -Grammys 2018 -Vikings vs Eagles -Harley Barber -Paula Modersohn-Becker -Solo Trailer -SpaceX -Earthquake -Rodney Hood -Paula Modersohn-Becker -Patriots -Virginia Woolf -Elizabeth Blackwell -Despacito -Halsey -Government Shutdown Meaning -Cherry Seaborn -Winter Olympics -Dwyane Wade -Carter G. Woodson -Arsenal -Den of Thieves -Florida shooting -Patriots -Jennifer Aniston -Grammys 2018 -Super Bowl 2018 -NBA Trades -NBA Trades -School Closings -Virginia Woolf -Jessica Chastain -Sergei Eisenstein -Camila Cabello -Patriots -Grammys 2018 -Hope Hicks -This Is Us -Carter G. Woodson -Wilder Penfield -Kylie Jenner -Mark Salling -Groundhog Day 2018 -Florida shooting -Shaun White -Elizabeth Blackwell -Vanessa Trump -Florida shooting -Elizabeth Blackwell -CBS Sports -Elizabeth Blackwell -Lou Anna Simon -Korea -What Time Is The Super Bowl -Virginia Woolf -National Pizza Day -Justin Timberlake -Patriots -Julie Ertz -Early Man -Groundhog Day 2018 -Winter Olympics -Super Bowl score -National Pizza Day -Carter G. Woodson -Dwyane Wade -Sergei Eisenstein -Super Bowl 2018 -school closings -Super Blue Blood Moon -Paula Modersohn-Becker -Jennifer Aniston -Yahoo Finance -Florida shooting -tsunami -Virginia Woolf -Kim Kardashian -Super Bowl 2018 -Government shutdown 2018 -The 15:17 to Paris -Virginia Woolf -What Time Is The Super Bowl -Justin Timberlake -Virginia Woolf -Carter G. Woodson -Virginia Woolf -Carter G. Woodson -Patriots -Elizabeth Blackwell -Carter G. Woodson -Hostiles -Patriots -Super Bowl score -Kim Kardashian -Justin Timberlake -Super Bowl 2018 -Pro Bowl 2018 -Grammys 2018 -Justin Timberlake -Olivia Culpo -Patriots -Mark Salling -Drive -Solo Trailer -Paula Modersohn-Becker -Oscar Nominations 2018 -Vikings Vs Eagles -Carter G. Woodson -Emily Sweeney -Blake Griffin -Super blue blood Moon -Government shutdown 2018 -SpaceX -Esteban Loaiza -Royal Rumble 2018 -Obama portrait -Alessia Cara -Chicago West -Dow Jones -Florida shooting -Florida shooting -Elizabeth Blackwell -Despacito -Patriots -Adam Hicks -Kylie Jenner -Winter Olympics -Grammys 2018 -Patriots -Shaun White -Super Bowl 2018 -Winter Olympics -Winter Olympics -Hailee Steinfeld -Government shutdown -UFC 220 -Carter G. Woodson -Shaun White -Shaun White -The Home Depot -Florida shooting -Carter G. Woodson -NBA Trades -Highline College -Elizabeth Blackwell -Andrew Cunanan -Patriots -Elizabeth Blackwell -Government shutdown 2018 -Sergei Eisenstein -Groundhog Day 2018 -Patriots -Super Bowl score -Isaiah Canaan -Chloe Kim -Carter G. Woodson -Alex Smith -Sergei Eisenstein -Portia de Rossi -Justin Timberlake -Bitcoin Price -Cavs -Dwyane Wade -Virginia Woolf -Super Bowl 2018 -Vikings vs Eagles -Florida shooting -Fredo Santana -Valentines Day -Chloe Kim -Carrie Underwood -John Mahoney -Government Shutdown -Manchester United -Justin Timberlake -Grammys 2018 -Super blue blood Moon -Patriots -Paula Modersohn-Becker -Mark Salling -Valentines Day -This is Us -Wilder Penfield -Dwyane Wade -Bitcoin Price -Wilder Penfield -Jessica Chastain -Solo Trailer -Florida shooting -Lady Bird -Paula Modersohn-Becker -Super Bowl score -Paula Modersohn-Becker -Virginia Woolf -Cloverfield Paradox -Winter Olympics -Royal Rumble 2018 -SAG Awards 2018 -NASA -Alison Brie -Kate Upton -Jennifer Aniston -Nintendo Labo -Sergei Eisenstein -Kylie Jenner -Carter G. Woodson -Virginia Woolf -Vikings Vs Eagles -earthquake today -This Is Us -Caitlin McHugh -Chipper Jones -Elizabeth Blackwell -Elizabeth Blackwell -Justin Timberlake -Super Bowl 2018 -State of the Union -What Time Is The Super Bowl -Virginia Woolf -Florida shooting -Larry Nassar -Florida shooting -Carter G. Woodson -Sergei Eisenstein -Super Bowl 2018 -Pro Bowl 2018 -Alex Smith -State of the Union -Trump State of the Union -Joe Kennedy -Joe Kennedy -Solo Trailer -Joel Taylor -Cnbc -Florida shooting -Cavs -Super Bowl Commercials -Wilder Penfield -Chicago West -Blake Griffin -Sergei Eisenstein -Netflix Stock -Tiger Woods -Alex Smith -State of the Union -Winter Olympics -Vikings vs Eagles -Florida shooting -Happy Valentines Day -Mark Salling -Wilder Penfield -Mardi Gras 2018 -Paula Modersohn-Becker -Paula Modersohn-Becker -Shaun White -Did the Groundhog See His Shadow -Omarosa -Dwyane Wade -Kylie Jenner Baby Girl -Ash Wednesday -Solo Trailer -Dwyane Wade -Carter G. Woodson -Sergei Eisenstein -Jason Kelce -Justin Timberlake -Sergei Eisenstein -Bradie Tennell -Super Bowl 2018 -New England Patriots owner -Puppy Bowl 2018 -Bill Paxton -National Pizza Day -Elizabeth Blackwell -Winter Olympics -Wilder Penfield -Super Bowl score -Elizabeth Blackwell -Florida shooting -School closings -Super Bowl score -Mark Salling -Rachel Brand -Bitcoin Price -Winter Olympics -Virginia Woolf -Obama portrait -Lunar eclipse -Wilder Penfield -What Time Is The Super Bowl -Carter G. Woodson -Virginia Woolf -Grammys 2018 -Super Bowl score -Memo -Joe Kennedy -Steve Mcnair -Kevin Love -Elton John -Grammys 2018 -Kylie Jenner -Winter Olympics -Virginia Woolf -Florida shooting -Government Shutdown 2018 -Wing Bowl 2018 -Toys R Us -Grammys 2018 -Elizabeth Blackwell -Nadal -Sergei Eisenstein -SAG Awards 2018 -Dow Jones -Winter Olympics -Super blue blood Moon -Florida shooting -Florida shooting -Did the Groundhog See His Shadow -Dow Jones -Dwyane Wade -Grammys 2018 -Paula Modersohn-Becker -Stormi -Justin Timberlake -Super Bowl Commercials -Winter Olympics -Elizabeth Blackwell -Did the Groundhog See His Shadow -Dow Jones -12 Strong -Government shutdown 2018 -Super blue blood Moon -Cavs -Dow Jones -Despacito -Super Bowl 2018 -Super Bowl score -Florida shooting -Adam Rippon -Google Classroom -Paula Modersohn-Becker -Dwyane Wade -Chloe Kim -Paula Modersohn-Becker -Paula Modersohn-Becker -Wilder Penfield -NFL Honors -Altered Carbon -Super Bowl score -Black Lightning -school closings -Wilder Penfield -NBA Trades -SpaceX -Patriots -Elizabeth Blackwell -Justin Timberlake -Super Bowl Commercials -Paula Modersohn-Becker -Patriots -Groundhog Day 2018 -Warren Miller -Elizabeth Blackwell -Florida shooting -Patti LuPone -Alex Smith -CNN -Florida shooting -Larry Nassar -Paula Modersohn-Becker -school closings -NBA Trades -Virginia Woolf -SpaceX -Paula Modersohn-Becker -Grammys 2018 -SAG Awards 2018 -Virginia Woolf -Carter G. Woodson -Sergei Eisenstein -earthquake today -Patriots -Groundhog Day 2018 -Government Shutdown -Carter G. Woodson -Wilder Penfield -Chicago West -Patriots -Rasual Butler -Sabrina Dhowre -New England Patriots owner -Justin Timberlake -Cavs -Jen Selter -Government Shutdown -Super Bowl 2017 -Women's March 2018 -Carter G. Woodson -Tessa Virtue -Call Me by Your Name -Aaron Fies -Paula Modersohn-Becker -Wilder Penfield -Kim Cattrall -Virginia Woolf -NBA Trades -Black Panther -Super Bowl score -Winter Olympics -Josh McDaniels -Elizabeth Blackwell -Wilder Penfield -Disneyland tickets -UFC 220 -Devin Nunes -Sergei Eisenstein -DeMarcus Cousins -Florida shooting -Super Bowl score -Elizabeth Blackwell -Trump State of the Union -Vikings Vs Eagles -Terrell Owens -Mark Salling -Mark Salling -Altered Carbon -Florida shooting -Sergei Eisenstein -Justin Timberlake -Chinese New Year 2018 -Super Bowl score -Florida shooting -Sergei Eisenstein -Sting -The 15:17 to Paris -Royal Rumble 2018 -Kylie Jenner -SpaceX -Scott Baio -Dow Jones -Justin Timberlake -Royal Rumble 2018 -Carter G. Woodson -SpaceX -Carter G. Woodson -Chris Mazdzer -XFL -Justin Timberlake -State of the Union -Kylie Jenner -Steven Tyler -Winter Olympics -Super Bowl 2018 -Solo Trailer -Paula Modersohn-Becker -Robert Wagner -Chicago West -SAG Awards 2018 -Gianni Versace -Winter Olympics -Government Shutdown Meaning -Paula Modersohn-Becker -Florida shooting -Rob Delaney -Winter Olympics -Hope Hicks -Adam Rippon -Dennis Edwards -Adam Rippon -Winter Olympics -Omarosa -Winter Olympics -Virginia Woolf -Google Drive -Super blue blood Moon -Kylie Jenner -NBA Trades -This Is Us -Oscar Nominations 2018 -Sergei Eisenstein -Patriots -Vikings Vs Eagles -Hope Hicks -Super Bowl score -Super Bowl score -Lil Pump -Hostiles Movie -Oscar Gamble -Super Bowl 2018 -Virginia Woolf -Robby Anderson -Solo Trailer -Sergei Eisenstein -Carter G. Woodson -Super Bowl 2018 -Groundhog Day 2018 -Mardi Gras 2018 -SpaceX -Vikings Vs Eagles -Carter G. Woodson -Lee Miglin -Blake Griffin -Winter Olympics -Patriots -Venom -Walter Payton -Sergei Eisenstein -Kylie Jenner -Super Bowl score -Paula Modersohn-Becker -Netflix Stock -Kim Kardashian -Super Bowl score -Wilder Penfield -Super Bowl 2018 -Super blue blood Moon -Paula Modersohn-Becker -Justin Timberlake -Patriots -Super Bowl score -Justin Timberlake -Super blue blood Moon -Florida shooting -Anna Kournikova -Justin Timberlake -Government Shutdown -Elizabeth Blackwell -Lari White -Paula Modersohn-Becker -Patriots -Elizabeth Blackwell -Happy Valentines Day -Virginia Woolf -Government Shutdown -State of the Union -Solo Trailer -Super Bowl score -Andrew Cunanan -Elizabeth Blackwell -Dow Jones -Larry Nassar -Dow Jones -Black Panther -Oscar Nominations 2018 -Florida shooting -CNN -Government shutdown 2018 -Super Bowl 2018 -Elizabeth Blackwell -Patriots -Vikings Vs Eagles -Winter Olympics -Celtics -Patriots -Mark Salling -Super Bowl 2018 -Reg E Cathey -Sergei Eisenstein -Fredo Santana -Patriots -Government Shutdown -SpaceX -Carter G. Woodson -Elizabeth Blackwell -Virginia Woolf -Wilder Penfield -SpaceX -Elizabeth Blackwell -Jennifer Aniston -Wilder Penfield -Cavs -Jennifer Aniston -Paula Modersohn-Becker -Grammys 2018 -Patriots -Florida shooting -SpaceX -Paula Modersohn-Becker -Super Bowl score -Winter Olympics -Super Bowl score -Johnny Weir -Grammys 2018 -Drake -Winter Olympics -Virginia Woolf -Elizabeth Blackwell -Florida shooting -Mikaela Shiffrin -calculator -Elizabeth Blackwell -Paula Modersohn-Becker -Dane Cook -Fifty Shades Freed -NBA Trades -Josh McDaniels -Meteor -SpaceX -SAG Awards 2018 -Super Bowl score -Super Bowl score -Mark Salling -Kim Kardashian -Shaun White -Super Bowl score -Aaron Fies -Alex Smith -Carter G. Woodson -Super Bowl 2018 -Omarosa -John Mahoney -Kentucky shooting -Bode Miller -State of the Union -Wilder Penfield -Carter G. Woodson -Hope Hicks -Carter G. Woodson -Paula Modersohn-Becker -Pro Bowl 2018 -Patriots -Winter Olympics -Virginia Woolf -Carter G. Woodson -Super Bowl 2018 -Wilder Penfield -Google docs -Kesha -Paula Modersohn-Becker -Winter Olympics -Chris Long -Winter Olympics -Sea of Thieves -stock market -Alex Smith -Virginia Woolf -Florida shooting -Bitcoin Price -Grammys 2018 -Sandy Hook -Lil Pump -Super Bowl 2018 -Red Gerard -Patriots -CNN -Patriots -Winter Olympics -Winter Olympics -Deadpool 2 -Rasual Butler -Patriots -Zuleyka Rivera -Larry Nassar -SpaceX -Super Bowl 2018 -Patriots -Sergei Eisenstein -Earthquake Today -SZA -Wilder Penfield -Blood Moon -Paula Modersohn-Becker -Mikaela Shiffrin -Grammys 2018 -Obama portrait -Mikaela Shiffrin -Virginia Woolf -Culture 2 -Government Shutdown -Cloverfield Paradox -Nba All Star 2018 -Wilder Penfield -Government Shutdown -Grammys 2018 -Winter Olympics -Post Malone -Paula Modersohn-Becker -Snake -Wilder Penfield -Tesla in space -Derrick Rose -Cavs -Nathan Chen -Florida shooting -Sergei Eisenstein -CNN -Vikings vs Eagles -Mark Salling -Vince McMahon -Government Shutdown Meaning -Vikings Vs Eagles -SpaceX -Wilder Penfield -Tom Brady -Kylie Jenner -Groundhog Day 2018 -Elizabeth Blackwell -Ash Wednesday -Bob Dole -Cherry Seaborn -Alessia Cara -Vanessa Trump -SpaceX -Carter G. Woodson -Adam Rippon -Paula Modersohn-Becker -Cory Booker -Super Bowl 2018 -Patriots -SAG Awards 2018 -United States Postal Service -Bradie Tennell -Nathan Chen -Dow Jones -Gianni Versace -Alessia Cara -Paula Modersohn-Becker -NBA Trades -Paula Modersohn-Becker -James Baldwin -School Closings -Paula Modersohn-Becker -Royal Rumble 2018 -Bernie Sanders -Grey's Anatomy -Sabrina Dhowre -Government shutdown -XFL -Winter Olympics -Solo Trailer -Elizabeth Blackwell -Virginia Woolf -What Time Is The Super Bowl -Patriots -Farmers Insurance Open 2018 -Westerville Ohio -Alessia Cara -This Is Us -Sergei Eisenstein -Taiwan Earthquake Today -Paula Modersohn-Becker -Childish Gambino -Justin Timberlake -Dwyane Wade -Elizabeth Blackwell -Kylie Jenner -Virginia Woolf -Mardi Gras 2018 -National Pizza Day -Super Bowl 2018 -Winter Olympics -Florida shooting -Super Bowl score -Fredo Santana -Chloe Kim -Florida shooting -Classroom -Tony Romo -Grammys 2018 -Wilder Penfield -Tessa Virtue -Maze Runner: The Death Cure -Carrie Underwood -AR-15 -Sergei Eisenstein -Google docs -Super Bowl score -Chloe Kim -Happy Valentines Day -Carter G. Woodson -Alessia Cara -Super Bowl score -Elizabeth Blackwell -Super Bowl score -Michigan State -Super blue blood Moon -Sergei Eisenstein -Mikaela Shiffrin -calculator -Mark Salling -Dennis Edwards -Mexico earthquake -Paula Modersohn-Becker -Elizabeth Blackwell -Tsunami Warning -Sergei Eisenstein -Kylie Jenner -Fifty Shades Freed -Grammys 2018 -Virginia Woolf -Turpin -Ash Wednesday -Paula Modersohn-Becker -Johnny Weir -Patriots -Happy Valentines Day -Government Shutdown -Shaun White -Elton John -SpaceX -Carter G. Woodson -SpaceX -Steve Wynn -SpaceX -Blue Moon -Super blue blood Moon -Elizabeth Blackwell -Dwyane Wade -Scott Baio -Carter G. Woodson -Adam Hicks -SpaceX -Grammys 2018 -Government Shutdown -Joel Taylor -Super Bowl Commercials -Carter G. Woodson -Real Madrid -Super Bowl score -What Time Is The Super Bowl -Fredo Santana -Yu Darvish -Sergei Eisenstein -Fidel Castro -Isaiah Thomas -Joe Kennedy -Josh Allen -Larry Nassar -Government Shutdown -Paula Modersohn-Becker -Puppy Bowl 2018 -DeMarcus Cousins -Adam Schiff -Larry Nassar -Lonzo Ball -Johnny Weir -Shaun White -State of the Union -Virginia Woolf -Dow Jones -Super Bowl 2018 -Champions League -Elizabeth Blackwell -Valentines Day -Tom Petty -Sal Castro Middle School -Black Panther -Kentucky shooting -Lindsey Vonn -Wilder Penfield -Patriots -Florida shooting -February -Alaska earthquake -Grammys 2018 -Paula Modersohn-Becker -Jemele Hill -Manchester United -Sergei Eisenstein -Black Panther -Super Bowl 2018 -Jon Huntsman -Patriots -Jason Kelce -Florida shooting -LeBron James -State of the Union -Emily Sweeney -Oscar Nominations 2018 -Taiwan Earthquake Today -Casey Affleck -government shutdown -Virginia Woolf -Justin Timberlake -Peter Rabbit -What Time Is The Super Bowl -SpaceX -Kim Kardashian -Vince McMahon -Mikaela Shiffrin -CNN -Groundhog Day 2018 -Kylie Jenner -Hailee Steinfeld -Kesha Grammy -Elizabeth Blackwell -Carter G. Woodson -Valentines Day -Super Bowl 2018 -Rodney Hood -Cloverfield Paradox -Blake Griffin -UFC 220 -Government Shutdown -Chicago West -Joshua Cooper Ramo -Chinese New Year 2018 -Ash Wednesday -Sergei Eisenstein -Jane Fonda -Super Bowl score -Sergei Eisenstein -Josh McDaniels -Government shutdown -Winter Olympics -Winter Olympics -Bitcoin Price -Kesha Grammy -Winter Olympics -Patriots -Sergei Eisenstein -Super Bowl score -Winter Olympics -Dow Jones -Super Bowl score -Government Shutdown -Eli Manning -Virginia Woolf -Justin Timberlake -Wilder Penfield -Elizabeth Blackwell -Paula Modersohn-Becker -Grammys 2018 -What Time Is The Super Bowl -Dow Jones -Lil Pump -Carter G. Woodson -tsunami -UFC 220 -Daryle Singletary -Kylie Jenner -What Time Is The Super Bowl -Carter G. Woodson -Carter G. Woodson -Hostiles -Sandy Hook -What Time Is The Super Bowl -Vikings Vs Eagles -Elizabeth Blackwell -Puppy Bowl 2018 -Terry Bradshaw -Carter G. Woodson -Elton John -Super Bowl 2018 -Sergei Eisenstein -Kylie Jenner -Alaska earthquake -Kylie Jenner -Florida shooting -Trump State of the Union -Alexa Commercial -Wilder Penfield -Josh McDaniels -Carter G. Woodson -Super Bowl score -Presidents Day 2018 -Florida shooting -Sea of Thieves -The Alienist -Florida shooting -Carter G. Woodson -SpaceX -Sergei Eisenstein -Trump State of the Union -Winter Olympics -Winter Olympics -Florida shooting -Adam Schiff -Grammys 2018 -State of the Union -Release The Memo -Wilder Penfield -NBA Trades -Winter Olympics -Tessa Virtue -Memo -NBA Trades -Rachel Brand -Carter G. Woodson -Patriots -Paula Modersohn-Becker -Trump State of the Union -UFC 220 -Super Bowl score -Groundhog Day 2018 -Justin Timberlake -Virginia Woolf -Chloe Kim -Friends The Movie 2018 -SpaceX -Black Panther -Wilder Penfield -Trump State of the Union -Chinese New Year 2018 -Florida shooting -Carter G. Woodson -Kylie Jenner -Virginia Woolf -School Closings -Government Shutdown -Justin Timberlake -Vikings Vs Eagles -Chris Paul -SAG Awards 2018 -Edible Arrangements -Kylie Jenner Baby Girl -John Mahoney -Gods Plan -Super Bowl 2018 -Super Bowl score -Vikings Vs Eagles -Trey Gowdy -Government Shutdown -Government Shutdown Meaning -Sergei Eisenstein -Winter Olympics -Alex Smith -Adam Rippon -Government Shutdown Meaning -Dow Jones -Elizabeth Blackwell -Patriots -Sergei Eisenstein -Government shutdown 2018 -Robert Wagner -Carter G. Woodson -Jennifer Aniston -Super Bowl 2018 -Westminster Dog Show 2018 -Lil Xan -Virginia Woolf -Paula Modersohn-Becker -Justin Timberlake -Government Shutdown Meaning -Cavs -Larry Nassar -Elizabeth Blackwell -Alison Brie -Winter Olympics -Elizabeth Blackwell -Wilder Penfield -Florida shooting -Government Shutdown -Fredo Santana -Obama portrait -Kesha -Mark Salling -NFL Honors -Cavs -Julie Ertz -Florida shooting -Friends movie -Kim Kardashian -Grammys 2018 -Justin Timberlake -Puppy Bowl 2018 -Oscar Nominations 2018 -What Time Is The Super Bowl -Arsenal -What Time Is The Super Bowl -Tomi Lahren -Caroline Wozniacki -Groundhog Day 2018 -Memo -SpaceX -Elizabeth Blackwell -Chloe Kim -Stan Lee -Super Bowl score -Groundhog Day 2018 -Memo -Casey Affleck -Super Bowl 2018 -Grammys 2018 -Virginia Woolf -Mardi Gras 2018 -Steve Mcnair -Super Bowl 2018 -Elizabeth Blackwell -Carter G. Woodson -Kelly Clark -Elizabeth Blackwell -Google Drive -Woody Allen -Alison Brie -Black Panther -Joseph Haynes -Tiger Woods -Carter G. Woodson -Florida shooting -Shaun White -Wilder Penfield -What Time Is The Super Bowl -Kylie Jenner -Florida shooting -Farmers Insurance Open 2018 -CNN -Florida shooting -Virginia Woolf -Mark Salling -Government shutdown -Kylie Jenner -Andrew Cunanan -Julie Bowen -school closings -Hope Hicks -Fifty Shades Freed -Oscar Nominations 2018 -IXL -Winter Olympics -Larry Nassar -Kylie Jenner -Rasual Butler -School closings -Super Bowl 2018 -Government shutdown 2018 -Government Shutdown -Alessia Cara -Carter G. Woodson -Rob Gronkowski -Super Bowl 2018 -Wilder Penfield -Patriots -Lorenzo Cain -Warren Miller -Government Shutdown -State of the Union -Winter Olympics -Happy Valentines Day -Friends The Movie 2018 -Paula Modersohn-Becker -Tom Petty -Dennis Edwards -Tessa Virtue -Government Shutdown -Elizabeth Blackwell -Super Bowl score -12 Strong -Wilder Penfield -Government Shutdown Meaning -What Time Is The Super Bowl -This is Us -Women's March 2018 -Toys R Us -calculator -Super Bowl 2018 -Virginia Woolf -Carter G. Woodson -earthquake -Sergei Eisenstein -Elizabeth Blackwell -Shaun White -New England Patriots owner -Paula Modersohn-Becker -Steven Tyler -Government Shutdown Meaning -Joel Taylor -Wilder Penfield -Quincy Jones -Government Shutdown -Patriots -government shutdown -Tom Brady -Super Bowl 2018 -Jane Fonda -Larry Nassar -Sergei Eisenstein -Super Bowl score -UFC 220 -Megan Barry -Carter G. Woodson -Black Panther -Mardi Gras 2018 -Patriots -Paula Modersohn-Becker -Super Bowl 2018 -Andrew McCabe -UFC 220 -Frank Reich -SpaceX -Justin Timberlake -Justin Timberlake -Friends movie -Justin Timberlake -Carter G. Woodson -Elizabeth Blackwell -Tiger Woods -Larry Nassar -Elizabeth Blackwell -Lonzo Ball -XFL -Patriots -Patriots -Friends The Movie 2018 -Super Bowl 2018 -Elizabeth Blackwell -Super Bowl 2018 -Luke Wilson -Jennifer Aniston -Super Bowl score -Google docs -Google Classroom -Paula Modersohn-Becker -Virginia Woolf -Justin Timberlake -Alex Smith -Robert Wagner -Wilder Penfield -pissant -Wilder Penfield -Larry Nassar -Katie Couric -Super Bowl 2018 -Eric Wood -Eli Manning -Danielle Herrington -Government Shutdown Meaning -Super Bowl 2018 -Super blue blood Moon -Cloverfield Paradox -Kylie Jenner -Larry Nassar -Sergei Eisenstein -Sergei Eisenstein -Carter G. Woodson -Bitcoin Price -Grammys 2018 -Sergei Eisenstein -Dow Jones -Kylie Jenner -Senior Bowl -Mark Salling -Tyler Hilinski -Omarosa -Yu Darvish -Dwyane Wade -Sergei Eisenstein -Patriots -Halsey -Kentucky shooting -Florida shooting -Paula Modersohn-Becker -Virginia Woolf -Larry Nassar -Sergei Eisenstein -Brie Larson -Walter Payton -Celtics -Virginia Woolf -NSA -Pro Bowl 2018 -Super blue blood Moon -calculator -Grammys 2018 -Westerville Ohio -Mavic Air -Winter Olympics -Paula Modersohn-Becker -Oscar Nominations 2018 -Justin Timberlake -Black Panther -Larry Nassar -Wilder Penfield -Winter Olympics -calculator -Alex Smith -Kylie Jenner -Patriots -Obama portrait -Elizabeth Blackwell -Carter G. Woodson -Super Bowl 2018 -Wilder Penfield -Houston Rockets -school closings -Fredo Santana -Kawhi Leonard -Josh McDaniels -Winter Olympics -New England Patriots owner -Solo Trailer -Elizabeth Blackwell -Steve Mcnair -Blue Ivy -Larry Nassar -Carter G. Woodson -Josh McDaniels -Patriots -Super Bowl 2018 -Patriots -Paul Ryan -Carter G. Woodson -Lady Doritos -Phantom Thread -Paula Modersohn-Becker -Outback Steakhouse -Robert Wagner -Wilder Penfield -Lil Pump -Sergei Eisenstein -Sandy Hook -Amy Schumer -Vikings vs Eagles -Alessia Cara -Paula Modersohn-Becker -Carter G. Woodson -Paula Modersohn-Becker -Elizabeth Blackwell -Grammys 2018 -Cavs -Super Bowl 2018 -Emily Sweeney -Government Shutdown -Black Panther -Elizabeth Blackwell -Wilder Penfield -Super Bowl 2018 -Lee Miglin -Amy Schumer -Carter G. Woodson -Paula Modersohn-Becker -Google Classroom -Virginia Woolf -Grammys 2018 -Wilder Penfield -UFC 220 -Virginia Woolf -Larry Nassar -Mardi Gras 2018 -Sergei Eisenstein -Chinese New Year 2018 -Government shutdown -Wilder Penfield -Super Bowl 2018 -Venom -SpaceX -XFL -Virginia Woolf -Justin Timberlake -Conor McGregor -Google Classroom -Florida shooting -Paula Modersohn-Becker -Frederick Douglass -Happy Valentines Day -Florida shooting -Super Bowl 2018 -Wilder Penfield -Oscar Nominations 2018 -Wilder Penfield -Paula Modersohn-Becker -Patriots -Bitcoin Price -Johnny Manziel -Alaska earthquake -Patriots -UFC 220 -What Time Is The Super Bowl -Florida shooting -Super Bowl 2018 -Patriots -Mardi Gras 2018 -Florida shooting -Sergei Eisenstein -Virginia Woolf -Paula Modersohn-Becker -Mark Salling -Elizabeth Blackwell -Google Classroom -Kylie Jenner Baby Girl -Super Bowl 2018 -Despacito -Tyler Hilinski -Ar 15 -Jacob Copeland -Oscar Nominations 2018 -Omarosa -Olympic medal count -Elizabeth Blackwell -Paula Modersohn-Becker -Patriots -Obama portrait -Elizabeth Blackwell -Grammys 2018 -Government Shutdown Meaning -Sarah Barthel -CNN -Carter G. Woodson -Julie Ertz -Russell Wilson -Elizabeth Blackwell -Bitcoin Price -Real Madrid -Grammys 2018 -Patriots -What Time Is The Super Bowl -John Mahoney -Wilder Penfield -Wilder Penfield -Elizabeth Blackwell -Patriots -Sergei Eisenstein -Grammys 2018 -SpaceX -Joe Kennedy -Elizabeth Blackwell -Virginia Woolf -Kentucky shooting -Wilder Penfield -Super Blue Blood Moon -Winter Olympics -Grammys 2018 -Bruno Mars -Cherry Seaborn -Carter G. Woodson -Mike Vrabel -Wilder Penfield -Jennifer Aniston -Virginia Woolf -Sergei Eisenstein -Shaun White -Virginia Woolf -Grammys 2018 -Pro Bowl 2018 -Patriots -Paula Modersohn-Becker -Grammys 2018 -Jason Kelce -National Pizza Day -Trump State of the Union -Justin Timberlake -Tessa Virtue -Winter Olympics -Sergei Eisenstein -Elizabeth Blackwell -Westminster Dog Show 2018 -Winter Olympics -Rob Gronkowski -Mardi Gras 2018 -Shaun White -stock market -Trump State of the Union -Winter Olympics -Vikings Vs Eagles -Joe Kennedy -Groundhog Day 2018 -Cloverfield Paradox -Josh McDaniels -Daryle Singletary -Groundhog Day 2018 -Brie Larson -Florida shooting -Super Bowl 2018 -Carter G. Woodson -Wilder Penfield -Earthquake -Morgan Freeman -Kris Dunn -Larry Nassar -Groundhog Day 2018 -Paula Modersohn-Becker -Kesha -Zion Williamson -Kesha -Vikings vs Eagles -What Time Is The Super Bowl -Bernie Sanders -The 15:17 to Paris -Royal Rumble 2018 -Super Bowl 2018 -What Time Is The Super Bowl -Vikings Vs Eagles -Valentines Day Memes -Vikings Vs Eagles -Elton John -Den of Thieves -Omarosa -Rasual Butler -New California -Mark Salling -Sal Castro Middle School -Uma Thurman -Mark Salling -Paula Modersohn-Becker -Natalie Wood -Government Shutdown 2018 -Sergei Eisenstein -Black Panther -Paula Modersohn-Becker -Solo Trailer -Michigan State -Virginia Woolf -Super Bowl 2018 -Wilder Penfield -Terrell Owens -UFC 220 -Altered Carbon -Shaun White -Adam Rippon -Dow Jones -Super Bowl score -Sergei Eisenstein -Virginia Woolf -SpaceX -Government shutdown 2018 -When We First Met -Winter Olympics -Patriots -Super Bowl score -Carrie Underwood -Elizabeth Blackwell -Vikings vs Eagles -State of the Union -Patriots -Patriots -Jamie Anderson -Tony Romo -Virginia Woolf -Omarosa -Super Bowl 2018 -DeMarcus Cousins -Black Panther -Cloverfield Paradox -Super Bowl Commercials -Government shutdown -Winter Olympics -Elizabeth Blackwell -Chloe Kim -Grammys 2018 -What Time Is The Super Bowl -Mark Salling -Elizabeth Blackwell -12 Strong -Carter G. Woodson -Virginia Woolf -Winter Olympics -Super Bowl 2018 -Grammys 2018 -Government Shutdown -Grammys 2018 -Earthquake -Trump State of the Union -Mark Salling -Bob Dole -Florida shooting -SpaceX -Super Bowl score -Jamie Anderson -Government Shutdown Meaning -Wilder Penfield -SpaceX -NBA Trades -Don Lemon -school closings -Melania Trump -Black Panther -Google Classroom -Zion Williamson -SAG Awards 2018 -Walter Payton -Altered Carbon -Carter G. Woodson -Wilder Penfield -Groundhog Day 2018 -Sergei Eisenstein -Super Bowl score -Super Bowl score -Larry Nassar -Winter Olympics -Patriots -Robert Wagner -Cavs -Farmers Insurance Open 2018 -Patriots -Winter Olympics -Super Bowl 2018 -Super blue blood Moon -Zion Williamson -Women's March 2018 -Snapchat Update -Steve Mcnair -Government Shutdown -Paula Modersohn-Becker -Vikings Vs Eagles -Florida shooting -Blake Griffin -This Is Us -Andrew Cunanan -Mueller -Google Classroom -Government Shutdown Meaning -Government shutdown -Edible Arrangements -SpaceX -Paula Modersohn-Becker -Black Panther -SpaceX -Bitcoin Price -John Mahoney -Terry Bradshaw -Vikings Vs Eagles -Florida shooting -Super Bowl 2018 -Kesha -Patriots -Super Bowl score -Carter G. Woodson -Dwyane Wade -New England Patriots owner -Despacito -calculator -Cloverfield Paradox -Costco Wholesale -Florida shooting -Justin Timberlake -Super Bowl 2018 -Kristaps Porzingis -Wilder Penfield -Super Bowl 2018 -Super Bowl score -Steve Wynn -Puppy Bowl 2018 -Sergei Eisenstein -Sergei Eisenstein -Super Bowl score -Sergei Eisenstein -Jessica Chastain -Happy Valentines Day -Homeland -Carter G. Woodson -Valentines Day -Mark Salling -Elizabeth Blackwell -Kylie Jenner -Super Bowl Commercials -Virginia Woolf -Larry Nassar -Carrie Underwood -Vikings vs Eagles -Paula Modersohn-Becker -State of the Union -Virginia Woolf -Elizabeth Blackwell -Wilder Penfield -Super Bowl score -UFC 221 -Cavs -Tom Izzo -Korea -Harry Styles -Florida shooting -Carter G. Woodson -Doomsday Clock -Elizabeth Blackwell -Sergei Eisenstein -Groundhog Day 2018 -Paula Modersohn-Becker -Grammys 2018 -Elizabeth Blackwell -Vikings Vs Eagles -SpaceX -Bruno Mars -Sergei Eisenstein -Florida shooting -Virginia Woolf -Dwyane Wade -Super Bowl score -Patriots -Blake Griffin Trade -Super Bowl Commercials 2018 -Kylie Jenner -Wilder Penfield -Blood Moon -Super Bowl 2018 -Olivia Culpo -Sergei Eisenstein -Elizabeth Blackwell -Wilder Penfield -Wilder Penfield -Fredo Santana -Patriots -Grammys 2018 -Chloe Kim -Jennifer Aniston -Shaun White -What Time Is The Super Bowl -Olympic Medal Count -Kylie Jenner -Mark Salling -Sergei Eisenstein -Fifty Shades Freed -Florida shooting -Happy Valentines Day -Sal Castro Middle School -Super Bowl score -XFL -Carrie Underwood -United States Of America Winter Olympics -Elizabeth Blackwell -Sergei Eisenstein -Ohio State basketball -Andrew McCabe -Sergei Eisenstein -Rachel Brand -Super Bowl 2018 -Paula Modersohn-Becker -What Time Is The Super Bowl -Patriots -Carter G. Woodson -NBA Trades -Carter G. Woodson -Olive Garden -Super blue blood Moon -Super Bowl 2018 -Celtics -Kentucky shooting -Wilder Penfield -Wilder Penfield -Wilder Penfield -Olympic medal count -Government Shutdown -Classroom -Super Bowl 2018 -Patriots -What Time Is The Super Bowl -Florida shooting -Kylie Jenner -Vikings Vs Eagles -Nancy Pelosi -Wilder Penfield -Virginia Woolf -Valentines Day -Outback Steakhouse -Justin Timberlake -Nintendo Labo -Paula Modersohn-Becker -Virginia Woolf -Grammys 2018 -The Home Depot -Happy Valentines Day -Chicago Weather -Chicago West -Altered Carbon -Friends movie -Tyler Hilinski -Wilder Penfield -Shaun White -Wilder Penfield -Elizabeth Blackwell -Edwin Jackson -Carter G. Woodson -Black Panther -fake news awards -SpaceX -Florida shooting -Government Shutdown Meaning -Government Shutdown -Cherry Seaborn -Alex Smith -Elizabeth Blackwell -Mark Salling -NBA Trades -Florida shooting -Blake Griffin -Carter G. Woodson -Super Bowl score -Vikings Vs Eagles -Wilder Penfield -Super Bowl 2018 -Elizabeth Blackwell -Michelle Obama -Super Bowl score -Adam Rippon -Carter G. Woodson -United States Of America Winter Olympics -Patti LuPone -Super Bowl 2018 -Roger Federer -Google Classroom -Yura Min -Virginia Woolf -Memo -Paula Modersohn-Becker -Grammys 2018 -Virginia Woolf -Elizabeth Blackwell -Justin Timberlake -Elizabeth Blackwell -Jamie Anderson -What Time Is The Super Bowl -Oscar Nominations 2018 -Kim Kardashian -Fredo Santana -Elizabeth Blackwell -Sammy Sosa -Government Shutdown -Sergei Eisenstein -Sergei Eisenstein -Oscar Nominations 2018 -Mardi Gras 2018 -Chinese New Year 2018 -Cavs -Friends The Movie 2018 -Ash Wednesday -Elizabeth Blackwell -Peter Rabbit -Tyler Hilinski -Tom Brady -Paula Modersohn-Becker -Black Panther -Super Bowl score -Amtrak -Super Bowl 2018 -What Time Is The Super Bowl -Black Panther -Paula Modersohn-Becker -Nba All Star 2018 -What Time Is The Super Bowl -Super Bowl score -NBA Trades -Wilder Penfield -SpaceX -Patriots -Mardi Gras 2018 -Florida shooting -Virginia Woolf -Florida shooting -Paula Modersohn-Becker -What Time Is The Super Bowl -Bitcoin Price -Johnny Manziel -Florida shooting -Jessica Chastain -The Alienist -Fifty Shades Freed -Sergei Eisenstein -Scott Baio -Justin Timberlake -Rodney Hood -Fifty Shades Freed -Super blue blood Moon -Tom Petty -Meteor -Grammys 2018 -Super Bowl score -Sergei Eisenstein -Winter Olympics -Super Blue Blood Moon -Alaska earthquake -Super blue blood Moon -The First Purge -Jennifer Aniston -Sergei Eisenstein -Florida shooting -Justin Timberlake -Virginia Woolf -school closings -Oar Olympics -Mark Salling -Kylie Jenner -Lunar eclipse -Tonga -Waco -Wilder Penfield -Andre Roberson -Super Bowl score -Patriots -Carter G. Woodson -Larry Nassar -Florida shooting -Happy Valentines Day -Paula Modersohn-Becker -Florida shooting -Super blue blood Moon -Virginia Woolf -Kentucky shooting -Carter G. Woodson -Kylie Jenner -Patti LuPone -Fredo Santana -Tyler Hilinski -Wilder Penfield -Edwin Jackson -Rob Porter -Virginia Woolf -School Closings -SpaceX -State of the Union -Paula Modersohn-Becker -NBA Trades -Amazon Stock -Cavs -NBA Trades -Florida shooting -National Pizza Day -Chinese New Year 2018 -Elizabeth Blackwell -Winter Olympics -Puppy Bowl 2018 -Jason Kidd -Patriots -Nascar Schedule -Carter G. Woodson -Forever My Girl -Grammys 2018 -Aaron Hernandez -Lakers -What Time Is The Super Bowl -Super Bowl score -What Time Is The Super Bowl -What Time Is The Super Bowl -John Mahoney -Elizabeth Blackwell -Sea Of Thieves -What Time Is The Super Bowl -Edible Arrangements -Winter Olympics -Sergei Eisenstein -SpaceX -Oscar Nominations 2018 -Carter G. Woodson -Sergei Eisenstein -Virginia Woolf -Joe Kennedy -Otto Warmbier -Larry Nassar -Florida shooting -Patriots -Mikaela Shiffrin -Monster Hunter World -Carter G. Woodson -Patriots -The Alienist -Berkshire Hathaway -Kylie Jenner -Peter Rabbit -Hope Hicks -Stan Lee -Carter G. Woodson -What Time Is The Super Bowl -Cryptocurrency News -CNN -Winter Olympics -SpaceX -Virginia Woolf -Larry Nassar -Lunar eclipse -NFC Championship Game 2018 -Virginia Woolf -Florida shooting -Den of Thieves -Columbine -Mikaela Shiffrin -Sergei Eisenstein -Erykah Badu -Paula Modersohn-Becker -Super Bowl score -Super Bowl Commercials 2018 -Waco -Shaun White -Alaska earthquake -Morgan Freeman -Andrew Cunanan -Sabrina Dhowre -Logan Paul -Groundhog Day 2018 -Shiffrin -Paragon -Winter Olympics -Elizabeth Blackwell -Patriots -Happy Valentines Day -Jessica Chastain -Danielle Herrington -Mike Tomlin -Super Bowl score -Patriots -Dow Jones -Elizabeth Blackwell -Elizabeth Blackwell -weather tomorrow -Groundhog Day 2018 -Virginia Woolf -Kim Kardashian -Paula Modersohn-Becker -Jalen Ramsey -Dow Jones -Mark Salling -Winter Olympics -Paula Modersohn-Becker -Vanessa Trump -Super Bowl Commercials 2018 -Government Shutdown -Sergei Eisenstein -Westerville Ohio -Michelle Obama -Super Bowl 2018 -Josh Allen -Stock Market Crash Today -Virginia Woolf -Cavs -Justin Timberlake -Alessia Cara -Solo Trailer -This Is Us -Natalie Wood -Florida shooting -Super Bowl score -Grammys 2018 -Super Bowl score -Elizabeth Blackwell -Maze Runner: The Death Cure -Dow Jones -The 15:17 to Paris -New England Patriots owner -SpaceX -Aaron Fies -Elizabeth Blackwell -Super blue blood Moon -Alessia Cara -Dow Jones industrial average -Virginia Woolf -Childish Gambino -XFL -Grammys 2018 -Florida shooting -Paula Modersohn-Becker -SZA -Kesha Grammy -Sergei Eisenstein -Florida shooting -Florida shooting -Toys R Us -Government Shutdown Meaning -Justin Timberlake -Shaun White -Quincy Jones -Terry Bradshaw -Government shutdown 2018 -Chief Wahoo -Solo Trailer -Vikings Vs Eagles -Mexico earthquake -What Time Is The Super Bowl -Jo Jo White -Kylie Jenner -Julie Ertz -Virginia Woolf -Super Bowl 2018 -SAG Awards 2018 -Shaun White -Katie Couric -Patriots -Rose McGowan -Elizabeth Blackwell -Grammys 2018 -Government Shutdown Meaning -Kentucky shooting -Kylie Jenner -Wilder Penfield -Patriots -Wilder Penfield -The 15:17 to Paris -Kylie Jenner -New England Patriots owner -Obama portrait -Elton John -National Pizza Day -Florida shooting -Sergei Eisenstein -Black Panther -Dow Jones -Fredo Santana -Super Bowl 2018 -Patriots -Super Bowl 2018 -Edwin Jackson -Lakers -Justin Timberlake -Carter G. Woodson -Patti LuPone -Patriots -Paula Modersohn-Becker -Super Bowl 2018 -Riverdale -Super Bowl score -Sergei Eisenstein -National Pizza Day -Jennifer Aniston -Obama portrait -Carter G. Woodson -Cloverfield Paradox -XIV -SpaceX -Super Bowl score -Elizabeth Blackwell -Justin Timberlake -Virginia Woolf -Jennifer Aniston -This Is Us -Gianni Versace -Virginia Woolf -Cbs -Carter G. Woodson -Shaun White -Florida shooting -Grammys 2018 -Rasual Butler -Virginia Woolf -Tessa Virtue -Mikaela Shiffrin -Tammy Duckworth -Kim Kardashian -Paula Modersohn-Becker -Sergei Eisenstein -IXL -Virginia Woolf -Super blue blood Moon -Dow Jones industrial average -Patriots -Kim Kardashian -Chinese New Year 2018 -Solo Trailer -Paul Ryan -Jimmy Garoppolo -Super Bowl score -Westerville Ohio -SpaceX -Sergei Eisenstein -Sergei Eisenstein -Larry Nassar -Obama portrait -Patriots -Wilder Penfield -Sergei Eisenstein -Carter G. Woodson -Shaun White -Cavs -Kylie Jenner -Maze Runner: The Death Cure -Tyler Hilinski -Kesha Grammy -Kylie Jenner Baby Girl -Mcdonald's -Carter G. Woodson -Elizabeth Blackwell -Paula Modersohn-Becker -Virginia Woolf -Virginia Woolf -Kentucky shooting -What Time Is The Super Bowl -Google Drive -Super Bowl score -Kylie Jenner -Super Bowl 2018 -New England Patriots owner -Terrell Owens -Luke Wilson -Happy Valentines Day -Wilder Penfield -Grammys 2018 -Wilder Penfield -Patriots -Jason Kelce -Carter G. Woodson -Virginia Woolf -Wilder Penfield -Justin Timberlake -Government Shutdown -Wilder Penfield -Justin Timberlake -What Time Is The Super Bowl -Carter G. Woodson -Isaiah Thomas -Google docs -Brie Larson -Scott Baio -Terrell Owens -Sergei Eisenstein -DeMarcus Cousins -Elizabeth Blackwell -Vince McMahon -Kylie Jenner -Super Bowl 2018 -Wilder Penfield -Wilder Penfield -Grammys 2018 -Government shutdown -Carter G. Woodson -Jason Kelce -Memo -Elizabeth Blackwell -Olympic medal count -Government Shutdown Meaning -SpaceX -Super Bowl score -Super Bowl score -Winter Olympics -SpaceX -Tom Petty -Government Shutdown -Paula Modersohn-Becker -Super Bowl 2018 -Patriots -Wilder Penfield -Real Madrid -Florida shooting -Alaska earthquake -Kentucky shooting -What Time Is The Super Bowl -Carter G. Woodson -Wilder Penfield -Super Bowl 2018 -Patriots -Kesha -Sergei Eisenstein -Julie Ertz -Super Bowl 2018 -Wilder Penfield -Paula Modersohn-Becker -Elizabeth Blackwell -Carter G. Woodson -Super Bowl score -Paula Modersohn-Becker -United States Of America Winter Olympics -Kylie Jenner -Carter G. Woodson -NBA Trades -Carter G. Woodson -Paula Modersohn-Becker -NBA Trades -Korea -Alessia Cara -Justin Timberlake -Alaska earthquake -Government Shutdown -Justin Timberlake -Olivia Culpo -Grammys 2018 -Larry Nassar -Sergei Eisenstein -Super Bowl score -Elizabeth Blackwell -Grammys 2018 -Super Bowl 2018 -Patriots -Kylie Jenner -Super Bowl score -Tom Petty -Meteor -Winter Olympics -calculator -Carter G. Woodson -Sergei Eisenstein -Kesha Grammy -Kylie Jenner -Release The Memo -Cnbc -Government Shutdown Meaning -State of the Union -Emily Sweeney -Patriots -Valentines Day -Florida shooting -Royal Rumble 2018 -Black Panther -Senior Bowl -Dwyane Wade -State of the Union -Derrick Rose -BitConnect -Meteor -stock market -Carter G. Woodson -Government Shutdown -Vikings Vs Eagles -Sergei Eisenstein -Shaun White -Cavs -Gigi Hadid -Black Panther -Wilder Penfield -Paula Modersohn-Becker -Gregory Salcido -Google Classroom -Grammys 2018 -Den of Thieves -Winter Olympics -Patriots -Blake Griffin -Winter Olympics -Patriots -Carter G. Woodson -Kylie Jenner -Grammys 2018 -Kylie Jenner -Black Panther -School Closings -Homeland -Florida shooting -Super Bowl score -New California -SpaceX -Mikaela Shiffrin -Winter Olympics -Duke Basketball -Childish Gambino -Steven Tyler -Super Bowl 2018 -Yura Min -Sergei Eisenstein -Isaiah Thomas -Virginia Woolf -Call Me by Your Name -Alaska earthquake -H&r Block -Jacob Copeland -Florida shooting -Sandy Hook -NFL Honors -Kylie Jenner -Justin Timberlake -Kylie Jenner -Cloverfield Paradox -What Time Is The Super Bowl -Sergei Eisenstein -Scott Baio -Elizabeth Blackwell -Reg E Cathey -Tonga -Marlon Brando -Cavs -CNN -Grammys 2018 -Vikings Vs Eagles -Carter G. Woodson -Elizabeth Blackwell -Mcdonald's -Vikings vs Eagles -Rob Porter -Obama portrait -Paula Modersohn-Becker -Virginia Woolf -Government Shutdown Meaning -shutdown -Carter G. Woodson -Mardi Gras 2018 -Carrie Underwood -Winter Olympics -Grammys 2018 -Patriots -Katie Couric -Valentines Day Cards -Kylie Jenner -Dow Jones -Virginia Woolf -Wilder Penfield -Rose McGowan -Chipper Jones -Puppy Bowl 2018 -Paula Modersohn-Becker -Paula Modersohn-Becker -School Closings -Super Bowl score -Ash Wednesday -SZA -Carter G. Woodson -Alex Smith -Dwyane Wade -Super Bowl score -Chinese New Year 2018 -Florida shooting -Carter G. Woodson -Kelsey Grammer -Paula Modersohn-Becker -Wilder Penfield -Paula Modersohn-Becker -Jennifer Aniston -Super Bowl score -SpaceX -Virginia Woolf -NBA Trades -Government shutdown 2018 -This Is Us -Childish Gambino -Sergei Eisenstein -Government shutdown 2018 -Carter G. Woodson -Adam Schiff -Winter Olympics -Black Panther -State of the Union -Bitcoin Price -Patriots -Lunar eclipse -Chinese New Year 2018 -Elton John -Kylie Jenner Baby Girl -Release The Memo -Government Shutdown -State of the Union -Shibutani -Mardi Gras 2018 -Paula Modersohn-Becker -Manchester United -Oar Olympics -Ash Wednesday -Patriots -Rolling Loud -Sergei Eisenstein -Justin Timberlake -Ash Wednesday -Pro Bowl 2018 -Adam Rippon -Cedi Osman -Super Bowl score -Shiffrin -Carter G. Woodson -Edwin Jackson -What Time Is The Super Bowl -SpaceX -Fredo Santana -Vanessa Trump -Sergei Eisenstein -Elon Musk -Lakers -State of the Union -Grammys 2018 -Virginia Woolf -Google Classroom -Paula Modersohn-Becker -Lauren Davis -Turpin -Winter Olympics -Florida shooting -Elizabeth Blackwell -Fredo Santana -Classroom -Government Shutdown -Bitcoin Price -Adam Rippon -Presidents Day 2018 -Turpin -CNN -Post Malone -Government Shutdown Meaning -Super Bowl score -Sergei Eisenstein -Patriots -Morgan Freeman -Government Shutdown -Patriots -Lakers -Kylie Jenner -Elizabeth Blackwell -Farmers Insurance Open 2018 -Winter Olympics -Andrew McCabe -Rodney Hood -Elton John -Real Madrid -Mark Salling -Larry Nassar -Paula Modersohn-Becker -Super blue blood Moon -Olive Garden -Super Bowl 2018 -Jimmy Garoppolo -Olympic medal count -Paula Modersohn-Becker -Classroom -State of the Union -Larry Nassar -National Pizza Day -What Time Is The Super Bowl -Puppy Bowl 2018 -SpaceX -Larry Nassar -Sergei Eisenstein -Omarosa -Super Bowl 2018 -Carter G. Woodson -Alex Smith -Sergei Eisenstein -Paula Modersohn-Becker -Patriots -Super Bowl 2018 -Carter G. Woodson -Daryle Singletary -Super Bowl 2018 -Florida shooting -Tom Petty -Justin Timberlake -Zion Williamson -FA Cup -Kentucky shooting -Josh McDaniels -Riverdale -Super Bowl 2018 -Vanessa Trump -Mardi Gras 2018 -Super Bowl score -State of the Union -SpaceX -Super Bowl 2018 -Paula Modersohn-Becker -Nba All Star Draft -XIV -Vikings Vs Eagles -Emily Sweeney -Quincy Jones -Justin Timberlake -Grammys 2018 -Joshua Cooper Ramo -Elizabeth Blackwell -Solo Trailer -Lauren Davis -Mexico Vs Bosnia -Super Bowl score -Super blue blood Moon -Winter Olympics -Wilder Penfield -Jennifer Aniston -Super Bowl score -Simona Halep -Super Bowl 2018 -Johnny Weir -Vikings Vs Eagles -Sergei Eisenstein -Patriots -Kentucky shooting -Paula Modersohn-Becker -Elizabeth Blackwell -Winter Olympics -Andrew Cunanan -Andrew Cunanan -Wilder Penfield -SAG Awards 2018 -The 15:17 to Paris -Elizabeth Blackwell -Super Bowl 2018 -Winter Olympics -Super Bowl score -AFC Championship Game 2018 -Winter Olympics -SpaceX -Memo -shutdown -Megan Barry -earthquake today -Virginia Woolf -Elizabeth Blackwell -NASCAR -Winter Olympics -State of the Union -SpaceX -calculator -Deadpool 2 -Wilder Penfield -Halsey -Winter Olympics -Elizabeth Blackwell -Neil Diamond -Grammys 2018 -Elizabeth Blackwell -Justin Timberlake -Lunar eclipse -Elizabeth Blackwell -Google Classroom -Mark Salling -Rasual Butler -Did the Groundhog See His Shadow -Virginia Woolf -Winter Olympics -SpaceX -Isaiah Thomas -Government Shutdown -Elizabeth Blackwell -Kylie Jenner -Grammys 2018 -National Pizza Day -Bitcoin Price -Oscar Nominations 2018 -Google docs -Super blue blood Moon -Winter Olympics -Mark Salling -Super Bowl 2018 halftime show -The Alienist -Grammys 2018 -Winter Olympics -Kesha Grammy -Black Panther -Carter G. Woodson -Grammys 2018 -Patriots -Super blue blood Moon -Dow Jones -SpaceX -Government shutdown -Winter Olympics -NFC Championship Game 2018 -Carter G. Woodson -Lil Pump -Winter Olympics -Super Bowl score -NBA Trades -Super Bowl 2018 -Sergei Eisenstein -Bitcoin Price -Virginia Woolf -When We First Met -Tom Brady -What Time Is The Super Bowl -Super Bowl 2018 -Montgomery County Public Schools -Adam Rippon -Vikings Vs Eagles -Super Bowl 2018 -Jessica Chastain -Marlon Brando -Patriots -Florida shooting -Senior Bowl -SpaceX -Carter G. Woodson -SpaceX -Government Shutdown -LeBron James -Elizabeth Blackwell -Carter G. Woodson -Wilder Penfield -fake news awards -New England Patriots owner -Tyler Hilinski -Emily Sweeney -Luke Wilson -Sergei Eisenstein -Elizabeth Blackwell -Winter Olympics -Valentine's Day -Lee Miglin -Winter Olympics -Super Bowl 2018 -Kylie Jenner -SpaceX -Super Bowl score -Oscar Nominations 2018 -Adam Rippon -Oscar Nominations 2018 -Sergei Eisenstein -Valentines Day -Sergei Eisenstein -Government Shutdown -Florida shooting -Presidents Day 2018 -Government Shutdown 2018 -Royal Rumble 2018 -Harry Styles -Duke Basketball -Super Bowl 2018 -Super Bowl 2018 -Elizabeth Blackwell -Virginia Woolf -Chris Paul -Government shutdown -Carter G. Woodson -Emily Sweeney -Wilder Penfield -Daryle Singletary -Kesha -Carter G. Woodson -The Resident -New England Patriots owner -Steve Wynn -SpaceX -stock market -Justin Timberlake -Elizabeth Blackwell -Trump State of the Union -Super Bowl 2018 -Florida shooting -Patriots -Government Shutdown -Robinhood -Carter G. Woodson -Wilder Penfield -Sergei Eisenstein -calculator -Gigi Hadid -Florida shooting -Florida shooting -Patriots -Florida shooting -Carter G. Woodson -Super Bowl 2018 -SpaceX -Super blue blood Moon -Super Bowl score -State of the Union -Winter Olympics -Real Madrid -Kylie Jenner -Vikings Vs Eagles -Aliona Savchenko -SpaceX -Larry Nassar -Carter G. Woodson -school closings -Michigan State -Hostiles -Royal Rumble 2018 -Larry Nassar -Dua Lipa -Valentines Day -Wilder Penfield -Paula Modersohn-Becker -Quincy Jones -NBA Trades -Florida shooting -Super Bowl score -Sabrina Dhowre -New England Patriots owner -Daryle Singletary -Super Bowl 2018 -Virginia Woolf -Cavs -Winter Olympics -Classroom -Government Shutdown 2018 -Tiger Woods -Patriots -Justin Timberlake -Government Shutdown -Super Bowl 2018 -Super Bowl score -Olympic Medal Count -Red Gerard -Elizabeth Blackwell -Groundhog Day 2018 -Florida shooting -Tyler Hilinski -Florida shooting -CNN -Carter G. Woodson -slides -Trump State of the Union -Florida shooting -Carter G. Woodson -Vikings Vs Eagles -Government Shutdown 2018 -Atlanta Weather -Winter Olympics -Patriots -Winter Olympics -Shaun White -What Time Is The Super Bowl -Super Bowl 2018 -Elizabeth Blackwell -Elizabeth Blackwell -DeMarcus Cousins -Patriots -Grammys 2018 -Virginia Woolf -Kylie Jenner -calculator -Virginia Woolf -Super Bowl score -Olympic medal count -XFL -BitConnect -Dow Jones -Olympic Medal Count -Virginia Woolf -Joe Kennedy -Pro Bowl 2018 -Winter Olympics -Carter G. Woodson -Virginia Woolf -Sergei Eisenstein -Black Panther -Carter G. Woodson -Ellen Pompeo -XFL -Florida shooting -Winter Olympics -weather tomorrow -Black Panther -Juventus -Pink -Super Bowl 2018 -Cryptocurrency News -Tammy Duckworth -Paula Modersohn-Becker -Elizabeth Blackwell -Government Shutdown -Peter Rabbit -Google Classroom -Wilder Penfield -Sean Hannity -school closings -Virginia Woolf -Kylie Jenner -Carter G. Woodson -Amy Schumer -Super blue blood Moon -Fifty Shades Freed -Paula Modersohn-Becker -Sergei Eisenstein -Grammys 2018 -Larry Nassar -Valentines Day Memes -Patti LuPone -Rasual Butler -Super Bowl score -earthquake -Florida shooting -Paula Modersohn-Becker -Elizabeth Blackwell -Virginia Woolf -Elizabeth Blackwell -Hope Hicks -Quincy Jones -Elizabeth Blackwell -Alessia Cara -Brie Larson -Lakers -Simona Halep -Elizabeth Blackwell -Paul Ryan -Florida shooting -Carter G. Woodson -Paula Modersohn-Becker -Earthquake -Government Shutdown -Phantom Thread -Super Bowl score -Women's March 2018 -Sergei Eisenstein -Virginia Woolf -Classroom -This Is Us -Elizabeth Blackwell -Grammys 2018 -Virginia Woolf -Sergei Eisenstein -James Maslow -Government Shutdown -Florida shooting -SAG Awards 2018 -Paula Modersohn-Becker -Justin Timberlake -Kylie Jenner -Pro Bowl 2018 -Wilder Penfield -Larry Nassar -Chicago West -Kylie Jenner -Oscar Nominations 2018 -Edwin Jackson -Justin Timberlake -Chris Stapleton -Virginia Woolf -Nintendo Labo -Virginia Woolf -Caroline Wozniacki -Virginia Woolf -Virginia Woolf -Andre Roberson -Patriots -Puppy Bowl 2018 -Government shutdown -School Closings -Kylie Jenner Baby Girl -Super Bowl score -Google Classroom -Winter Olympics -SAG Awards 2018 -Tyler Hilinski -Virginia Woolf -Winter Olympics -NBA Trades -Super Bowl score -Super Bowl 2018 -Sergei Eisenstein -Wilder Penfield -Anna Kournikova -Winter Olympics -Enzo Amore -Ash Wednesday -Sergei Eisenstein -Grammys 2018 -New England Patriots owner -Women's March 2018 -Winchester -Paula Modersohn-Becker -Joe Kennedy -Government Shutdown -Valentines Day -Sergei Eisenstein -Super Bowl score -Joshua Cooper Ramo -KSI Vs Weller -Caroline Wozniacki -Paula Modersohn-Becker -CNN -Florida shooting -Lou Anna Simon -Larry Nassar -Morgan Freeman -Wilder Penfield -Sergei Eisenstein -Super Bowl 2018 -Hostiles Movie -Super Bowl 2018 -Super Bowl score -Carter G. Woodson -Carter G. Woodson -Elizabeth Blackwell -Sergei Eisenstein -Maze Runner: The Death Cure -Carter G. Woodson -Aaron Hernandez -Sergei Eisenstein -Government shutdown 2018 -XFL -Super Bowl Commercials 2018 -Florida shooting -National Pizza Day -Carter G. Woodson -Trump State of the Union -Florida shooting -Alessia Cara -Kylie Jenner -Super Bowl 2018 -Super Bowl 2018 -Super Bowl score -Florida shooting -Super Bowl 2018 -SpaceX -Super Bowl 2018 -stock market -The First Purge -Celebrity Big Brother cast -Vikings Vs Eagles -Florida shooting -Robert Mueller -Florida shooting -Florida shooting -Winter Olympics -Super Bowl score -Patriots -Winter Olympics -What Time Is The Super Bowl -Patriots -Patriots -Joe Kennedy -Robert Wagner -Justin Timberlake -Memo -Jason Kelce -Super Bowl 2018 -Carter G. Woodson -Paula Modersohn-Becker -Alaska earthquake -Dwyane Wade -UFC 220 -Google Drive -Trey Gowdy -Sergei Eisenstein -Winter Olympics -Patriots -Lakers -Elizabeth Blackwell -Jemele Hill -Happy Valentines Day -Virginia Woolf -Google docs -Wilder Penfield -Carter G. Woodson -Super Bowl 2018 -Jason Momoa -Oscar Nominations 2018 -Daytona 500 -Paula Modersohn-Becker -Kesha -Groundhog Day 2018 -Amy Schumer -Super Bowl 2018 -James Harden -Oscar Nominations 2018 -Carter G. Woodson -Quincy Jones -Chinese New Year 2018 -Shaun White -Blake Griffin -Wilder Penfield -Virginia Woolf -Grammys 2018 -Grammys 2018 -Super Bowl 2018 -Jo Jo White -Winter Olympics -Chloe Kim Snowboarder -Super Bowl 2018 -Royal Rumble 2018 -Paula Modersohn-Becker -Obama portrait -BitConnect -Super Bowl 2018 -Melania Trump -Patriots -SAG Awards 2018 -What Time Is The Super Bowl -Florida shooting -Carter G. Woodson -Winter Olympics -Bitcoin Price -Sergei Eisenstein -Steve Mcnair -Super Bowl score -Paula Modersohn-Becker -Government shutdown 2018 -Kim Cattrall -Elon Musk -Valentines Day -Super Bowl Commercials 2018 -Elizabeth Blackwell -Justin Timberlake -Carter G. Woodson -Virginia Woolf -Sergei Eisenstein -Kylie Jenner -Portia de Rossi -Bitcoin Price -Camila Cabello -Super Bowl 2018 -Florida shooting -Elizabeth Blackwell -Elizabeth Blackwell -Government Shutdown -Wilder Penfield -Bellator 192 -Carter G. Woodson -What Time Is The Super Bowl -Meteor -Hope Hicks -Winchester -The Resident -Carter G. Woodson -Jeff Flake -What Time Is The Super Bowl -Larry Nassar -Terrell Owens -NBA Trades -Wilder Penfield -Toys R Us -Vince McMahon -Florida shooting -Government Shutdown -Groundhog Day 2018 -Justin Timberlake -Happy Valentines Day -Did the Groundhog See His Shadow -What Time Is The Super Bowl -Bitcoin Price -Eli Manning -Shaun White -School Closings -Lindsey Vonn -Super Bowl score -Elizabeth Blackwell -Kentucky shooting -What Time Is The Super Bowl -Patriots -Super Bowl score -Black Panther -Daryle Singletary -Maddie Mastro -Carter G. Woodson -Carter G. Woodson -shutdown -Lena Zawaideh -Jessica Chastain -Carter G. Woodson -Florida shooting -State of the Union -Shiffrin -Elizabeth Blackwell -Super Bowl 2018 -Grammys 2018 -Black Panther -Robby Anderson -Patti LuPone -Florida shooting -Carter G. Woodson -Edible Arrangements -Alex Smith -Winter Olympics -United States Of America Winter Olympics -Adam Rippon -Yahoo Finance -Mardi Gras 2018 -Wilder Penfield -Nancy Pelosi -Dwyane Wade -Carter G. Woodson -National Pizza Day -Joe Kennedy -Super Bowl score -Olympic Medal Count -Oscar Nominations 2018 -Arsenal -State of the Union -Carter G. Woodson -curling -Florida shooting -Shaun White -Government Shutdown 2018 -Super Bowl Commercials -Larry Nassar -XFL -NBA Trades -Royal Rumble 2018 -Tyler Hilinski -Adam Hicks -Senior Bowl -Virginia Woolf -Sergei Eisenstein -Sergei Eisenstein -Sergei Eisenstein -Paula Modersohn-Becker -Forever My Girl -Altered Carbon -Paula Modersohn-Becker -Carter G. Woodson -Elizabeth Blackwell -Steve Wynn News -Happy Valentines Day -Patriots -Grey's Anatomy -Ellen Pompeo -Florida shooting -Obama portrait -Rodney Hood -Did the Groundhog See His Shadow -Johnny Weir -Wilder Penfield -What Time Is The Super Bowl -Andre Roberson -Virginia Woolf -NBA Trades -Cory Booker -Sergei Eisenstein -Virginia Woolf -Ash Wednesday -Deadpool 2 -Uma Thurman -Childish Gambino -Josh McDaniels -New England Patriots owner -Amtrak -Patriots -Florida shooting -Blake Griffin -Patriots -Super Bowl 2018 -Despacito -calculator -Elizabeth Blackwell -Elizabeth Blackwell -Paula Modersohn-Becker -Carter G. Woodson -Carter G. Woodson -Government Shutdown 2018 -Government Shutdown -Elizabeth Blackwell -Vikings Vs Eagles -Elizabeth Blackwell -Phantom Thread -SAG Awards 2018 -Solo Trailer -Sergei Eisenstein -Frederick Douglass -Elizabeth Blackwell -Patriots -Heath Ledger -Super blue blood Moon -Mardi Gras 2018 -Joel Taylor -Waco -Virginia Woolf -calculator -Rolling Loud -Chloe Kim -Oscar Nominations 2018 -What Time Is The Super Bowl -Virginia Woolf -slides -Super blue blood Moon -Elizabeth Blackwell -Elizabeth Blackwell -Sergei Eisenstein -Immaculate Conception -Sal Castro Middle School -Puppy Bowl 2018 -Did the Groundhog See His Shadow -Winter Olympics -Wilder Penfield -Vic Damone -Florida shooting -State of the Union -Vikings Vs Eagles -Government Shutdown Meaning -Super Bowl 2018 -Winter Olympics -Uma Thurman -Virginia Woolf -Pro Bowl 2018 -Chicago West -Ash Wednesday -Celtics -Paula Modersohn-Becker -Wilder Penfield -New England Patriots owner -SpaceX -Carter G. Woodson -Justin Timberlake -Florida shooting -Quincy Jones -Super Bowl score -Patriots -Black Panther -Paula Modersohn-Becker -Justin Timberlake -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl Commercials 2018 -Patriots -Sergei Eisenstein -Wilder Penfield -Women's March 2018 -Paula Modersohn-Becker -Google Classroom -Florida shooting -Government shutdown 2018 -Winter Olympics -Rodney Hood -Patriots -Elizabeth Blackwell -Blake Griffin -SpaceX -Isaiah Thomas -Larry Nassar -Patriots -Blake Griffin -Daryle Singletary -Cavs -Pro Bowl 2018 -Mardi Gras 2018 -XIV -NBA Trades -Mueller -Blake Griffin -Super blue blood Moon -Carter G. Woodson -Terrell Owens -Elizabeth Blackwell -Super Bowl 2018 -Norovirus -Vikings vs Eagles -Virginia Woolf -What Time Is The Super Bowl -Government Shutdown 2018 -Vikings Vs Eagles -Sergei Eisenstein -Patriots -Justin Timberlake -Larry Nassar -SpaceX -Presidents Day 2018 -Alex Smith -Groundhog Day 2018 -The 15:17 to Paris -Larry Nassar -Jennifer Aniston -Super Bowl score -Florida shooting -Super Bowl score -Super Bowl score -Kesha Grammy -Florida shooting -Sergei Eisenstein -Nancy Pelosi -Government shutdown 2018 -Wilder Penfield -Florida shooting -Sergei Eisenstein -Fredo Santana -Quincy Jones -Tom Petty -Aaron Feis -Wilder Penfield -Den of Thieves -LeBron James -What Time Is The Super Bowl -Alex Smith -Gianni Versace -Paula Modersohn-Becker -The Home Depot -Super Bowl 2018 -Winter Olympics -Kylie Jenner Baby Girl -Larry Nassar -Brynn Cameron -Patriots -Tiger Woods -Winter Olympics -Edwin Jackson -Grammys 2018 -Super Bowl score -This Is Us -Carter G. Woodson -Patriots -Shaun White -SpaceX -Red Gerard -Virginia Woolf -Carter G. Woodson -Government Shutdown 2018 -Florida shooting -Super Bowl score -Pro Bowl 2018 -Super blue blood Moon -Patriots -school closings -Cavs -Elizabeth Blackwell -Elizabeth Blackwell -Cavs -Vikings Vs Eagles -NSA -Patriots -Justin Timberlake -Carter G. Woodson -Justin Timberlake -Patriots -Terry Bradshaw -Super Bowl score -Valentines Day -Carter G. Woodson -Bitcoin Price -Grammys 2018 -Sergei Eisenstein -Google Classroom -Super Bowl 2018 -Mark Salling -Edwin Jackson -Virginia Woolf -Wilder Penfield -Blue Moon -Super blue blood Moon -Florida shooting -What Time Is The Super Bowl -Super Bowl 2018 -Super Bowl score -Memo -Fifty Shades Freed -Timor Leste -Bitcoin Price -Google Classroom -Happy Valentines Day -This is Us -Fredo Santana -Google docs -Florida shooting -Groundhog Day 2018 -Kylie Jenner -Google Drive -Elizabeth Blackwell -Virginia Woolf -SpaceX -Winter Olympics -Black Lightning -Phantom Thread -Neil Diamond -Patriots -Patriots -Blake Griffin -Lakers -Virginia Woolf -Virginia Woolf -Government shutdown -Lindsey Vonn -Winter Olympics -Super Bowl 2018 -School Closings -Hope Hicks -Vikings vs Eagles -Mark Salling -Virginia Woolf -Tammy Duckworth -Kim Kardashian -Kentucky shooting -Justin Timberlake -Florida shooting -Kylie Jenner -Justin Timberlake -Super Bowl 2018 -John Mahoney -Elizabeth Blackwell -Bill Belichick -Super Bowl score -Justin Timberlake -NFC Championship Game 2018 -Paula Modersohn-Becker -Virginia Woolf -Ronaldinho -Lena Zawaideh -Despacito -Happy Valentines Day -Paul Ryan -Venom -United States Postal Service -Super Bowl 2018 -calculator -Olivia Munn -Government Shutdown -Black Panther -Emily Sweeney -Robert Mueller -Groundhog Day 2018 -Elizabeth Blackwell -Josh McDaniels -Florida shooting -AFC Championship Game 2018 -Patriots -Paula Modersohn-Becker -Super Bowl 2018 -Florida shooting -Valentines Day -Abraham Lincoln -Patti LuPone -Chloe Kim -Virginia Woolf -State of the Union -Virginia Woolf -Alex Smith -Carter G. Woodson -Virginia Woolf -Super Bowl 2018 -Anna Kournikova -Dow Jones -Carter G. Woodson -Sergei Eisenstein -Olympic Medal Count -Grammys 2018 -Larry Nassar -Betty White -Paula Modersohn-Becker -Carter G. Woodson -Super Bowl 2018 -Wilder Penfield -Trump State of the Union -Super Bowl score -Patriots -Kentucky shooting -Carter G. Woodson -Did the Groundhog See His Shadow -NBC Sports -NBA Trades -Virginia Woolf -Virginia Woolf -Jennifer Aniston -Shiffrin -Sergei Eisenstein -Kylie Jenner -Chloe Kim Snowboarder -Wilder Penfield -National Pizza Day -Cavs -Wilder Penfield -Edwin Jackson -Justin Timberlake -Winter Olympics -Government Shutdown -Kylie Jenner -Kylie Jenner -Winter Olympics -Happy Valentines Day -Carter G. Woodson -Paula Modersohn-Becker -Super Bowl score -Chicago Weather -Sergei Eisenstein -Kylie Jenner -Grammys 2018 -Elizabeth Blackwell -Sergei Eisenstein -Alaska earthquake -Patriots -Justin Timberlake -Winter Olympics -Andrew Cunanan -Super Bowl score -Amtrak -Hope Hicks -Kentucky shooting -Sergei Eisenstein -Winchester -Larry Nassar -Esteban Loaiza -State of the Union -Florida shooting -SpaceX -Groundhog Day 2018 -Oscar Nominations 2018 -Virginia Woolf -School closings -Mark Salling -Jason Kelce -Florida shooting -Omarosa -Wilder Penfield -United States Of America Winter Olympics -Winchester -Childish Gambino -Sergei Eisenstein -Carter G. Woodson -Lena Zawaideh -Patriots -Rett Syndrome -Jo Jo White -What Time Is The Super Bowl -Winter Olympics -Andre Roberson -Winter Olympics -Rodney Hood -Super Bowl 2018 -stock market -Yahoo Finance -Sergei Eisenstein -Tiger Woods -Ellen Pompeo -Ash Wednesday -Virginia Woolf -Super Bowl 2018 -Kodak Black -Grammys 2018 -SpaceX -Robert Wagner -Sergei Eisenstein -Joe Kennedy -Elizabeth Blackwell -Elizabeth Blackwell -Lil Pump -Fifty Shades Freed -Carter G. Woodson -Luke Wilson -Joe Kennedy -Groundhog Day 2018 -Carter G. Woodson -The 15:17 to Paris -Valentines Day -Winter Olympics -Andrew McCabe -Virginia Woolf -Elizabeth Blackwell -Mexico -Shaun White -State of the Union -Nadal -government shutdown -IXL -Roger Federer -Kodak Black -Justin Timberlake -What Time Is The Super Bowl -Super Bowl 2018 -Stormi -Sergei Eisenstein -Florida shooting -Happy Valentines Day -What Time Is The Super Bowl -Elizabeth Blackwell -Bitcoin Price -Sergei Eisenstein -Super Bowl score -SAG Awards 2018 -Vikings Vs Eagles -Gregory Salcido -Mark Salling -Elizabeth Blackwell -Kylie Jenner -Chloe Kim -Valentines Day -Super Bowl 2018 halftime show -Kim Kardashian -Shaun White -Nancy Pelosi -Wilder Penfield -Patriots -Chinese New Year 2018 -Florida shooting -Dow Jones -Elizabeth Blackwell -Chloe Kim -Super blue blood Moon -Trump State of the Union -Super blue blood Moon -CNN -Childish Gambino -Grammys 2018 -Elizabeth Blackwell -Peter Rabbit -Dwyane Wade -Government shutdown -Paula Modersohn-Becker -Sergei Eisenstein -Valentines Day -Elizabeth Blackwell -Winter Olympics -Jennifer Aniston -Jane Fonda -Super Bowl score -Jimmy Garoppolo -Mavic Air -Dane Cook -Alaska earthquake -Sergei Eisenstein -All Star Weekend 2018 -Virginia Woolf -Florida shooting -Happy Valentines Day -Super Bowl 2017 -Dwyane Wade -Vanessa Trump -Virginia Woolf -Oscar Nominations 2018 -Shaun White -Manchester United -Solo Trailer -United States Of America Winter Olympics -Virginia Woolf -Homeland -Super Bowl 2018 -SpaceX -Sergei Eisenstein -Paula Modersohn-Becker -Grammys 2018 -Solo Trailer -government shutdown -Kesha Grammy -Sergei Eisenstein -Julie Ertz -Florida shooting -DeMarcus Cousins -Mark E Smith -Larry Nassar -Puppy Bowl 2018 -Vikings Vs Eagles -Sergei Eisenstein -Sergei Eisenstein -Trump State of the Union -What Time Is The Super Bowl -Pro Bowl 2018 -Elizabeth Blackwell -Super Bowl score -Valentines Day -Government Shutdown 2018 -Friends movie -Chloe Kim -Super Bowl score -tsunami -Wilder Penfield -Patriots -Alessia Cara -Winter Olympics -Alex Smith -The Home Depot -SpaceX -Justin Timberlake -Naya Rivera -What Time Is The Super Bowl -Wilder Penfield -Virginia Woolf -Royal Rumble 2018 -State of the Union -Alex Smith -Kylie Jenner -The 15:17 to Paris -Super Blue Blood Moon -Virginia Woolf -Charissa Thompson -Uma Thurman -LeBron James -Portia de Rossi -Fb Stock -Super Bowl Commercials 2018 -Alessia Cara -Florida shooting -Wilder Penfield -Kylie Jenner -Lou Anna Simon -Grammys 2018 -Cryptocurrency News -Grammys 2018 -Patriots -Lindsey Vonn -Winter Olympics -SpaceX -What Time Is The Super Bowl -Wilder Penfield -NBA Trades -What Time Is The Super Bowl -Dwyane Wade -Venom -New England Patriots owner -Grammys 2018 -Omarosa -Super Bowl 2018 -Virginia Woolf -Obama portrait -Google docs -The Home Depot -Russell Wilson -Carter G. Woodson -Paula Modersohn-Becker -Grammys 2018 -calculator -Super Bowl 2018 -LeBron James -Tom Brady -Valentines Day -SpaceX -Winter Olympics -Virginia Woolf -calculator -Super Bowl score -Super Bowl 2018 -Elizabeth Blackwell -Justin Timberlake -Black Panther -Robert Wagner -Kylie Jenner -Virginia Woolf -Dow Jones -Adam Rippon -Grammys 2018 -Carter G. Woodson -NBA Trades -State of the Union -Mark Salling -government shutdown -Johnny Weir -Roger Federer -State of the Union -Government Shutdown -SpaceX -Olympic medal count -Bob Dole -Patriots -Cloverfield Paradox -Evgenia Medvedeva -Vanessa Marcil -Lunar eclipse -Government Shutdown -Mexico earthquake -Larry Nassar -Berkshire Hathaway -Paula Modersohn-Becker -Justin Timberlake -Adam Rippon -Chicago West -What Time Is The Super Bowl -Government Shutdown 2018 -Super Bowl score -Patriots -Vikings Vs Eagles -Blake Griffin -Eli Manning -Patriots -Vikings Vs Eagles -Super blue blood Moon -Jason Kidd -Oar Olympics -SpaceX -Shibutani -Kentucky shooting -Winter Olympics -This Is Us -CNN -Wilder Penfield -What Time Is The Super Bowl -Carter G. Woodson -calculator -Solo Trailer -Super Bowl 2018 -Carter G. Woodson -Winter Olympics -Carter G. Woodson -Kylie Jenner -Gods Plan -JUUL -Lindsey Vonn -Zion Williamson -Government Shutdown -Larry Nassar -Elizabeth Blackwell -Carter G. Woodson -Kylie Jenner -Government Shutdown -Jennifer Aniston -Wilder Penfield -Patriots -CBS Sports -Obama portrait -Obama portrait -Wilder Penfield -Jimmy Garoppolo -UFC 220 -Government shutdown 2018 -Kim Kardashian -Cloverfield Paradox -Chris Long -Isaiah Thomas -Alessia Cara -Wilder Penfield -CNN -School Closings -Russell Wilson -Winter Olympics -Utah Jazz -Elizabeth Blackwell -Sergei Eisenstein -Aaron Hernandez -Gods Plan -Super Bowl score -New England Patriots owner -Winter Olympics -Kim Kardashian -LL Bean -Paula Modersohn-Becker -Government Shutdown -Pro Bowl 2018 -Winter Olympics -Earthquake Today -Alison Brie -Russell Wilson -Carter G. Woodson -The 15:17 to Paris -IXL -Rob Gronkowski -Elizabeth Blackwell -Oscar Nominations 2018 -Super Bowl score -Grammys 2018 -Florida shooting -Mark Salling -Groundhog Day 2018 -Celebrity Big Brother cast -Kim Cattrall -Super Bowl score -School Closings -Kingdom Come Deliverance -Super Bowl 2018 -Kylie Jenner Baby Girl -Groundhog Day 2018 -Yahoo Finance -Government Shutdown 2018 -Cherry Seaborn -Larry Nassar -Super Bowl 2018 -Andre Roberson -Manchester United -Friends movie -Super Bowl score -Wilder Penfield -Wilder Penfield -Justin Timberlake -Grammys 2018 -Valentines Day -Winter Olympics -Google docs -Vikings Vs Eagles -Dane Cook -Black Panther -Super Bowl score -Kylie Jenner -Elizabeth Blackwell -Mardi Gras 2018 -Ohio State basketball -Larry Nassar -Super Bowl 2018 -government shutdown -Elizabeth Blackwell -Scott Baio -The Home Depot -John Mahoney -Nathan Chen -Elizabeth Blackwell -Valentines Day -Super blue blood Moon -Google Classroom -Jennifer Aniston -Alison Brie -Super Bowl 2018 -Paula Modersohn-Becker -Super Bowl score -Elizabeth Blackwell -Government Shutdown -Virginia Woolf -Super Bowl 2018 -Sean Hannity -Patriots -Carter G. Woodson -Chief Wahoo -Florida shooting -SAG Awards 2018 -Women's March 2018 -Sergei Eisenstein -Super Bowl 2018 -Oscar Nominations 2018 -Alison Brie -Sergei Eisenstein -Larry Nassar -New England Patriots owner -Paula Modersohn-Becker -Florida shooting -Fifty Shades Freed -Justin Timberlake -Grammys 2018 -Cloverfield Paradox -Lady Bird -Mark Salling -slides -Wilder Penfield -Bruno Mars -Larry Nassar -Hope Hicks -Carter G. Woodson -SAG Awards 2018 -Virginia Woolf -Carrie Underwood -What Time Is The Super Bowl -Super Bowl 2018 -Fredo Santana -Mark Salling -What Time Is The Super Bowl -Alaska earthquake -Markelle Fultz -Duke basketball -Lindsey Vonn -Incredibles 2 -Neil Diamond -Elizabeth Blackwell -Dow Jones -Carter G. Woodson -Black Panther -Super Bowl score -Maddie Mastro -Patriots -Bitcoin Price -Government shutdown 2018 -Carter G. Woodson -Vince McMahon -Cbs -Winter Olympics -Larry Nassar -Super Bowl 2018 -Grammys 2018 -Groundhog Day 2018 -Wilder Penfield -Zion Williamson -Grammys 2018 -Black Panther -Trump State of the Union -Jennifer Aniston -Lunar eclipse -Elizabeth Blackwell -Obama portrait -Rasual Butler -United States Of America Winter Olympics -Virginia Woolf -Carter G. Woodson -Justin Timberlake -Super Bowl score -Google Classroom -Super Bowl 2018 -Jessica Chastain -Lena Zawaideh -Elizabeth Blackwell -Lindsey Vonn -Marlon Brando -Wilder Penfield -Bitcoin Price -Elizabeth Blackwell -Frederick Douglass -Alaska earthquake -Paula Modersohn-Becker -Alex Smith -Mark Salling -Super Bowl score -Toys R Us -Sergei Eisenstein -Bitcoin Price -Natalie Wood -Kylie Jenner -SAG Awards 2018 -Grammys 2018 -Patriots -Dow Jones -Wilder Penfield -Patriots -Did the Groundhog See His Shadow -Virginia Woolf -Amy Schumer -Valentines Day -Oscar Nominations 2018 -Elizabeth Blackwell -Super blue blood Moon -SAG Awards 2018 -Black Panther -Winter Olympics -Grammys 2018 -Carter G. Woodson -Carter G. Woodson -Peter Rabbit -Florida shooting -Black Panther -Government Shutdown -Paula Modersohn-Becker -Black Panther -Virginia Woolf -Virginia Woolf -FA Cup -Winter Olympics -Paula Modersohn-Becker -Virginia Woolf -Government Shutdown -Fredo Santana -Carter G. Woodson -SpaceX -Google docs -School Closings -Justin Timberlake -Sergei Eisenstein -Ann Curry -Amy Schumer -Grammys 2018 -Winter Olympics -Patti LuPone -Champions League -Amazon stock -Paula Modersohn-Becker -Columbine Shooting -Jessica Chastain -Dwyane Wade -Once Upon a Time -shutdown -Carter G. Woodson -Ash Wednesday -February -Virginia Woolf -Sergei Eisenstein -Super Bowl 2018 -Olympic Medal Count -Kylie Jenner -SpaceX -Government shutdown 2018 -Elizabeth Blackwell -Patriots -Megan Barry -Virginia Woolf -Winter Olympics -Larry Nassar -Cloverfield Paradox -Winter Olympics -Pro Bowl 2018 -Florida shooting -Shiffrin -NBA Trades -Quincy Jones -Winter Olympics -SpaceX -Camila Cabello -Kelly Clark -Super Bowl score -Elizabeth Blackwell -Fredo Santana -Winter Olympics -Dow Jones -Paula Modersohn-Becker -Carter G. Woodson -Grammys 2018 -What Time Is The Super Bowl -Virginia Woolf -Olympic medal count -Super Bowl Commercials 2018 -NFC Championship Game 2018 -Florida shooting -Florida shooting -Vikings vs Eagles -Elizabeth Blackwell -Johnny Manziel -Rihanna -Virginia Woolf -Sergei Eisenstein -Government Shutdown Meaning -Super Bowl 2018 -Brynn Cameron -Kim Cattrall -Duke Basketball -Mr Rogers -Mardi Gras 2018 -Luke Wilson -Julie Bowen -Patriots -Homeland -Super Bowl score -Elizabeth Blackwell -calculator -Carter G. Woodson -slides -Did the Groundhog See His Shadow -Elizabeth Blackwell -Super Bowl score -Chipper Jones -Virginia Woolf -Royal Rumble 2018 -Paula Modersohn-Becker -Elizabeth Blackwell -Paula Modersohn-Becker -Tyler Hilinski -Carter G. Woodson -Super Bowl score -Carter G. Woodson -Cbs -Government Shutdown -Justin Timberlake -Vikings Vs Eagles -Post Malone -Edwin Jackson -Patriots -Google Classroom -Florida shooting -Florida shooting -Lena Zawaideh -Larry Nassar -Solo Trailer -Memo -Mark Salling -Sergei Eisenstein -Jason Kelce -Larry Nassar -Elizabeth Blackwell -Patriots -Chloe Kim -Google Classroom -Sergei Eisenstein -State of the Union -Isaiah Thomas -State of the Union -Patriots -Amazon HQ2 -Virginia Woolf -Wilder Penfield -Carter G. Woodson -Winter Olympics -UFC 220 -Malcom Butler -Rasual Butler -Kylie Jenner -Paula Modersohn-Becker -Paula Modersohn-Becker -Childish Gambino -Steve Wynn -Elizabeth Blackwell -Zion Williamson -Hostiles -Bitcoin Price -Paula Modersohn-Becker -Dolly Parton -Wilder Penfield -Phantom Thread -Bob Dole -Adam Rippon -Elizabeth Blackwell -SpaceX -Grammys 2018 -Carter G. Woodson -Virginia Woolf -Jamie Anderson -Josh McDaniels -Wilder Penfield -Florida shooting -calculator -SpaceX -What Time Is The Super Bowl -Friends movie -Patriots -Government shutdown 2018 -Bradie Tennell -Justin Timberlake -Carter G. Woodson -Happy Valentines Day -Winter Olympics -Carter G. Woodson -Google Classroom -Florida shooting -Sergei Eisenstein -Black Panther -Michelle Obama -Mark Salling -Patriots -Florida shooting -Paula Modersohn-Becker -Florida shooting -Super Bowl score -SAG Awards 2018 -Timor Leste -Shaun White -Den of Thieves -Sergei Eisenstein -Patriots -Mexico -Florida shooting -Government shutdown -Winter Olympics -Carter G. Woodson -Florida shooting -Florida shooting -Patriots -Larry Nassar -Yahoo Finance -Women's March 2018 -Google Drive -Tom Petty -Altered Carbon -Winter Olympics -NBA Trades -Cedi Osman -Winter Olympics -Real Madrid -SpaceX -Elizabeth Blackwell -Florida shooting -XFL -Zion Williamson -Fifty Shades Freed -Vikings Vs Eagles -NBA Trades -New England Patriots owner -Larry Nassar -Virginia Woolf -Kylie Jenner -Doomsday Clock -Greg Monroe -Amy Schumer -Florida shooting -Justin Timberlake -Kylie Jenner -Super Bowl score -Super Bowl Commercials 2018 -Florida shooting -Grammys 2018 -Florida shooting -Olivia Munn -Sergei Eisenstein -Robinhood -Olympic medal count -Winter Olympics -Kristaps Porzingis -What Time Is The Super Bowl -Vikings Vs Eagles -Virginia Woolf -Elizabeth Blackwell -Wilder Penfield -New England Patriots owner -Doomsday Clock -Kristaps Porzingis -Patriots -Bitcoin Price -NBA Trades -Winter Olympics -Google docs -Peter Rabbit -Government Shutdown -Elizabeth Blackwell -Mexico earthquake -Sergei Eisenstein -Elizabeth Blackwell -Did the Groundhog See His Shadow -Super Bowl score -Winter Olympics -school closings -Logan Paul -Paula Modersohn-Becker -This Is Us -Chinese New Year 2018 -Mark Salling -Justin Timberlake -CNN -Real Madrid -Terrell Owens -Bitcoin Price -Bitcoin Price -Justin Timberlake -School Closings -What Time Is The Super Bowl -Paula Modersohn-Becker -Chris Stapleton -stock market -Oscar Nominations 2018 -Florida shooting -What Time Is The Super Bowl -Kesha Grammy -Sergei Eisenstein -Sergei Eisenstein -Mark Salling -Winter Olympics -Isaiah Thomas -Arsenal -Mark Salling -Elizabeth Blackwell -What Time Is The Super Bowl -Kentucky shooting -Super blue blood Moon -Elizabeth Blackwell -Bitcoin Price -What Time Is The Super Bowl -CNN -Alex Smith -Paula Modersohn-Becker -Eli Manning -Kratom -Super blue blood Moon -Florida shooting -Sergei Eisenstein -Patriots -Kesha -Wilder Penfield -Paula Modersohn-Becker -Joe Kennedy -Kentucky shooting -Florida shooting -Larry Nassar -Florida shooting -12 Strong -Paula Modersohn-Becker -This Is Us -Super Bowl 2018 -Sergei Eisenstein -Wilder Penfield -Virginia Woolf -XFL -NFL Honors -Wilder Penfield -Alaska earthquake -Super Bowl 2018 -Justin Timberlake -LeBron James -Carter G. Woodson -Valentines Day -What Time Is The Super Bowl -Johnny Weir -New England Patriots owner -Snapchat Update -stock market -Super Bowl score -Carter G. Woodson -Virginia Woolf -What Time Is The Super Bowl -Kim Kardashian -Paula Modersohn-Becker -Royal Rumble 2018 -Shaun White -Super Bowl 2018 -Super Bowl score -SpaceX -Rasual Butler -United States Of America Winter Olympics -Shaun White -Super Bowl score -Virginia Woolf -Super Bowl score -Kylie Jenner -Bitcoin Price -Eli Manning -Virginia Woolf -Sergei Eisenstein -Kylie Jenner -Super Bowl 2018 -CNN -Florida shooting -Jennifer Aniston -Carter G. Woodson -Oscar Nominations 2018 -Jessica Chastain -Wilder Penfield -Sergei Eisenstein -Patriots -Florida shooting -CNN -Larry Nassar -Shaun White -blue alert -Super Bowl 2018 -Carter G. Woodson -Government shutdown -Super Bowl 2018 -Justin Timberlake -Carter G. Woodson -Columbine -Wilder Penfield -Virginia Woolf -Florida shooting -Google Classroom -happy new year in Chinese -Solo Trailer -SAG Awards 2018 -Patriots -Carrie Underwood -What Time Is The Super Bowl -Caitlin McHugh -Celebrity Big Brother cast -Carter G. Woodson -Chicago West -Government shutdown 2018 -SpaceX -Super Bowl 2018 -MS13 -Elon Musk -Mardi Gras 2018 -Blue Moon -Happy Valentines Day -Vince McMahon -SpaceX -Super Bowl 2018 -SpaceX -Super Bowl 2018 -Super Bowl 2018 -Tom Brady -Carter G. Woodson -Florida shooting -Josh McDaniels -Grammys 2018 -Government Shutdown -Sergei Eisenstein -Mexico earthquake -Google Drive -Mark Salling -Virginia Woolf -Patriots -SpaceX -Winter Olympics -Patriots -Childish Gambino -Wilder Penfield -Patriots -Paula Modersohn-Becker -New England Patriots owner -Super Bowl 2018 -Super Bowl score -SpaceX -Black Panther -Paula Modersohn-Becker -Montgomery County Public Schools -Elizabeth Blackwell -Kylie Jenner -Patti LuPone -Mark Salling -Chipper Jones -Super Bowl 2018 -Julie Ertz -Bitcoin Price -Virginia Woolf -Snake -XFL -Trump State of the Union -Super Bowl score -NHL All Star Game -Super Bowl score -Virginia Woolf -Lindsey Vonn -Sergei Eisenstein -Government shutdown 2018 -Super Bowl score -Sergei Eisenstein -Carter G. Woodson -Happy Valentines Day -Florida shooting -Drive -Chloe Kim -Government shutdown 2018 -Elizabeth Blackwell -Chipper Jones -Carter G. Woodson -Super Bowl 2018 -Florida shooting -Trump State of the Union -This Is Us -Kim Kardashian -Super Bowl 2018 -Jason Momoa -Vikings vs Eagles -Sergei Eisenstein -Shaun White -Google Classroom -Blue Moon -XFL -Wilder Penfield -Elizabeth Blackwell -Winter Olympics -Culture 2 -Sergei Eisenstein -Dwyane Wade -Wilder Penfield -Sergei Eisenstein -Government shutdown 2018 -What Time Is The Super Bowl -Fredo Santana -Larry Nassar -Lindsey Vonn -Florida shooting -Virginia Woolf -Patriots -Grammys 2018 -Josh Allen -Super Bowl score -Chipper Jones -Virginia Woolf -Carter G. Woodson -Josh McDaniels -Olympic medal count -Daryle Singletary -Altered Carbon -Paula Modersohn-Becker -Grammys 2018 -Elizabeth Blackwell -Real Madrid -Stormi -Government Shutdown -Wilder Penfield -Memo -Super Bowl 2018 -Elizabeth Blackwell -Super Bowl score -Did the Groundhog See His Shadow -Portia de Rossi -Super Bowl 2018 -Terrell Owens -stock market -Valentines Day Images -XFL -Fredo Santana -Super Blue Blood Moon -Spice Girls -Elizabeth Blackwell -Justin Timberlake -Venom -Florida shooting -Wilder Penfield -Justin Timberlake -Google Classroom -Oscar Nominations 2018 -Virginia Woolf -Hope Hicks -Google docs -Carter G. Woodson -Winter Olympics -Camila Cabello -Winter Olympics -Virginia Woolf -Super Bowl score -Rasual Butler -Westminster Dog Show 2018 -Super Bowl score -Bob Dole -Super blue blood Moon -Groundhog Day 2018 -Grammys 2018 -Rasual Butler -12 Strong -Den of Thieves -Winter Olympics -Kirstjen Nielsen -Mark Salling -Super Bowl 2018 -Super Bowl 2018 -Larry Nassar -Super Bowl 2018 -Grammys 2018 -Vikings vs Eagles -SAG Awards 2018 -Super Bowl 2018 -What Time Is The Super Bowl -Virginia Woolf -Super Bowl score -Jennifer Aniston -Scott Baio -Elizabeth Blackwell -Edwin Jackson -Andrew Cunanan -Bob Dole -Cloverfield Paradox -Carter G. Woodson -Happy Valentines Day -Solo Trailer -Wilder Penfield -Patriots -Netflix Stock -Patriots -Sergei Eisenstein -Virginia Woolf -Elizabeth Blackwell -Valentines Day -Winter Olympics -Elizabeth Blackwell -Wilder Penfield -Carter G. Woodson -What Time Is The Super Bowl -The 15:17 to Paris -Dow Jones -Sea Of Thieves -Daytona 500 -Wilder Penfield -Grammys 2018 -Elizabeth Blackwell -Trump State of the Union -Yoel Romero -Jimmy Garoppolo -Alessia Cara -Women's March 2018 -Virginia Woolf -Puppy Bowl 2018 -Patriots -Peter Rabbit -Winter Olympics -What Time Is The Super Bowl -Kylie Jenner -United States Of America Winter Olympics -Grammys 2018 -Sergei Eisenstein -Paula Modersohn-Becker -Tom Petty -Elizabeth Blackwell -Jennifer Aniston -Paula Modersohn-Becker -Mardi Gras 2018 -SpaceX -Justin Timberlake -NHL All Star Game -Joe Kennedy -Virginia Woolf -Johnny Weir -Dane Cook -Cavs -Super Bowl score -Elton John -SpaceX -When We First Met -Isaiah Thomas -Adam Rippon -Larry Nassar -Bitcoin Price -Black Lightning -calculator -Patriots -Wilder Penfield -Winter Olympics -Mikaela Shiffrin -Super blue blood Moon -Earthquake Today -Grammys 2018 -Super Bowl 2018 -Sergei Eisenstein -Wilder Penfield -calculator -Rasual Butler -Isaiah Canaan -Paula Modersohn-Becker -Cloverfield Paradox -Super Bowl score -Government Shutdown -Kesha -Dow Jones -Paula Modersohn-Becker -Wilder Penfield -Kim Cattrall -Virginia Woolf -Wilder Penfield -SAG Awards 2018 -Olympic medal count -Larry Nassar -Patriots -Carrie Underwood -Fredo Santana -Blake Griffin -Super Bowl score -Virginia Woolf -Super Bowl 2018 -Joe Kennedy -Jacob Copeland -Edwin Jackson -Isaiah Canaan -Paula Modersohn-Becker -Virginia Woolf -Pro Bowl 2018 -Florida shooting -Paula Modersohn-Becker -Den of Thieves -Government Shutdown -UFC 220 -What Time Is The Super Bowl -Joe Kennedy -Elizabeth Blackwell -James Baldwin -Blake Griffin Trade -earthquake -Robert Mueller -Elizabeth Blackwell -Trump State of the Union -Chloe Kim -UFC 220 -All Star Weekend 2018 -Jennifer Aniston -Morgan Freeman -Virginia Woolf -NBA Trades -Carter G. Woodson -Super blue blood Moon -Google docs -Kentucky shooting -Chicago West -Kim Kardashian -Sergei Eisenstein -Kylie Jenner -Toys R Us -Shaun White -State of the Union -What Time Is The Super Bowl -Virginia Woolf -Virginia Woolf -Winter Olympics -Government Shutdown -CNN -Super Bowl score -Virginia Woolf -Mickey Jones -Winter Olympics -Paula Modersohn-Becker -Winter Olympics -Sergei Eisenstein -Bruno Mars -Women's March 2018 -Elizabeth Blackwell -Vikings Vs Eagles -Eli Manning -State of the Union -Florida shooting -Rasual Butler -Winter Olympics -Gods Plan -Virginia Woolf -Paula Modersohn-Becker -This Is Us -Chicago West -What Time Is The Super Bowl -fake news awards -Jennifer Aniston -Groundhog Day 2018 -Gods Plan -Pro Bowl 2018 -12 Strong -Government shutdown 2018 -Government Shutdown -Carter G. Woodson -Virginia Woolf -Florida shooting -Florida shooting -Kylie Jenner -Wilder Penfield -Vikings Vs Eagles -Super Bowl score -Kylie Jenner Baby Girl -Wilder Penfield -Elizabeth Blackwell -Chinese New Year 2018 -Elizabeth Blackwell -Vikings Vs Eagles -Caitlin McHugh -national signing day 2018 -Justin Timberlake -Outback Steakhouse -State of the Union -Kylie Jenner -Dwyane Wade -Patriots -Virginia Woolf -Toys R Us -Harley Barber -What Time Is The Super Bowl -Groundhog Day 2018 -Government Shutdown -Super Bowl 2018 -Kelly Clark -Robby Anderson -Super blue blood Moon -Rasual Butler -Super Bowl 2018 -Steve Mcnair -Frank Reich -Winter Olympics -Rolling Loud -Memo -Super Bowl score -Stormi -Bitcoin Price -SpaceX -Patriots -Elton John -Valentines Day -Olympics 2018 -Grammys 2018 -Super Bowl score -Wilder Penfield -Shaun White -Elizabeth Blackwell -State of the Union -Government Shutdown -Super Bowl 2018 -Carter G. Woodson -Carter G. Woodson -SpaceX -Government shutdown -Winter Olympics -State of the Union -Kingdom Come Deliverance -Happy Valentines Day -This is Us -Virginia Woolf -Patriots -Terrell Owens -New England Patriots owner -The 15:17 to Paris -Government Shutdown -Winter Olympics -Black Panther -Wilder Penfield -Kentucky shooting -Cavs -Winter Olympics -Stormi -Justin Timberlake -Florida shooting -Happy Valentines Day -Cryptocurrency News -Wilder Penfield -Happy Valentines Day -Patriots -SpaceX -Wilder Penfield -Derrick Rose -Patriots -tsunami -Virginia Woolf -Carter G. Woodson -Mikaela Shiffrin -Kylie Jenner -Alex Smith -Patriots -Winter Olympics -Florida shooting -Super Bowl 2018 -Kristaps Porzingis -Google Drive -Sergei Eisenstein -calculator -Stan Lee -Patriots -Wilder Penfield -Virginia Woolf -Cloverfield Paradox -Eli Manning -What Time Is The Super Bowl -Shaun White -Grammys 2018 -NBA Trades -SpaceX -Super Bowl score -Happy Valentines Day -Lorenzo Cain -Real Madrid -Lil Xan -Super Bowl 2018 -Winter Olympics -Mikaela Shiffrin -Vikings Vs Eagles -Sergei Eisenstein -Olympic medal count -State of the Union -Oscar Nominations 2018 -Mark Salling -Government shutdown -Super Bowl 2018 -SpaceX -Elizabeth Blackwell -Sergei Eisenstein -Larry Nassar -What Time Is The Super Bowl -SAG Awards 2018 -Gods Plan -Oscar Nominations 2018 -New England Patriots owner -Kylie Jenner -Florida shooting -Joe Kennedy -Wilder Penfield -Government shutdown 2018 -Florida shooting -Super Bowl 2018 -Groundhog Day 2018 -State of the Union -Elizabeth Blackwell -Google Classroom -Terrell Owens -Carter G. Woodson -Olympics 2018 -Reg E Cathey -Bob Marley -Super Bowl 2018 -Tom Petty -Winter Olympics -Grammys 2018 -Tiger Woods -State of the Union -Justin Timberlake -Sabrina Dhowre -Government Shutdown -Elizabeth Blackwell -This Is Us -Kylie Jenner -Sergei Eisenstein -Carter G. Woodson -Kylie Jenner -Super blue blood Moon -SpaceX -Patriots -AFC Championship Game 2018 -Senior Bowl -Super Bowl score -Florida shooting -Paula Modersohn-Becker -Florida shooting -Josh McDaniels -State of the Union -Carter G. Woodson -Obama portrait -Super Bowl score -This Is Us -Sergei Eisenstein -Elizabeth Blackwell -Alaska earthquake -Jason Kelce -Puppy Bowl 2018 -Grammys 2018 -Caroline Wozniacki -Virginia Woolf -Sergei Eisenstein -Kylie Jenner -Call Me by Your Name -Taiwan -Jason Kelce -Kylie Jenner -Ash Wednesday -Mikaela Shiffrin -Government Shutdown -Virginia Woolf -SAG Awards 2018 -calculator -Paula Modersohn-Becker -Justin Timberlake -The Resident -Shaun White -Florida shooting -This Is Us -Sandy Hook -Laura Ingraham -Patriots -Mark Salling -Pro Bowl 2018 -Monster Hunter World -Bruno Mars -Valentines Day -Wilder Penfield -Paula Modersohn-Becker -Paula Modersohn-Becker -Stock Market Crash Today -Florida shooting -Katie Couric -What Time Is The Super Bowl -Super Bowl 2018 -Elizabeth Blackwell -Terrell Owens -Elizabeth Blackwell -Alex Smith -Super Bowl score -Venom -Sergei Eisenstein -national signing day 2018 -Black Panther -Joe Kennedy -Ash Wednesday -Wilder Penfield -Super Bowl score -Vikings Vs Eagles -Hope Hicks -Justin Timberlake -Happy Valentines Day -Camila Cabello -Super Bowl score -Sergei Eisenstein -Adam Rippon -Government Shutdown 2018 -Winter Olympics -NASCAR -Real Madrid -Chinese New Year 2018 -What Time Is The Super Bowl -Dow Jones -Wilder Penfield -Justin Timberlake -SpaceX -Sergei Eisenstein -Valentines Day -Winter Olympics -Kingdom Come Deliverance -Government Shutdown -fake news awards -The Home Depot -Vincent Zhou -Bitcoin Price -Alaska earthquake -Sergei Eisenstein -Super Bowl score -Trump State of the Union -Elizabeth Blackwell -Cloverfield Paradox -Alessia Cara -Isaiah Thomas -School closings -Sergei Eisenstein -Lunar eclipse -Edible Arrangements -Patriots -Sergei Eisenstein -Pro Bowl 2018 -Government Shutdown -Chicago Weather -Justin Timberlake -Dwyane Wade -Katie Couric -Paula Modersohn-Becker -Tammy Duckworth -Winter Olympics -Royal Rumble 2018 -Larry Nassar -Winter Olympics -Virginia Woolf -Kentucky shooting -Super blue blood Moon -Bruno Mars -H&r Block -Mark Salling -Groundhog Day 2018 -Elizabeth Blackwell -SpaceX -What Time Is The Super Bowl -SpaceX -Wilder Penfield -Chrissy Teigen -New England Patriots owner -Virginia Woolf -Bradie Tennell -Isaiah Thomas -This is Us -Olympic Medal Count -Quincy Jones -Virginia Woolf -Black Panther -Cavs -Carter G. Woodson -XIV -Government shutdown -Kylie Jenner -Super Bowl 2018 -Carter G. Woodson -Jessica Biel -Government Shutdown -Mikaela Shiffrin -Government Shutdown 2018 -Despacito -Carter G. Woodson -What Time Is The Super Bowl -Fifty Shades Freed -Happy Valentines Day -Quincy Jones -Sergei Eisenstein -Yahoo Finance -Super Bowl score -Rose McGowan -Virginia Woolf -FC Barcelona -Paula Modersohn-Becker -Joseph Haynes -Bill Paxton -Quentin Tarantino -Chinese New Year 2018 -Paula Modersohn-Becker -Den of Thieves -Walter Payton -Megan Barry -Wilder Penfield -Super Bowl score -Johnny Weir -Tesla in space -Sergei Eisenstein -Cavs -Virginia Woolf -SpaceX -Virginia Woolf -Sergei Eisenstein -Patriots -Super Bowl 2018 -Mardi Gras 2018 -Super Bowl score -Kentucky shooting -Bitcoin Price -Memo -Virginia Woolf -Shaun White -NBA Trades -Alex Smith -Google Classroom -Super Bowl 2018 -Virginia Woolf -Patriots -Florida shooting -Super Bowl Commercials 2018 -Elizabeth Blackwell -Montreal Cognitive Assessment -Chloe Kim -Sergei Eisenstein -Paula Modersohn-Becker -Justin Timberlake -Winter Olympics -Jimmy Garoppolo -Sergei Eisenstein -Kim Kardashian -Champions League -New England Patriots owner -school closings -Sergei Eisenstein -Sergei Eisenstein -Venom -Wilder Penfield -Winter Olympics -Winter Olympics -Elizabeth Blackwell -Patriots -Super Bowl 2018 -Sergei Eisenstein -John Mahoney -Sergei Eisenstein -Johnny Manziel -Patriots -Halsey -Elizabeth Blackwell -Red Gerard -Winter Olympics -SpaceX -Ash Wednesday -Memo -Carter G. Woodson -Sergei Eisenstein -Super Bowl score -Harley Barber -Virginia Woolf -SAG Awards 2018 -Kentucky shooting -Dow Jones -Kevin Love -Patriots -Early Man -Patriots -Jamie Anderson -Patriots -Josh McDaniels -Patty Hearst -Bitcoin Price -Terrell Owens -Carter G. Woodson -Blake Griffin -Mardi Gras 2018 -Dow Jones -Florida shooting -Cavs -Sergei Eisenstein -Dow Jones -Carter G. Woodson -Celtics -Women's March 2018 -Mark Salling -What Time Is The Super Bowl -Obama portrait -Kylie Jenner -Sergei Eisenstein -Bitcoin Price -Patriots -Super Bowl 2018 -Grammys 2018 -Spice Girls -Carter G. Woodson -Ash Wednesday -Carter G. Woodson -UFC 220 -Patriots -Real Madrid -Ohio State basketball -Grammys 2018 -SpaceX -JUUL -Carter G. Woodson -Larry Nassar -Patriots -Chris Paul -Sergei Eisenstein -Wilder Penfield -SpaceX -Elizabeth Blackwell -SAG Awards 2018 -XFL -Grammys 2018 -Tom Petty -Presidents Day 2018 -Patriots -SpaceX -Sergei Eisenstein -Florida shooting -Chicago Weather -Grammys 2018 -Justin Timberlake -Shaun White -Super Bowl score -Wilder Penfield -Elizabeth Blackwell -SpaceX -CNN -Super Bowl 2018 -Valentines Day -School Closings -Blake Griffin -Alex Smith -Isaiah Canaan -Emily Sweeney -Mikaela Shiffrin -Marlon Brando -Chris Stapleton -Wilder Penfield -Super Bowl score -Mark Salling -Immaculate Conception -Grammys 2018 -Mardi Gras 2018 -Carter G. Woodson -Government Shutdown -Quincy Jones -Alessia Cara -Black Lightning -Josh McDaniels -Oscar Nominations 2018 -Dow Jones -Larry Nassar -Kylie Jenner -Cherry Seaborn -Justin Timberlake -Did the Groundhog See His Shadow -Patriots -Fredo Santana -SpaceX -Ursula Le Guin -Florida shooting -Grammys 2018 -Paula Modersohn-Becker -Valentine's Day -Larry Nassar -Super Bowl 2018 -Florida shooting -Super blue blood Moon -Lee Miglin -Elizabeth Blackwell -Larry Nassar -Andrew McCabe -Lunar eclipse -Nathan Chen -Chinese New Year 2018 -Winter Olympics -Mcdonald's -Virginia Woolf -Tyler Hilinski -Wilder Penfield -Classroom -Carter G. Woodson -Justin Timberlake -Cherry Seaborn -Super Bowl score -What Time Is The Super Bowl -Alessia Cara -Gianni Versace -Patriots -Paula Modersohn-Becker -Terrell Owens -Super Bowl score -Florida shooting -Sea Of Thieves -Obama portrait -Mardi Gras 2018 -Carter G. Woodson -Chinese New Year 2018 -Sergei Eisenstein -Patriots -Jalen Ramsey -Patriots -Grammys 2018 -Phantom Thread -Paula Modersohn-Becker -Olympic Medal Count -Patriots -Bitcoin Price -Royal Rumble 2018 -Chinese New Year 2018 -Patriots -Florida shooting -Kesha Grammy -Amazon HQ2 -Justin Timberlake -Edwin Jackson -Matt Patricia -Paula Modersohn-Becker -DeMarcus Cousins -Super Bowl 2018 -Super Bowl 2018 -calculator -Virginia Woolf -LeBron James -Super Bowl 2018 -Google docs -Patriots -Super Bowl score -Bitcoin Price -Memo -Blood Moon -Black Panther -calculator -NBA Trades -SpaceX -Paula Modersohn-Becker -What Time Is The Super Bowl -Valentines Day -Carter G. Woodson -Bill Paxton -Super Bowl Winners -Altered Carbon -Patriots -Jennifer Aniston -Betty White -Den of Thieves -Cavs -Florida shooting -Super Bowl 2018 -Elizabeth Blackwell -Valentine's Day -Mexico earthquake -Paula Modersohn-Becker -Halsey -Florida shooting -Carter G. Woodson -Rodney Hood -Alessia Cara -Super Bowl 2018 -Virginia Woolf -Chloe Kim -Pro Bowl 2018 -Elizabeth Blackwell -Kim Kardashian -Meteor -Trump State of the Union -Pink -NBA Trades -NBA Trades -Government Shutdown -XFL -Kylie Jenner -Tara Lipinski -Florida shooting -Super Bowl 2018 -Kylie Jenner -NBA Trades -Patriots -Winter Olympics -Paula Modersohn-Becker -Groundhog Day 2018 -Winter Olympics -What Time Is The Super Bowl -Florida shooting -Super Bowl 2018 -Super Bowl 2018 -Carter G. Woodson -Elizabeth Blackwell -Royal Rumble 2018 -fake news awards -Vanessa Marcil -Government shutdown 2018 -SpaceX -Blue Ivy -Cavs -Patriots -Wilder Penfield -Sergei Eisenstein -Happy Valentines Day -Florida shooting -XFL -Carter G. Woodson -Virginia Woolf -Groundhog Day 2018 -Google Drive -Super Bowl score -Bernie Sanders -Sergei Eisenstein -Paula Modersohn-Becker -Lunar eclipse -Classroom -Kesha -Fredo Santana -Chris Mazdzer -Grammys 2018 -Vikings Vs Eagles -This Is Us -Google docs -Call Me by Your Name -Sea Of Thieves -Pro Bowl 2018 -Super Bowl score -school closings -NBA Trades -Natalie Wood -Lakers -Mark Salling -Kylie Jenner -Super Bowl score -Grammys 2018 -Sergei Eisenstein -What Time Is The Super Bowl -Virginia Woolf -Government Shutdown -Super Bowl score -Government Shutdown -Larry Nassar -Super blue blood Moon -Kris Dunn -Obama portrait -Wilder Penfield -National Pizza Day -Government shutdown -Hostiles -Solo Trailer -Kentucky shooting -Elizabeth Blackwell -Solo Trailer -SpaceX -Virginia Woolf -Kylie Jenner Baby Girl -Sergei Eisenstein -Vikings Vs Eagles -Kelly Clark -Winter Olympics -Tom Brady -Wilder Penfield -Florida shooting -Larry Nassar -Nba All Star Draft -NBA Trades -Mavic Air -Carter G. Woodson -Bitcoin Price -Bob Marley -Super Bowl 2018 -Trump State of the Union -What Time Is The Super Bowl -State of the Union -Virginia Woolf -UFC 220 -NBA Trades -Kylie Jenner -Kentucky shooting -What Time Is The Super Bowl -Super Bowl score -Super Bowl 2018 -Dow Jones -Wilder Penfield -Stock Market Crash Today -Amy Schumer -Government shutdown -Elizabeth Blackwell -Terrell Owens -Quincy Jones -Government Shutdown -Bruno Mars -Winter Olympics -Government Shutdown -Amy Schumer -Government shutdown -Johnny Manziel -Super Bowl score -Alessia Cara -calculator -Super Bowl score -Paula Modersohn-Becker -Super Bowl score -Joe Kennedy -Dow Jones -CNN -Larry Nassar -Lauren Davis -XFL -Carter G. Woodson -Carter G. Woodson -What Time Is The Super Bowl -Paula Modersohn-Becker -Sergei Eisenstein -Sergei Eisenstein -Florida shooting -Super Bowl score -Super Bowl score -Pro Bowl 2018 -What Time Is The Super Bowl -Wilder Penfield -Elton John -Patriots -Shaun White -Super Bowl 2018 -Cavs -Kylie Jenner -Super Bowl score -Paula Modersohn-Becker -Super Bowl 2018 -Super Bowl score -Patriots -State of the Union -Elizabeth Blackwell -Heath Ledger -calculator -National Pizza Day -Florida shooting -Florida shooting -Mark Salling -Virginia Woolf -Kylie Jenner -Super Bowl 2018 -Grammys 2018 -Black Panther -Groundhog Day 2018 -Black Panther -Sergei Eisenstein -Super Bowl score -Super Bowl 2018 -Virginia Woolf -UFC 220 -Did the Groundhog See His Shadow -Patriots -JUUL -Joe Kennedy -Sergei Eisenstein -Wilder Penfield -Paula Modersohn-Becker -Jason Kelce -Jennifer Aniston -Women's March 2018 -Justin Timberlake -Carrie Underwood -Virginia Woolf -Wilder Penfield -Sergei Eisenstein -Vikings Vs Eagles -Amy Schumer -Virginia Woolf -This Is Us -Paula Modersohn-Becker -Olympic medal count -Football Playoffs 2018 -Happy Valentines Day -Super Bowl 2018 -Black Panther -Olympic Medal Count -Royal Rumble 2018 -Did the Groundhog See His Shadow -Paula Modersohn-Becker -Cloverfield Paradox -Virginia Woolf -SpaceX -Royal Rumble 2018 -Kylie Jenner -Edible Arrangements -Sergei Eisenstein -Grammys 2018 -Virginia Woolf -Sergei Eisenstein -Justin Timberlake -NBA Trades -Sergei Eisenstein -Sergei Eisenstein -Google docs -SpaceX -Virginia Woolf -Mark Salling -Virginia Woolf -Larry Nassar -Super Bowl score -Super blue blood Moon -Virginia Woolf -Elizabeth Blackwell -Groundhog Day 2018 -Grammys 2018 -earthquake today -Kesha Grammy -Patriots -Carter G. Woodson -Friends movie -Wilder Penfield -Greg Monroe -Bob Dole -Lunar eclipse -Paula Modersohn-Becker -Melania Trump -SpaceX -FC Barcelona -Super Bowl 2018 -Chinese New Year 2018 -Winter Olympics -Groundhog Day 2018 -Government Shutdown -Super Bowl score -Carter G. Woodson -What Time Is The Super Bowl -Gianni Versace -Virginia Woolf -Florida shooting -Dennis Edwards -Tammy Duckworth -Wilder Penfield -Florida shooting -Grammys 2018 -Blue Moon -Johnny Weir -Elizabeth Blackwell -Blue Moon -Grammys 2018 -Patriots -Paula Modersohn-Becker -Senior Bowl -Government shutdown -XFL -Florida shooting -Cherry Seaborn -Wilder Penfield -calculator -Meteor -What Time Is The Super Bowl -Florida shooting -Sergei Eisenstein -Netflix Stock -12 Strong -Johnny Weir -New England Patriots owner -Alexander Polinsky -Adam Rippon -Memo -Sergei Eisenstein -Justin Timberlake -SAG Awards 2018 -Josh McDaniels -Cedi Osman -Dwyane Wade -Bitcoin Price -Derrick Rose -Paula Modersohn-Becker -Carter G. Woodson -Quincy Jones -Justin Timberlake -Adam Rippon -Virginia Woolf -Andrew Cunanan -Virginia Woolf -Patriots -Kylie Jenner Baby Girl -Shaun White -Patriots -What Time Is The Super Bowl -Paula Modersohn-Becker -Mexico earthquake -Kesha Grammy -Carter G. Woodson -Winter Olympics -Carter G. Woodson -Government Shutdown Meaning -Lindsey Vonn -Patriots -Obama portrait -Happy Valentines Day -Sergei Eisenstein -Columbine -Patriots -Sergei Eisenstein -Carter G. Woodson -Royal Rumble 2018 -Elton John -Super blue blood Moon -Kylie Jenner -This Is Us -Virginia Woolf -Vikings Vs Eagles -Paula Modersohn-Becker -Johnny Weir -Wilder Penfield -Super Bowl score -Presidents Day 2018 -Sergei Eisenstein -Meteor -Google Drive -Super Bowl score -Natalie Portman -Jason Kidd -Carter G. Woodson -Celtics -Carter G. Woodson -Winter Olympics -Groundhog Day 2018 -Paula Modersohn-Becker -Daryle Singletary -Justin Timberlake -Wilder Penfield -Shaun White -Elizabeth Blackwell -Super Bowl Commercials -Elizabeth Blackwell -CNN -Patriots -Groundhog Day 2018 -Stan Lee -Wilder Penfield -Patriots -calculator -Houston Rockets -Kylie Jenner -Mardi Gras 2018 -Super Bowl Commercials 2018 -This Is Us -Winter Olympics -Carter G. Woodson -Vikings Vs Eagles -Patriots -Mikaela Shiffrin -Virginia Woolf -Super Bowl score -Kratom -Chloe Kim -Alex Smith -Florida shooting -Elizabeth Blackwell -Virginia Woolf -Andrew Cunanan -Amy Schumer -Virginia Woolf -What Time Is The Super Bowl -NBA Trades -This Is Us -Happy Valentines Day -Super Bowl Winners -Patriots -Sergei Eisenstein -Winter Olympics -Wilder Penfield -Nba All Star 2018 -Derrick Rose -Government Shutdown -What Time Is The Super Bowl -CNN -Virginia Woolf -Mikaela Shiffrin -Kentucky shooting -Senior Bowl -Winter Olympics -Chloe Kim Snowboarder -Super Bowl 2018 -Kylie Jenner -Virginia Woolf -Patti LuPone -Black Panther -Super blue blood Moon -Wilder Penfield -Black Panther -Super Bowl score -Carter G. Woodson -Larry Nassar -Patty Hearst -Florida shooting -Winter Olympics -Kylie Jenner -Jessica Chastain -Groundhog Day 2018 -Groundhog Day 2018 -Carter G. Woodson -Super Bowl Commercials 2018 -Kylie Jenner -School Closings -Naya Rivera -Wilder Penfield -Dow Jones -Natalie Wood -Paula Modersohn-Becker -Tom Petty -Government Shutdown -All Star Weekend 2018 -Jacob Copeland -Super Bowl score -Elon Musk -Paula Modersohn-Becker -LeBron James -Paula Modersohn-Becker -Super Bowl score -Carter G. Woodson -Olympic Medal Count -Oscar Nominations 2018 -Florida shooting -Super Bowl 2018 -Eli Manning -Warren Miller -Elizabeth Blackwell -Valentines Day -Cavs -Kesha Grammy -Justin Timberlake -SpaceX -Paula Modersohn-Becker -Wilder Penfield -Government Shutdown -Carter G. Woodson -Super Bowl score -Women's March 2018 -PlayStation Network -What Time Is The Super Bowl -Paula Modersohn-Becker -Black Panther -Wilder Penfield -NBA Trades -Sergei Eisenstein -Oscar Nominations 2018 -Larry Nassar -Oscar Nominations 2018 -Rodney Hood -Vikings Vs Eagles -Heath Ledger -Super Bowl score -Patriots -Elon Musk -Grammys 2018 -Grey's Anatomy -Cavs -Florida shooting -Earthquake -What Time Is The Super Bowl -Super Bowl 2018 -Winter Olympics -Patriots -Alaska earthquake -Super Bowl score -SpaceX -Marlon Brando -Patriots -Carter G. Woodson -Presidents Day 2018 -Super Bowl score -Sergei Eisenstein -Patriots -Kris Dunn -What Time Is The Super Bowl -Sergei Eisenstein -Kylie Jenner -Sergei Eisenstein -Sandy Hook -Grammys 2018 -Mark Salling -Carter G. Woodson -Elizabeth Blackwell -Kesha Grammy -The 15:17 to Paris -Happy Valentines Day -Super Blue Blood Moon -Caitlin McHugh -Uma Thurman -Highline College -Blake Griffin -SpaceX -Super Bowl score -Pro Bowl 2018 -school closings -James Harden -Super Bowl 2018 -Black Panther -Super Bowl score -Red Gerard -Justin Timberlake -stock market -government shutdown -Super Bowl score -Patriots -Winter Olympics -Montreal Cognitive Assessment -Naya Rivera -SpaceX -Winter Olympics -Super Bowl 2018 -Sergei Eisenstein -UFC 220 -Elizabeth Blackwell -Mardi Gras 2018 -Government Shutdown -Grammys 2018 -What Time Is The Super Bowl -Winter Olympics -Ash Wednesday -Super Bowl Commercials 2018 -Vikings Vs Eagles -Wilder Penfield -Bitcoin Price -Mark Salling -Fifty Shades Freed -SpaceX -State of the Union -Kim Kardashian -Florida shooting -Kylie Jenner -Winter Olympics -SpaceX -Elizabeth Blackwell -CNN -Lil Pump -Elizabeth Blackwell -stock market -SpaceX -Sea Of Thieves -Google Classroom -Fredo Santana -Todd Haley -SpaceX -Super Bowl Commercials 2018 -Dwyane Wade -Government Shutdown Meaning -Paula Modersohn-Becker -Super blue blood Moon -Larry Nassar -NBA Trades -Virginia Woolf -Chloe Kim -Kylie Jenner Baby Girl -Super Bowl score -Wilder Penfield -Sergei Eisenstein -Venom -Patriots -Dow Jones -Super Bowl 2018 -Lakers -National Pizza Day -SpaceX -Winter Olympics -State of the Union -Netflix Stock -Sea Of Thieves -Super Bowl score -Eli Manning -Black Panther -Florida shooting -NBA Trades -Jessica Chastain -Altered Carbon -Jason Kelce -What Time Is The Super Bowl -Virginia Woolf -Blake Griffin -Super Bowl 2018 -Trump State of the Union -Grammys 2018 -Super Bowl 2018 -United States Of America Winter Olympics -SpaceX -Rose McGowan -Virginia Woolf -Super Bowl 2018 -Olympic medal count -Sergei Eisenstein -Grammys 2018 -Sergei Eisenstein -Patriots -Naya Rivera -Kylie Jenner -Kylie Jenner -Super Bowl score -Grammys 2018 -Florida shooting -Jessica Chastain -Carter G. Woodson -Paula Modersohn-Becker -Robert Wagner -Elizabeth Blackwell -Patriots -Red Gerard -Despacito -Kylie Jenner -Super Bowl 2018 -Government shutdown 2018 -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl Commercials -Kylie Jenner -Florida shooting -Super Bowl score -Google docs -Hope Hicks -Rasual Butler -Mardi Gras 2018 -Carter G. Woodson -Paula Modersohn-Becker -Bitcoin Price -Valentines Day -Halsey -national signing day 2018 -Kylie Jenner -Waco -Sergei Eisenstein -Nintendo Labo -Carter G. Woodson -Carter G. Woodson -Adam Rippon -Winter Olympics -Bitcoin Price -Sergei Eisenstein -Patriots -Virginia Woolf -Cavs -Cloverfield Paradox -Sergei Eisenstein -Virginia Woolf -Elizabeth Blackwell -Virginia Woolf -Elizabeth Blackwell -What Time Is The Super Bowl -Wilder Penfield -Carter G. Woodson -Super Bowl 2018 -What Time Is The Super Bowl -Camila Cabello -Larry Nassar -Kylie Jenner -CNN -Tom Petty -Virginia Woolf -Super Bowl score -Lindsey Vonn -Super Bowl 2018 -Patriots -Adam Rippon -Carter G. Woodson -Florida shooting -Wilder Penfield -Virginia Woolf -SpaceX -Pro Bowl 2018 -Shaun White -Super Bowl Commercials 2018 -Did the Groundhog See His Shadow -Grammys 2018 -Robert Wagner -Virginia Woolf -Alessia Cara -Kylie Jenner -Yu Darvish -Mavic Air -Super Bowl 2018 -Paula Modersohn-Becker -Black Panther -Elizabeth Blackwell -Groundhog Day 2018 -Terrell Owens -Justin Timberlake -Super Bowl score -Hope Hicks -Senior Bowl -Florida shooting -Tessa Virtue -KSI Vs Weller -Super Bowl score -Shaun White -Virginia Woolf -Sergei Eisenstein -Super Bowl Commercials 2018 -Florida shooting -Maze Runner: The Death Cure -Disneyland tickets -Pro Bowl 2018 -Kylie Jenner -Paula Modersohn-Becker -Dow Jones -Super Bowl score -Sergei Eisenstein -Happy Valentines Day -Vic Damone -Grammys 2018 -Groundhog Day 2018 -Larry Nassar -Sergei Eisenstein -Super Bowl score -Bitcoin Price -Virginia Woolf -Elizabeth Blackwell -Winter Olympics -Virginia Woolf -New England Patriots owner -Mardi Gras 2018 -Obama portrait -Elon Musk -Carter G. Woodson -Super Bowl 2018 -Wilder Penfield -Wing Bowl 2018 -Trump State of the Union -Kylie Jenner -Carter G. Woodson -Super Bowl score -Cory Booker -Wilder Penfield -LeBron James -Meteor -Black Panther -Government Shutdown -Wilder Penfield -Virginia Woolf -Patriots -Winter Olympics -Joe Kennedy -Dwyane Wade -Dwyane Wade -Peter Rabbit -Sergei Eisenstein -Carter G. Woodson -Anastasia Bryzgalova -Chloe Kim -Classroom -Elizabeth Blackwell -School Closings -Red Gerard -AR-15 -Wilder Penfield -Blake Griffin Trade -Mark Salling -Larry Nassar -NBA Trades -Culture 2 -Mardi Gras 2018 -Puppy Bowl 2018 -John Mahoney -Carter G. Woodson -Roger Federer -Dow Jones -Elizabeth Blackwell -Patriots -Paula Modersohn-Becker -Montreal Cognitive Assessment -Real Madrid -Mark Salling -Alex Smith -SAG Awards 2018 -Memo -Super Bowl 2018 -Winter Olympics -NSA -Rob Porter -What Time Is The Super Bowl -Sergei Eisenstein -Alaska earthquake -Adam Hicks -Paula Modersohn-Becker -Ursula Le Guin -Trump State of the Union -Memo -Hope Hicks -Black Panther -Florida shooting -Football Playoffs 2018 -NFC Championship Game 2018 -Carter G. Woodson -Virginia Woolf -Florida shooting -XFL -Friends The Movie 2018 -Solo Trailer -Government Shutdown -Patriots -Virginia Woolf -Grammys 2018 -Elizabeth Blackwell -Valentines Day -Paula Modersohn-Becker -Alessia Cara -Waco -Wilder Penfield -Super Bowl score -Winter Olympics -Bitcoin Price -Elizabeth Blackwell -Chloe Kim -Florida shooting -Kylie Jenner -Justin Timberlake -Super Bowl Commercials 2018 -Terrell Owens -Danielle Herrington -Justin Timberlake -Florida shooting -Chicago West -Sergei Eisenstein -Adam Rippon -Super Bowl score -SpaceX -SpaceX -Carter G. Woodson -Kylie Jenner -Google docs -Shaun White -Lunar eclipse -Bob Dole -What Time Is The Super Bowl -Earthquake Today -Mark Salling -New England Patriots owner -Blake Griffin -Sergei Eisenstein -Paula Modersohn-Becker -Florida shooting -Patriots -Government Shutdown -Chloe Kim -Paula Modersohn-Becker -Elizabeth Blackwell -Tessa Virtue -Carter G. Woodson -Call Me by Your Name -Paula Modersohn-Becker -Super Bowl 2018 -Sergei Eisenstein -Patriots -Chris Long -Super Bowl score -SpaceX -Alison Brie -Winter Olympics -Super Bowl score -Tara Lipinski -Valentines Day Cards -Government Shutdown -Hope Hicks -Matt Patricia -Groundhog Day 2018 -Paula Modersohn-Becker -Sergei Eisenstein -Happy Valentines Day -Elizabeth Blackwell -Michelle Obama -Princess Eugenie -What Time Is The Super Bowl -NBA Trades -Olympic medal count -Lonzo Ball -Grammys 2018 -Amy Schumer -Chloe Kim -Carrie Underwood -BitConnect -Virginia Woolf -Kawhi Leonard -James Harden -Super Bowl 2018 -Wilder Penfield -Grammys 2018 -Florida shooting -Steven Tyler -Government Shutdown -Jessica Chastain -Kim Kardashian -Wilder Penfield -Tom Brady -Virginia Woolf -Wilder Penfield -Sammy Sosa -Olympic Medal Count -Nintendo Labo -Paula Modersohn-Becker -Solo Trailer -Montreal Cognitive Assessment -Fifty Shades Freed -Chinese New Year 2018 -Chloe Kim -Jeff Flake -Bradie Tennell -Elizabeth Blackwell -Sal Castro Middle School -Dow Jones -Atlanta Weather -Super Bowl 2018 -Lee Miglin -AFC Championship Game 2018 -Cavs -Patriots -Elizabeth Blackwell -Edwin Jackson -Shiffrin -Sergei Eisenstein -CBS Sports -Patriots -Caroline Wozniacki -Alaska earthquake -SAG Awards 2018 -Winter Olympics -Omarosa -Virginia Woolf -Amazon stock -Fifty Shades Freed -Virginia Woolf -Paul Ryan -Happy Valentines Day -Tiger Woods -Shaun White -Vikings Vs Eagles -Tony Romo -Terrell Owens -CNN -Atlanta Weather -Paula Modersohn-Becker -Josh Allen -MS13 -Mikaela Shiffrin -Government Shutdown -Patriots -Winter Olympics -Blue Moon -Kate Upton -Den of Thieves -Google docs -Carter G. Woodson -Rodney Hood -Johnny Weir -Grammys 2018 -Black Panther -Grammys 2018 -Hope Hicks -Patriots -Black Panther -Eli Manning -Sergei Eisenstein -Black Panther -Florida shooting -Blake Griffin -SAG Awards 2018 -Paula Modersohn-Becker -Juventus -Elizabeth Blackwell -Oscar Nominations 2018 -Patriots -Deadpool 2 -Florida shooting -Aaron Feis -Government Shutdown -Government Shutdown -Patriots -United States Of America Winter Olympics -fake news awards -Grammys 2018 -XFL -Justin Timberlake -Trump Hair -Royal Rumble 2018 -Doomsday Clock -Paula Modersohn-Becker -Wilder Penfield -Memo -SpaceX -Sergei Eisenstein -Elizabeth Blackwell -Carter G. Woodson -Vikings Vs Eagles -Pro Bowl 2018 -Winter Olympics -Pro Bowl 2018 -Elton John -Quentin Tarantino -Carter G. Woodson -Carter G. Woodson -Wilder Penfield -Happy Valentines Day -Kylie Jenner -Jason Momoa -Elizabeth Blackwell -Super Bowl 2018 -Government Shutdown Meaning -Chipper Jones -Super blue blood Moon -Patriots -Super Bowl score -Carter G. Woodson -Kylie Jenner -Elizabeth Blackwell -Bitcoin Price -Stock Market Crash Today -calculator -Steve Mcnair -Westerville Ohio -Carter G. Woodson -Valentines Day Images -Super Bowl score -Florida shooting -Elizabeth Blackwell -Elizabeth Blackwell -National Pizza Day -Alex Reimer -Florida shooting -Bitcoin Price -Super Bowl score -Wilder Penfield -Dow Jones -Sergei Eisenstein -Winter Olympics -Sergei Eisenstein -SpaceX -NBA Trades -CNN -Sergei Eisenstein -Virginia Woolf -Sergei Eisenstein -Florida shooting -State of the Union -Super Bowl 2018 -Rasual Butler -Andrew Cunanan -Government Shutdown -Groundhog Day 2018 -What Time Is The Super Bowl -SpaceX -Sabrina Dhowre -Carter G. Woodson -Paula Modersohn-Becker -Wilder Penfield -12 Strong -Amazon HQ2 -Google Classroom -Tom Brady daughter -What Time Is The Super Bowl -Carter G. Woodson -Sergei Eisenstein -Rodney Hood -Carter G. Woodson -Virginia Woolf -Kim Kardashian -Quincy Jones -Dane Cook -Government Shutdown -school closings -calculator -Scott Baio -Kentucky shooting -Lady Doritos -Wilder Penfield -Elizabeth Blackwell -Friends The Movie 2018 -Wilder Penfield -12 Strong -Stormi -Super Bowl Commercials 2018 -Alison Brie -SpaceX -Zion Williamson -Grammys 2018 -12 Strong -New England Patriots owner -Wilder Penfield -SpaceX -Sergei Eisenstein -Slender Man -Patriots -Super Bowl 2018 -Super Bowl score -Grammys 2018 -Kesha -Super Bowl score -Paula Modersohn-Becker -Tyler Hilinski -SpaceX -Super Bowl 2018 -Elizabeth Blackwell -Grammys 2018 -Olympic Medal Count -Carter G. Woodson -Kylie Jenner -Kim Kardashian -Winter Olympics -Olympics 2018 -Dow Jones -What Time Is The Super Bowl -Alison Brie -Virginia Woolf -Virginia Woolf -Florida shooting -Florida shooting -Elizabeth Blackwell -What Time Is The Super Bowl -Super Bowl 2018 -Winter Olympics -Grammys 2018 -What Time Is The Super Bowl -Elizabeth Blackwell -Paula Modersohn-Becker -SpaceX -Sting -Patriots -stock market -Rasual Butler -Super Bowl 2018 -Olivia Culpo -Sergei Eisenstein -Cavs -Fredo Santana -Rihanna -Mardi Gras 2018 -Government Shutdown Meaning -Carter G. Woodson -Patriots -Virginia Woolf -Justin Timberlake -Winter Olympics -Bitcoin Price -Wilder Penfield -Malcom Butler -Elizabeth Blackwell -Groundhog Day 2018 -Super Bowl score -Winter Olympics -Wilder Penfield -What Time Is The Super Bowl -SpaceX -fake news awards -Grammys 2018 -Virginia Woolf -Carter G. Woodson -Carter G. Woodson -Alessia Cara -Super Bowl score -Justin Timberlake -Virginia Woolf -Government Shutdown -Houston Rockets -NBA Trades -Patriots -Vikings Vs Eagles -NBA Trades -UFC 220 -Kentucky shooting -Super blue blood Moon -Super Bowl 2018 -Chinese New Year 2018 -Florida shooting -Joe Kennedy -Elizabeth Blackwell -Warren Miller -Vikings Vs Eagles -Pro Bowl 2018 -School closings -Government Shutdown Meaning -XFL -Patriots -Cedi Osman -Vikings Vs Eagles -Super Bowl score -Virginia Woolf -Puppy Bowl 2018 -Edible Arrangements -Super Bowl score -Larry Nassar -CNN -Oscar Nominations 2018 -Donald Trump Jr -Paula Modersohn-Becker -Virginia Woolf -Wilder Penfield -Mexico earthquake -Super blue blood Moon -Matt Patricia -Kylie Jenner -Wilder Penfield -Winter Olympics -Carter G. Woodson -Elizabeth Blackwell -Samson -Carter G. Woodson -Mark Salling -Solo Trailer -Blood Moon -Happy Valentines Day -Chinese New Year 2018 -Government Shutdown -Lindsey Vonn -Paula Modersohn-Becker -Super Bowl score -Yu Darvish -Wilder Penfield -Altered Carbon -Eli Manning -Cbs -Release The Memo -Winter Olympics -Wilder Penfield -Carter G. Woodson -Ash Wednesday -Dua Lipa -Super Bowl 2018 -Solo Trailer -Super Bowl score -Sergei Eisenstein -Yu Darvish -Mikaela Shiffrin -New England Patriots owner -Mikaela Shiffrin -Jason Kidd -Wilder Penfield -Amy Schumer -Carter G. Woodson -Larry Nassar -Den of Thieves -Rasual Butler -Oscar Nominations 2018 -Sergei Eisenstein -Elizabeth Blackwell -Vikings Vs Eagles -Kylie Jenner -LL Bean -Joe Kennedy -Black Panther -Montgomery County Public Schools -Jason Kelce -Wonder Woman -Super Bowl score -Solo Trailer -Super Bowl 2018 -Mcdonald's -Sergei Eisenstein -What Time Is The Super Bowl -Patty Hearst -Kylie Jenner -Oar Olympics -Super Bowl 2018 -Paula Modersohn-Becker -Wilder Penfield -Grammys 2018 -Super Bowl 2018 -Florida shooting -Vikings Vs Eagles -Paula Modersohn-Becker -Yoel Romero -Despacito -Westminster Dog Show 2018 -Eli Manning -Patriots -Elizabeth Blackwell -Grammys 2018 -Kylie Jenner -State of the Union -Paula Modersohn-Becker -What Time Is The Super Bowl -Super blue blood Moon -Super Bowl 2018 -Eli Manning -Neil Diamond -Wilder Penfield -Virginia Woolf -Wilder Penfield -Winter Olympics -Paula Modersohn-Becker -Paula Modersohn-Becker -Cavs -XFL -Elizabeth Blackwell -Super Bowl 2018 -Chris Paul -Blood Moon -H&r Block -Super Bowl 2018 -Kylie Jenner -Florida shooting -Tom Brady daughter -Wilder Penfield -Super Bowl 2018 -Black Panther -Wilder Penfield -Super Bowl score -Elizabeth Blackwell -Cavs -Super Bowl score -Jacob Copeland -Elizabeth Blackwell -Kitty Kat West -Super blue blood Moon -Adam Schiff -Blake Griffin -Solo Trailer -Florida shooting -Google Drive -Government shutdown 2018 -Sandy Hook -Winter Olympics -Virginia Woolf -Virginia Woolf -Super Bowl 2018 -Super blue blood Moon -Paula Modersohn-Becker -Groundhog Day 2018 -Kylie Jenner -Alex Smith -Luke Wilson -Stormi -NFC Championship Game 2018 -Valentines Day -Sergei Eisenstein -State of the Union -Halsey -Super Bowl score -Jason Kelce -Emily Sweeney -Larry Nassar -Happy Valentines Day -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl score -Mueller -Super Bowl score -Real Madrid -Carter G. Woodson -Purdue basketball -Blood Moon -DeMarcus Cousins -Florida shooting -Florida shooting -Florida shooting -Morgan Freeman -Groundhog Day 2018 -Vanessa Trump -Paula Modersohn-Becker -Super Bowl score -Chicago West -Wilder Penfield -Paula Modersohn-Becker -Super Bowl 2018 -Virginia Woolf -Chloe Kim -Larry Nassar -Carter G. Woodson -Government shutdown 2018 -Black Panther -Happy Valentines Day -Kylie Jenner -SAG Awards 2018 -This Is Us -Paula Modersohn-Becker -calculator -This Is Us -SpaceX -Black Panther -Paula Modersohn-Becker -Carter G. Woodson -Snapchat Update -stock market -Daryle Singletary -Virginia Woolf -Grammys 2018 -What Time Is The Super Bowl -State of the Union -Google Classroom -Kylie Jenner -Kentucky shooting -SpaceX -Winter Olympics -Florida shooting -Black Panther -Cavs -Super Bowl score -Florida shooting -What Time Is The Super Bowl -Oscar Nominations 2018 -Super Bowl 2018 -Elizabeth Blackwell -Rose McGowan -Happy Valentines Day -Duke Basketball -Elton John -Kim Kardashian -Alaska earthquake -What Time Is The Super Bowl -Altered Carbon -Patriots -Natalie Portman -Wilder Penfield -Tennys Sandgren -Winter Olympics -Mardi Gras 2018 -Winter Olympics -Mark Salling -Elton John -Amtrak -Winter Olympics -Winter Olympics -Gods Plan -Samson -Altered Carbon -Sea Of Thieves -Logan Paul -Groundhog Day 2018 -Carter G. Woodson -Elizabeth Blackwell -Wilder Penfield -Johnny Weir -Justin Timberlake -Kylie Jenner Baby Girl -Tyler Hilinski -Justin Timberlake -Patriots -Justin Timberlake -New England Patriots owner -Wilder Penfield -Larry Nassar -Super Bowl 2018 -Larry Nassar -Government Shutdown -Justin Timberlake -Virginia Woolf -Patriots -Kylie Jenner Baby Girl -February -Kirstjen Nielsen -Valentines Day -Duke basketball -Elizabeth Blackwell -Winchester -Hope Hicks -Casey Affleck -Chinese New Year 2018 -Justin Timberlake -Elizabeth Blackwell -calculator -Mike Tomlin -Edible Arrangements -Grammys 2018 -Winter Olympics -Super Bowl 2018 -Waco -Paula Modersohn-Becker -State of the Union -Pro Bowl 2018 -State of the Union -Mark Salling -Wilder Penfield -Kim Kardashian -Royal Rumble 2018 -Patriots -Early Man -Elizabeth Blackwell -Valentines Day -Pro Bowl 2018 -Wilder Penfield -Dua Lipa -Sergei Eisenstein -Patriots -Groundhog Day 2018 -Wilder Penfield -Ash Wednesday -Jennifer Aniston -Dow Jones -Super Bowl 2018 -Amy Schumer -Virginia Woolf -Ann Curry -Wilder Penfield -Florida shooting -Happy Valentines Day -Florida shooting -Florida shooting -Adam Hicks -Trey Gowdy -Football Playoffs 2018 -Carter G. Woodson -State of the Union -stock market -Carter G. Woodson -Obama portrait -Grammys 2018 -NBA Trades -Super blue blood Moon -Sergei Eisenstein -Rasual Butler -IXL -Super Bowl score -Super Bowl score -IXL -Vikings vs Eagles -Valentines Day Cards -Bitcoin Price -Paula Modersohn-Becker -Patriots -Rihanna -Carter G. Woodson -Tom Petty -Jason Momoa -Bruno Mars -Dow Jones -Derrick Rose -Elizabeth Blackwell -Obama portrait -Government Shutdown 2018 -Sergei Eisenstein -Isaiah Thomas -Westminster Dog Show 2018 -Patriots -Celebrity Big Brother cast -Elizabeth Blackwell -Super Bowl 2018 -Chris Long -Blake Griffin Trade -Patriots -Jason Kelce -Hope Hicks -Wilder Penfield -Adam Rippon -Jon Huntsman -Sergei Eisenstein -SpaceX -Dennis Edwards -Winter Olympics -What Time Is The Super Bowl -Carter G. Woodson -Did the Groundhog See His Shadow -Arsenal -Sergei Eisenstein -Blood Moon -Florida shooting -Super Bowl 2018 -Florida shooting -Winter Olympics -Wilder Penfield -Government Shutdown Meaning -Elizabeth Blackwell -Larry Nassar -Adam Rippon -national signing day 2018 -Sergei Eisenstein -Kylie Jenner -Mark Salling -What Time Is The Super Bowl -Brie Larson -Black Panther -Kim Kardashian -Florida shooting -NASA -Super Bowl score -Elizabeth Blackwell -Elizabeth Blackwell -Otto Warmbier -Grammys 2018 -Shaun White -Elizabeth Blackwell -Marlon Brando -Grammys 2018 -Patti LuPone -Sergei Eisenstein -Paula Modersohn-Becker -Florida shooting -Lari White -State of the Union -Steve Wynn -XFL -Friends movie -Sergei Eisenstein -Florida shooting -Elon Musk -Kylie Jenner -What Time Is The Super Bowl -Sergei Eisenstein -State of the Union -Justin Timberlake -Real Madrid -National Pizza Day -Wilder Penfield -Elizabeth Blackwell -Super Bowl score -Florida shooting -Florida shooting -Emily Sweeney -Highline College -Champions League -Logan Paul -Virginia Woolf -Trump State of the Union -Super Bowl score -Justin Timberlake -Super Bowl 2018 -Super blue blood Moon -Erykah Badu -Kentucky shooting -Elizabeth Blackwell -Virginia Woolf -Anthony Davis -SpaceX -Daryle Singletary -Ursula Le Guin -Super Bowl 2018 -Carter G. Woodson -Super Bowl score -Super Bowl score -Alaska earthquake -Super Bowl 2018 -Kylie Jenner -Elizabeth Blackwell -Super Bowl 2018 -Winter Olympics -Government Shutdown Meaning -Blake Griffin -Dua Lipa -What Time Is The Super Bowl -JUUL -Cbs -Camila Cabello -NASA -Toys R Us -Chris Mazdzer -Winter Olympics -NSA -Ted Bundy -Winter Olympics -Joe Kennedy -Sergei Eisenstein -Steve Wynn -Larry Nassar -Release The Memo -Florida shooting -Kylie Jenner -What Time Is The Super Bowl -Farmers Insurance Open 2018 -Scott Baio -calculator -Virginia Woolf -Wilder Penfield -Carter G. Woodson -Grammys 2018 -Joe Kennedy -Super Bowl score -government shutdown -Virginia Woolf -NBA Trades -Blake Griffin -Kelly Clark -Florida shooting -Virginia Woolf -Sergei Eisenstein -Virginia Woolf -Fredo Santana -NBC Sports -Florida shooting -Tessa Virtue -Chinese New Year 2018 -Kylie Jenner -Shaun White -Paula Modersohn-Becker -Kesha Grammy -Florida shooting -Adam Rippon -Kylie Jenner -This Is Us -Winter Olympics -Super Bowl 2018 -Larry Nassar -Google docs -Conor McGregor -Shaun White -Black Panther -Sean Hannity -Winchester -Russell Wilson -Paula Modersohn-Becker -Super blue blood Moon -Zion Williamson -What Time Is The Super Bowl -Virginia Woolf -Jennifer Aniston -Sergei Eisenstein -Nba All Star Draft -Wilder Penfield -Call Me by Your Name -Black Panther -Super Bowl 2018 -Patriots -Wilder Penfield -Jason Kelce -Winter Olympics -What Time Is The Super Bowl -Early Man -Jennifer Aniston -Super blue blood Moon -Rodney Hood -Black Lightning -School Closings -Vanessa Marcil -Vikings Vs Eagles -Patriots -Groundhog Day 2018 -Sergei Eisenstein -Virginia Woolf -Vikings Vs Eagles -Chinese New Year 2018 -Super Bowl 2018 -Taiwan -Dog Food Recall -Justin Timberlake -Dwyane Wade -Childish Gambino -Government Shutdown 2018 -Kylie Jenner -school closings -Google Drive -Kylie Jenner -Charissa Thompson -Hostiles -Carter G. Woodson -Mavic Air -Ash Wednesday -Groundhog Day 2018 -Sergei Eisenstein -Dow Jones -Super Bowl 2018 -SpaceX -Florida shooting -Kylie Jenner -Super Bowl score -Wilder Penfield -Government Shutdown -SpaceX -Sergei Eisenstein -Virginia Woolf -SpaceX -Kentucky shooting -Bitcoin Price -Happy Valentines Day -Super Bowl score -Paula Modersohn-Becker -Tessa Virtue -Earthquake Today -Super Bowl 2018 -Super Bowl 2018 -Google docs -Patriots -Elizabeth Blackwell -Elizabeth Blackwell -Florida shooting -Luke Wilson -Virginia Woolf -Winter Olympics -Wilder Penfield -Florida shooting -Winter Olympics -Patriots -Get Out -Louise Linton -Wilder Penfield -Super Blue Blood Moon -Paula Modersohn-Becker -Justin Timberlake -Fifty Shades Freed -Carter G. Woodson -Florida shooting -Cloverfield Paradox -Luke Wilson -Drive -The 15:17 to Paris -Super Bowl Commercials 2018 -Kesha -Alex Smith -Winter Olympics -Kristaps Porzingis -Justin Timberlake -Patriots -Paula Modersohn-Becker -Patriots -Paula Modersohn-Becker -Patriots -Mark Salling -Grammys 2018 -National Pizza Day -Elizabeth Blackwell -Hope Hicks -Cloverfield Paradox -Brynn Cameron -Natalie Portman -Super Bowl 2018 -Kesha -Paula Modersohn-Becker -Paula Modersohn-Becker -Patriots -Elizabeth Blackwell -Super Bowl 2018 -Jessica Chastain -Kylie Jenner -Wilder Penfield -SpaceX -Super Bowl 2018 -Government Shutdown -Justin Timberlake -Childish Gambino -Omarosa -Winter Olympics -Wilder Penfield -Grammys 2018 -Carter G. Woodson -CNN -Virginia Woolf -Waco -Sergei Eisenstein -Winter Olympics -Bitcoin Price -Alex Smith -Justin Timberlake -Lakers -State of the Union -Alex Smith -Elizabeth Blackwell -Donald Trump Jr -Grammys 2018 -Terrell Owens -XFL -Tyler Hilinski -SZA -Patriots -Wilder Penfield -Tyler Hilinski -Government Shutdown -Red Gerard -State of the Union -Grammys 2018 -Florida shooting -Government shutdown 2018 -Virginia Woolf -Elton John -Patriots -Virginia Woolf -NBA Trades -Bitcoin Price -SpaceX -Winter Olympics -Mavic Air -Wilder Penfield -Kylie Jenner -Natalie Portman -What Time Is The Super Bowl -Patriots -Kylie Jenner -Gods Plan -Justin Timberlake -Government Shutdown 2018 -Incredibles 2 -Patriots -NBA Trades -Fredo Santana -Florida shooting -Florida shooting -Mark Salling -Robinhood -Did the Groundhog See His Shadow -State of the Union -Carter G. Woodson -Super Bowl 2018 -Mardi Gras 2018 -Rasual Butler -Carter G. Woodson -calculator -Ant Man and the Wasp -Winter Olympics -stock market -Ash Wednesday -Obama portrait -Sergei Eisenstein -Florida shooting -Memo -Grammys 2018 -XFL -Memo -Winter Olympics -Google docs -Jane Fonda -Winter Olympics -Google Classroom -Larry Nassar -Robert Mueller -Super Bowl 2018 -Real Madrid -Cavs -Shaun White -NBA Trades -Super Bowl score -Elon Musk -Adam Rippon -Shaun White -Kylie Jenner -State of the Union -XFL -SpaceX -Government Shutdown Meaning -Joe Kennedy -Blue Ivy -Grammys 2018 -Memo -Government Shutdown -Elizabeth Blackwell -Andre Roberson -Justin Timberlake -Tyler Hilinski -Kylie Jenner -SAG Awards 2018 -Grammys 2018 -government shutdown -Luke Wilson -Carter G. Woodson -Super Bowl score -Patriots -Florida shooting -Super Bowl 2018 -Black Panther -SpaceX -Government Shutdown -Super Bowl 2018 -National Pizza Day -Carter G. Woodson -Culture 2 -Chloe Kim -Cavs -Heath Ledger -Chris Long -Justin Timberlake -Paula Modersohn-Becker -State of the Union -Mavic Air -Valentines Day -Super Bowl score -What Time Is The Super Bowl -Elizabeth Blackwell -State of the Union -Michigan State -tsunami -Carter G. Woodson -Meteor -Julie Ertz -Winter Olympics -Wilder Penfield -Larry Nassar -curling -What Time Is The Super Bowl -Paula Modersohn-Becker -Super Bowl Winners -Tesla in space -Luke Wilson -Ann Curry -Rachel Brand -Sergei Eisenstein -Happy Valentines Day -Josh McDaniels -North Korean cheerleaders -What Time Is The Super Bowl -Virginia Woolf -Jason Kidd -Patriots -Patriots -Carter G. Woodson -Kelly Clark -Super Bowl score -Paula Modersohn-Becker -Florida shooting -Government shutdown -Westerville Ohio -Paula Modersohn-Becker -Super Bowl score -Super Bowl score -Chipper Jones -Carter G. Woodson -Tom Petty -Government Shutdown Meaning -school closings -Cavs -Taiwan Earthquake Today -Government Shutdown 2018 -Obama portrait -Andrew Cunanan -New England Patriots owner -Virginia Woolf -Grammys 2018 -Elizabeth Blackwell -Logan Paul -UFC 220 -Altered Carbon -Carter G. Woodson -Chloe Kim -Jalen Ramsey -Cloverfield Paradox -NBC Sports -Super Bowl 2018 -Justin Timberlake -Super Bowl 2018 -Oscar Nominations 2018 -Winter Olympics -Tom Petty -Patriots -Virginia Woolf -Super Bowl 2018 -Super Bowl score -Tom Petty -All Star Weekend 2018 -Patriots -Elizabeth Blackwell -Greg Monroe -Vikings vs Eagles -Elizabeth Blackwell -Alessia Cara -Wilder Penfield -XFL -Joel Taylor -Zuleyka Rivera -Olympic medal count -Government Shutdown -Sergei Eisenstein -Joe Kennedy -Kentucky shooting -New England Patriots owner -State of the Union -Deadpool 2 -Florida shooting -Super Bowl Commercials 2018 -Super Blue Blood Moon -Virginia Woolf -Carter G. Woodson -UFC 220 -Justin Timberlake -Bitcoin Price -Justin Timberlake -SpaceX -Elizabeth Blackwell -Elizabeth Blackwell -Florida shooting -Dow Jones -Adam Rippon -Harry Styles -Super Bowl 2018 -Sergei Eisenstein -Super Bowl 2018 -Sergei Eisenstein -Duke basketball -Alaska earthquake -Rodney Hood -Virginia Woolf -Lindsey Vonn -Morgan Freeman -Steven Tyler -Google Classroom -Rob Gronkowski -Patriots -FA Cup -Chloe Kim -Florida shooting -Sergei Eisenstein -Kylie Jenner -Sergei Eisenstein -Kim Kardashian -Patriots -Wilder Penfield -Mardi Gras 2018 -Larry Nassar -Patriots -Larry Nassar -Patriots -Luke Wilson -Super Bowl score -Super Bowl 2018 -Paula Modersohn-Becker -SAG Awards 2018 -Josh McDaniels -Kentucky shooting -Wilder Penfield -Carter G. Woodson -Super Bowl Commercials -Best Superbowl Commercials 2018 -Government shutdown 2018 -Dolly Parton -Solo Trailer -Mueller -Patti LuPone -Elizabeth Blackwell -Carter G. Woodson -Florida shooting -SpaceX -John Mahoney -Patriots -Super Bowl 2018 -Dwyane Wade -Winter Olympics -Terrell Owens -Eli Manning -Super Bowl score -Fredo Santana -SpaceX -Amy Schumer -Trump State of the Union -Patriots -Justin Timberlake -stock market -Elizabeth Blackwell -Super Bowl score -Marlon Brando -Winter Olympics -Royal Rumble 2018 -Sergei Eisenstein -Virginia Woolf -Elizabeth Blackwell -Kylie Jenner -State of the Union -SpaceX -Sergei Eisenstein -Danielle Herrington -Carter G. Woodson -Kylie Jenner -Pro Bowl 2018 -The 15:17 to Paris -Sandy Hook -Winter Olympics -Dow Jones -Ursula Le Guin -SAG Awards 2018 -Wilder Penfield -Black Panther -Tesla in space -Super Bowl score -Uma Thurman -Kylie Jenner -Carter G. Woodson -Patriots -Paula Modersohn-Becker -Happy Valentines Day -Patriots -Naya Rivera -Memo -Florida shooting -Trump State of the Union -Venom -Larry Nassar -Super Bowl score -Pro Bowl 2018 -Arsenal -Mark Salling -Florida shooting -Virginia Woolf -Patriots -Deadpool 2 -Earthquake Today -Elton John -UFC 220 -State of the Union -Patriots -Chris Mazdzer -Super Bowl Commercials 2018 -NFC Championship Game 2018 -Sarah Barthel -Grammys 2018 -Larry Nassar -calculator -Pro Bowl 2018 -Sergei Eisenstein -Memo -This Is Us -Larry Nassar -Super blue blood Moon -Danielle Herrington -Carter G. Woodson -Groundhog Day 2018 -Larry Nassar -Carter G. Woodson -Daryle Singletary -Kylie Jenner -Wilder Penfield -Patriots -LeBron James -Patriots -Patriots -Florida shooting -Government shutdown 2018 -Wilder Penfield -State of the Union -Luke Wilson -Winter Olympics -Kesha Grammy -What Time Is The Super Bowl -Kylie Jenner -Super Bowl score -Sergei Eisenstein -Grammys 2018 -Elon Musk -Patriots -Sergei Eisenstein -Florida shooting -Scandal -blue alert -Super Bowl 2018 -What Time Is The Super Bowl -Super Bowl Commercials 2018 -Farmers Insurance Open 2018 -Sergei Eisenstein -Wilder Penfield -Warren Miller -Kodak Black -Larry Nassar -Super Bowl score -Virginia Woolf -School Closings -Terrell Owens -Gianni Versace -Did the Groundhog See His Shadow -Patriots -Elizabeth Blackwell -National Pizza Day -Government shutdown -Grammys 2018 -Virginia Woolf -State of the Union -Phantom Thread -Cavs -Justin Timberlake -Johnny Weir -Elizabeth Blackwell -XFL -Drake -Kylie Jenner Baby Girl -Virginia Woolf -Ash Wednesday -Patriots -Wilder Penfield -Elizabeth Blackwell -Sergei Eisenstein -Lee Miglin -Dwyane Wade -Wilder Penfield -What Time Is The Super Bowl -Super Bowl Commercials -Florida shooting -Super Bowl score -Florida shooting -Chicago West -SpaceX -Carter G. Woodson -Rasual Butler -Sergei Eisenstein -Winter Olympics -Quentin Tarantino -Justin Timberlake -Super Bowl 2018 -Tessa Virtue -Luke Wilson -Robert Wagner -Olympic Medal Count -Groundhog Day 2018 -Melania Trump -Groundhog Day 2018 -Emily Sweeney -Grammys 2018 -Elizabeth Blackwell -SpaceX -Kylie Jenner -Netflix Stock -Chinese New Year 2018 -Kylie Jenner -Solo Trailer -SpaceX -Dennis Edwards -12 Strong -Paula Modersohn-Becker -Hope Hicks -Super Blue Blood Moon -Carter G. Woodson -Super Bowl 2018 -Carter G. Woodson -New England Patriots owner -Celtics -Royal Rumble 2018 -Manchester United -Carter G. Woodson -Shaun White -Virginia Woolf -Super Bowl score -Elizabeth Blackwell -Dwyane Wade -New England Patriots owner -Super Bowl 2018 halftime show -Megan Barry -Champions League -Wilder Penfield -Terrell Owens -What Time Is The Super Bowl -Florida shooting -Elizabeth Blackwell -Halsey -Mexico earthquake -Sergei Eisenstein -Bitcoin Price -Super Bowl score -Russell Wilson -Bitcoin Price -NBA Trades -Carter G. Woodson -Fredo Santana -Wilder Penfield -Paula Modersohn-Becker -weather tomorrow -Luke Wilson -Justin Timberlake -Justin Timberlake -Google Drive -NASCAR -Reg E Cathey -Joe Kennedy -Super Bowl score -Sergei Eisenstein -SpaceX -Black Panther -Memo -Elizabeth Blackwell -UFC 221 -Super Bowl 2018 -Super Bowl 2018 -Virginia Woolf -Kylie Jenner -Alessia Cara -Super Bowl 2018 -Virginia Woolf -Michigan State -Super Bowl Commercials -Joe Kennedy -Valentines Day -Carter G. Woodson -Super Bowl 2018 -Carter G. Woodson -Vikings Vs Eagles -Incredibles 2 -Super Bowl score -Oscar Nominations 2018 -Red Gerard -Vikings vs Eagles -Den of Thieves -CNN -Ted Bundy -Paula Modersohn-Becker -Shaun White -Elizabeth Blackwell -Elizabeth Blackwell -Pro Bowl 2018 -NBA Trades -Luke Wilson -Dennis Edwards -Tara Lipinski -Google Classroom -Super Bowl score -Carter G. Woodson -Patriots -Blake Griffin -Happy Valentines Day -Groundhog Day 2018 -School closings -Florida shooting -Super Bowl score -NHL All Star Game -Kylie Jenner -Peter Rabbit -school closings -Mark Salling -Rasual Butler -Carter G. Woodson -Sergei Eisenstein -Kylie Jenner -Patriots -Patriots -Shaun White -Paula Modersohn-Becker -Winter Olympics -Megan Barry -SpaceX -Justin Timberlake -Kylie Jenner -Adam Hicks -Justin Timberlake -Justin Timberlake -Patriots -Omarosa -Blake Griffin Trade -Paula Modersohn-Becker -Alison Brie -Sergei Eisenstein -Kim Kardashian -Olympic medal count -Patriots -Ash Wednesday -stock market -Wilder Penfield -Elizabeth Blackwell -Devin Nunes -Kylie Jenner -All Star Weekend 2018 -Florida shooting -Betty White -Robby Anderson -Kim Cattrall -Chris Paul -Carter G. Woodson -Sergei Eisenstein -Jen Selter -Sergei Eisenstein -Puppy Bowl 2018 -Super Bowl score -H&r Block -NBA Trades -Sergei Eisenstein -Vikings Vs Eagles -Larry Nassar -Dennis Edwards -Shaun White -Florida shooting -AFC Championship Game 2018 -Paula Modersohn-Becker -Groundhog Day 2018 -Sergei Eisenstein -Cavs -Elizabeth Blackwell -Carter G. Woodson -SpaceX -Virginia Woolf -Kelly Clark -Red Gerard -Super Bowl score -Google Drive -Elizabeth Blackwell -Carter G. Woodson -Google Classroom -Elizabeth Blackwell -Alaska earthquake -Sergei Eisenstein -Sergei Eisenstein -Royal Rumble 2018 -Childish Gambino -Sergei Eisenstein -Dwyane Wade -Carter G. Woodson -Happy Valentines Day -Cavs -What Time Is The Super Bowl -Ursula Le Guin -Sergei Eisenstein -Oscar Nominations 2018 -Culture 2 -Wilder Penfield -Grammys 2018 -Wilder Penfield -Dwyane Wade -Elton John -Julie Bowen -Memo -Super Bowl score -Florida shooting -Call Me by Your Name -Paula Modersohn-Becker -Paula Modersohn-Becker -National Pizza Day -Wilder Penfield -Oscar Nominations 2018 -Kylie Jenner -Virginia Woolf -Florida shooting -Senior Bowl -Edible Arrangements -AR-15 -State of the Union -Elizabeth Blackwell -What Time Is The Super Bowl -Sergei Eisenstein -Grammys 2018 -Solo Trailer -Justin Timberlake -Super Bowl score -Super Bowl score -Florida shooting -Drake -Super Bowl score -Carter G. Woodson -Super blue blood Moon -SpaceX -Once Upon a Time -Virginia Woolf -Super Bowl 2018 -Did the Groundhog See His Shadow -Tammy Duckworth -Sergei Eisenstein -Sergei Eisenstein -Tom Brady -Grammys 2018 -Justin Timberlake -Alaska earthquake -Justin Timberlake -Olympic Medal Count -Florida shooting -Trump Hair -Grammys 2018 -Kesha -Kylie Jenner -Black Panther -Larry Nassar -stock market -Early Man -Kim Kardashian -Patriots -Virginia Woolf -Carter G. Woodson -Virginia Woolf -Winter Olympics -Kodak Black -Mikaela Shiffrin -Super Bowl score -Sandy Hook -Super Bowl score -Super Bowl score -Kylie Jenner -Google docs -Elizabeth Blackwell -Uma Thurman -Google docs -Justin Timberlake -Super Bowl 2018 -Brie Larson -Portia de Rossi -Virginia Woolf -Happy Valentines Day -Emily Sweeney -School Closings -Wilder Penfield -Ash Wednesday -Bruno Mars -Elton John -State of the Union -North Korean cheerleaders -Super Bowl 2018 -Super Bowl score -Carter G. Woodson -Super blue blood Moon -Valentines Day -Chloe Kim Snowboarder -Super Bowl 2017 -Elizabeth Blackwell -Virginia Woolf -Blake Griffin -Duke Basketball -Carter G. Woodson -Elizabeth Blackwell -Florida shooting -Justin Timberlake -Steven Tyler -Wilder Penfield -Vikings vs Eagles -Justin Timberlake -Super Bowl 2018 -Jennifer Aniston -Quincy Jones -Wilder Penfield -Winter Olympics -Ann Curry -Bode Miller -Sergei Eisenstein -AFC Championship Game 2018 -NBA Trades -New England Patriots owner -Josh McDaniels -Sergei Eisenstein -Robert Wagner -SpaceX -Bob Marley -Government Shutdown Meaning -Tyler Hilinski -Chicago Weather -Mikaela Shiffrin -Katie Couric -Wilder Penfield -Paula Modersohn-Becker -SpaceX -Paula Modersohn-Becker -Paula Modersohn-Becker -Robert Wagner -Google Drive -Red Gerard -Larry Nassar -Florida shooting -Mardi Gras 2018 -Wilder Penfield -NBA Trades -Anastasia Bryzgalova -Florida shooting -Justin Timberlake -Grammys 2018 -Sergei Eisenstein -Super Bowl score -Super Bowl score -Women's March 2018 -Virginia Woolf -Sergei Eisenstein -Isaiah Thomas -Super Bowl score -Adam Rippon -Sergei Eisenstein -Winter Olympics -UFC 220 -Elizabeth Blackwell -Patriots -Elizabeth Blackwell -DeMarcus Cousins -Grammys 2018 -Kentucky shooting -Taiwan Earthquake Today -Patriots -Oscar Nominations 2018 -Sergei Eisenstein -Carter G. Woodson -Justin Timberlake -Oscar Nominations 2018 -Super Bowl score -national signing day 2018 -Peter Rabbit -What Time Is The Super Bowl -Dolly Parton -national signing day 2018 -Super Bowl score -Super Bowl 2018 -Kevin Love -Florida shooting -Justin Timberlake -Paula Modersohn-Becker -Release The Memo -State of the Union -SpaceX -Super blue blood Moon -Real Madrid -Olympic medal count -Rob Delaney -Chloe Kim -Winter Olympics -Sergei Eisenstein -Paula Modersohn-Becker -Oscar Nominations 2018 -Josh McDaniels -Carter G. Woodson -Groundhog Day 2018 -Brynn Cameron -Vince McMahon -Kylie Jenner -XFL -Sergei Eisenstein -Elizabeth Blackwell -Sergei Eisenstein -Winter Olympics -Black Panther -School closings -Cedi Osman -Patriots -Fredo Santana -Government Shutdown -Carter G. Woodson -Kirstjen Nielsen -Vanessa Marcil -Elizabeth Blackwell -Justin Timberlake -Den of Thieves -Cavs -Grammys 2018 -Jo Jo White -Super Bowl 2018 -Wilder Penfield -Patriots -Memo -What Time Is The Super Bowl -Carter G. Woodson -Paula Modersohn-Becker -Pink -Tiger Woods -Virginia Woolf -Government shutdown 2018 -Sergei Eisenstein -Government Shutdown -Justin Timberlake -Patriots -Virginia Woolf -Super Bowl score -Sergei Eisenstein -Megan Barry -Sergei Eisenstein -Alaska earthquake -Rasual Butler -Red Gerard -Quincy Jones -Google Classroom -Florida shooting -SpaceX -Patriots -Florida shooting -The First Purge -Kylie Jenner -NFC Championship Game 2018 -Terrell Owens -Patriots -Patriots -Bradie Tennell -Samson -Winter Olympics -Super Bowl 2018 -Sergei Eisenstein -Michigan State -Childish Gambino -Super blue blood Moon -Rasual Butler -Ash Wednesday -Cbs -Robinhood -School closings -Lady Gaga -Den of Thieves -Ursula Le Guin -Josh McDaniels -Oscar Nominations 2018 -Lady Bird -Sergei Eisenstein -Winter Olympics -Larry Nassar -Elizabeth Blackwell -12 Strong -Shaun White -Florida shooting -Wilder Penfield -Wilder Penfield -Mark Salling -Super Bowl score -LeBron James -Champions League -Did the Groundhog See His Shadow -Dolly Parton -Florida shooting -Tom Petty -Paula Modersohn-Becker -Cloverfield Paradox -Google Drive -Kylie Jenner -Omarosa -Blue Moon -Super Bowl score -Omarosa -Super Bowl 2018 -Vanessa Trump -Carter G. Woodson -Super Bowl score -Lonzo Ball -Norovirus -Elizabeth Blackwell -Virginia Woolf -Paula Modersohn-Becker -State of the Union -Sergei Eisenstein -Paula Modersohn-Becker -Florida shooting -Bitcoin Price -Joe Kennedy -Lil Pump -Brie Larson -Super Bowl score -Florida shooting -Florida shooting -NBA Trades -Patriots -Black Panther -Justin Timberlake -Justin Timberlake -Sergei Eisenstein -Super Blue Blood Moon -Tammy Duckworth -Sergei Eisenstein -Russell Wilson -Natalie Wood -Super Bowl 2018 -Patriots -Vanessa Trump -Chinese New Year 2018 -Winter Olympics -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl score -Alessia Cara -Mavic Air -SAG Awards 2018 -Patriots -Peter Rabbit -Google Classroom -Government Shutdown -Chicago Weather -State of the Union -Carter G. Woodson -Sergei Eisenstein -Paula Modersohn-Becker -Super Bowl score -Patriots -The 15:17 to Paris -Yu Darvish -Super blue blood Moon -Carter G. Woodson -Super Bowl 2018 -Wilder Penfield -Kylie Jenner -Oscar Nominations 2018 -SpaceX -Super Bowl 2018 -What Time Is The Super Bowl -Vikings Vs Eagles -Patriots -SpaceX -Vikings Vs Eagles -earthquake -Chicago West -Super Bowl 2018 -SpaceX -Super Bowl score -Kesha -Memo -Shiffrin -Super Bowl score -Justin Timberlake -Grammys 2018 -Steve Mcnair -calculator -Mardi Gras 2018 -Celebrity Big Brother cast -Wilder Penfield -Columbine -Florida shooting -Bitcoin Price -Robert Wagner -Patriots -Virginia Woolf -Vikings Vs Eagles -calculator -Super Blue Blood Moon -Ursula Le Guin -Steve Wynn -Fifty Shades Freed -Carter G. Woodson -Josh McDaniels -Government shutdown -Kim Kardashian -Dennis Edwards -Patriots -Dwyane Wade -Tammy Duckworth -Paula Modersohn-Becker -CNN -Justin Timberlake -Super Bowl Winners -Call Me by Your Name -Solo Trailer -Super Bowl score -NBA Trades -Chicago Weather -Paula Modersohn-Becker -Larry Nassar -Grey's Anatomy -Grammys 2018 -Montreal Cognitive Assessment -Royal Rumble 2018 -Super Bowl score -Trey Gowdy -Chipper Jones -Google Classroom -National Pizza Day -Wilder Penfield -Bitcoin Price -Winter Olympics -Government Shutdown 2018 -Wilder Penfield -Carter G. Woodson -Chipper Jones -Trump State of the Union -Sergei Eisenstein -SpaceX -Olympic Medal Count -Lena Zawaideh -Obama portrait -Mardi Gras 2018 -Florida shooting -Carter G. Woodson -Virginia Woolf -Sergei Eisenstein -Super Bowl score -Sergei Eisenstein -State of the Union -Malcom Butler -Wilder Penfield -Early Man -Trump State of the Union -Grammys 2018 -Ncaa Basketball Top 25 -Mark Salling -Oscar Nominations 2018 -SpaceX -Justin Timberlake -Paula Modersohn-Becker -Valentines Day -Elizabeth Blackwell -Childish Gambino -Yahoo Finance -Winter Olympics -Black Panther -Grammys 2018 -Nadal -Kentucky shooting -Royal Rumble 2018 -Mavic Air -Carter G. Woodson -Government Shutdown -Fredo Santana -State of the Union -Super Bowl Commercials -SpaceX -Winter Olympics -Florida shooting -Super Bowl score -Florida shooting -Justin Timberlake -Winter Olympics -Black Panther -Virginia Woolf -Sergei Eisenstein -Kentucky shooting -Sergei Eisenstein -SpaceX -Happy Valentines Day -Paula Modersohn-Becker -Lunar eclipse -Puppy Bowl 2018 -Sergei Eisenstein -Bitcoin Price -Cnbc -Carter G. Woodson -Ar 15 -Winter Olympics -Maze Runner: The Death Cure -What Time Is The Super Bowl -Florida shooting -Carter G. Woodson -Elizabeth Blackwell -Paula Modersohn-Becker -Virginia Woolf -Jemele Hill -Wilder Penfield -Government Shutdown -Kylie Jenner -Shaun White -Get Out -What Time Is The Super Bowl -Winter Olympics -Joe Kennedy -Wilder Penfield -Wilder Penfield -Paula Modersohn-Becker -Bitcoin Price -John Mahoney -Sergei Eisenstein -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl 2018 -Elizabeth Blackwell -James Baldwin -NBA Trades -Sergei Eisenstein -Google Classroom -School closings -Oscar Nominations 2018 -Winter Olympics -Rasual Butler -Kim Kardashian -Patti LuPone -Carter G. Woodson -Isaiah Canaan -Larry Nassar -Kylie Jenner Baby Girl -Groundhog Day 2018 -Super Bowl score -This Is Us -Sergei Eisenstein -AFC Championship Game 2018 -Super Bowl 2018 -Brie Larson -Elizabeth Blackwell -Groundhog Day 2018 -Matt Czuchry -Hailee Steinfeld -Quincy Jones -SpaceX -Morgan Freeman -Sergei Eisenstein -Virginia Woolf -school closings -Terrell Owens -Elizabeth Blackwell -Olympic medal count -Sergei Eisenstein -Mark Salling -Carter G. Woodson -Virginia Woolf -SpaceX -Taiwan Earthquake Today -Government Shutdown -Paula Modersohn-Becker -Pro Bowl 2018 -Adam Rippon -Florida shooting -Government Shutdown Meaning -Carter G. Woodson -Meteor -Paula Modersohn-Becker -Elizabeth Blackwell -NHL All Star Game -Gianni Versace -Sergei Eisenstein -Amy Schumer -Wilder Penfield -What Time Is The Super Bowl -Den of Thieves -SpaceX -Elizabeth Blackwell -Sergei Eisenstein -Olivia Munn -State of the Union -Super Bowl 2018 -Wilder Penfield -Tyler Hilinski -CNN -Patriots -Florida shooting -Groundhog Day 2018 -Chicago West -NBA Trades -Virginia Woolf -Oscar Nominations 2018 -Patriots -Super blue blood Moon -Florida shooting -Patty Hearst -Florida shooting -Black Panther -Super Bowl 2018 -Mark Salling -Wilder Penfield -Super Bowl 2018 -Super Bowl 2018 -Mike Tomlin -Aaron Fies -What Time Is The Super Bowl -Maze Runner: The Death Cure -Paula Modersohn-Becker -Solo Trailer -XFL -Kylie Jenner -Bradie Tennell -Super Bowl 2018 -Florida shooting -Valentine's Day -Netflix Stock -Wilder Penfield -Shaun White -Winter Olympics -Shaun White -Super Bowl 2018 -Elizabeth Blackwell -Jennifer Aniston -Justin Timberlake -Jennifer Aniston -Mardi Gras 2018 -Florida shooting -Super blue blood Moon -Super Bowl Commercials 2018 -Virginia Woolf -XFL -State of the Union -New England Patriots owner -Oscar Nominations 2018 -Super Bowl score -Patriots -Super Bowl 2018 -Grammys 2018 -Paul Ryan -Super Bowl 2018 -Patti LuPone -Justin Timberlake -Dwyane Wade -Super Bowl 2018 -Shaun White -Pro Bowl 2018 -Kylie Jenner -Winter Olympics -Florida shooting -Carter G. Woodson -Elton John -Steve Wynn -Justin Timberlake -Carter G. Woodson -Blue Ivy -SpaceX -Patriots -Florida shooting -Super Bowl 2018 -Valentines Day Cards -Justin Timberlake -Olympic Medal Count -Danielle Herrington -Kylie Jenner -JUUL -Pro Bowl 2018 -Patriots -Camila Cabello -Chris Fischer -Groundhog Day 2018 -Edwin Jackson -Happy Valentines Day -Deadpool 2 -What Time Is The Super Bowl -Carter G. Woodson -Florida shooting -Did the Groundhog See His Shadow -Sea Of Thieves -Justin Timberlake -Government Shutdown -Chris Paul -Super Bowl score -Kristaps Porzingis -Wilder Penfield -Sergei Eisenstein -Florida shooting -Sergei Eisenstein -Carter G. Woodson -Patti LuPone -Mark Salling -Immaculate Conception -Carter G. Woodson -Wilder Penfield -Florida shooting -Celtics -Happy Valentines Day -What Time Is The Super Bowl -Sarah Barthel -Kylie Jenner -Cloverfield Paradox -Lady Bird -Florida shooting -Pyeongchang 2018 Olympic Winter Games -Sergei Eisenstein -Super Bowl score -Super Bowl 2018 -Virginia Woolf -Carter G. Woodson -Florida shooting -Winter Olympics -Andrew Cunanan -Carter G. Woodson -Hostiles -Super Bowl score -Maze Runner: The Death Cure -Grammys 2018 -Taiwan Earthquake Today -Bitcoin Price -Wilder Penfield -Jessica Chastain -Dow Jones -Paula Modersohn-Becker -Gods Plan -United States Postal Service -SpaceX -NFL Honors -Eli Manning -Super Bowl 2018 -Carter G. Woodson -NBA Trades -Cherry Seaborn -Kim Kardashian -Justin Timberlake -Grammys 2018 -Solo Trailer -Wilder Penfield -Paula Modersohn-Becker -Meteor -Super Bowl score -Super Bowl score -Elizabeth Blackwell -Dwyane Wade -Kevin Love -Virginia Woolf -Virginia Woolf -Winter Olympics -Sea Of Thieves -State of the Union -Tom Brady daughter -Edwin Jackson -Yahoo Finance -What Time Is The Super Bowl -Happy Valentines Day -Olympic Medal Count -Shaun White -Virginia Woolf -Dow Jones -Super Bowl score -Neil Diamond -stock market -Wilder Penfield -Bitcoin Price -Mark Salling -Patriots -Juventus -Wilder Penfield -Wilder Penfield -Bitcoin Price -Super blue blood Moon -Groundhog Day 2018 -Wilder Penfield -XFL -Carter G. Woodson -Winter Olympics -Super Bowl 2018 -Patriots -Winter Olympics -Super Bowl score -SpaceX -Grammys 2018 -Royal Rumble 2018 -Shaun White -Megan Barry -Black Panther -Super Bowl score -NBC Sports -Dwyane Wade -Paula Modersohn-Becker -Larry Nassar -Virginia Woolf -Government Shutdown -Super Bowl score -Wilder Penfield -School Closings -Bitcoin Price -Real Madrid -Kawhi Leonard -Virginia Woolf -Dow Jones -Did the Groundhog See His Shadow -Patriots -Carter G. Woodson -Larry Nassar -Carter G. Woodson -Childish Gambino -Winter Olympics -Government Shutdown -Paula Modersohn-Becker -Black Panther -Toys R Us -Did the Groundhog See His Shadow -Devin Nunes -Obama portrait -Josh McDaniels -Mardi Gras 2018 -Grammys 2018 -Kylie Jenner -Grammys 2018 -Nathan Chen -Dow Jones -Joe Kennedy -Winter Olympics -Super Bowl 2018 -Government Shutdown -Patriots -Carter G. Woodson -OKC Thunder -Pro Bowl 2018 -Super Bowl score -New England Patriots owner -Mark Salling -Vikings vs Eagles -Government Shutdown -Paula Modersohn-Becker -Paula Modersohn-Becker -Ursula Le Guin -Sergei Eisenstein -Paula Modersohn-Becker -Larry Nassar -Winter Olympics -Josh McDaniels -Walter Payton -Ronaldinho -Super Bowl 2018 -Government Shutdown Meaning -Sergei Eisenstein -Memo -Super Bowl 2018 -Elizabeth Blackwell -Solo Trailer -Aaron Feis -Edwin Jackson -Markelle Fultz -Sergei Eisenstein -Markelle Fultz -Super Bowl 2018 -Dog Food Recall -Yoel Romero -Elton John -Ash Wednesday -Outback Steakhouse -Lauren Davis -Obama portrait -Mikaela Shiffrin -Adam Rippon -What Time Is The Super Bowl -Taiwan Earthquake Today -Jennifer Aniston -Paula Modersohn-Becker -Chris Stapleton -Super Bowl score -Elizabeth Blackwell -Vikings Vs Eagles -Super Bowl 2018 halftime show -United States Of America Winter Olympics -Florida shooting -Sergei Eisenstein -Carter G. Woodson -Winter Olympics -Grammys 2018 -Stan Lee -Paula Modersohn-Becker -Black Panther -Bitcoin Price -Kylie Jenner -National Pizza Day -Elizabeth Blackwell -Elizabeth Blackwell -Celtics -Justin Timberlake -Patriots -Florida shooting -Winter Olympics -Jessica Biel -Florida shooting -Patriots -New California -Justin Timberlake -Zion Williamson -Elizabeth Blackwell -Virginia Woolf -Fredo Santana -Florida shooting -Winter Olympics -State of the Union -Blood Moon -Dow Jones -Florida shooting -Isaiah Thomas -Grammys 2018 -Sergei Eisenstein -Paula Modersohn-Becker -Groundhog Day 2018 -Kylie Jenner -Kylie Jenner -Sergei Eisenstein -Childish Gambino -Justin Timberlake -Florida shooting -Patriots -Super Bowl 2018 -Sergei Eisenstein -Friends movie -Aaron Fies -The 15:17 to Paris -Super Bowl 2018 -Sergei Eisenstein -Super blue blood Moon -Carter G. Woodson -Larry Nassar -Super blue blood Moon -Wilder Penfield -Doomsday Clock -Elizabeth Blackwell -Justin Timberlake -Sergei Eisenstein -Kylie Jenner -Anna Kournikova -NBA Trades -Did the Groundhog See His Shadow -What Time Is The Super Bowl -Super Bowl score -Wilder Penfield -Valentines Day -Winter Olympics -Paula Modersohn-Becker -Samson -Patriots -Patti LuPone -Winter Olympics -Larry Nassar -Sergei Eisenstein -Kylie Jenner -Government Shutdown -Altered Carbon -Winter Olympics -Super Bowl 2018 -Alessia Cara -Meteor -Jason Kidd -Sergei Eisenstein -Virginia Woolf -Government Shutdown Meaning -national signing day 2018 -Waco -Super Bowl 2018 -Grammys 2018 -Carter G. Woodson -Wilder Penfield -SpaceX -Justin Timberlake -Zion Williamson -Groundhog Day 2018 -Florida shooting -Heath Ledger -Black Panther -Super Bowl score -Super Blue Blood Moon -Patriots -Elizabeth Blackwell -SpaceX -Carter G. Woodson -Super Bowl 2018 -Carter G. Woodson -Sergei Eisenstein -Wilder Penfield -Oscar Nominations 2018 -Gods Plan -Justin Timberlake -Super Bowl 2018 -Samson -Grammys 2018 -Super Bowl 2018 -NFL Honors -Larry Nassar -Elton John -Samson -Florida shooting -Paula Modersohn-Becker -Valentines Day -Elizabeth Blackwell -Grammys 2018 -Super Bowl 2018 -National Pizza Day -Lindsey Vonn -Walter Payton -Patriots -Super blue blood Moon -Government shutdown -Grammys 2018 -Memo -Government shutdown 2018 -Carter G. Woodson -Omarosa -The Alienist -tsunami -Mikaela Shiffrin -This Is Us -Dwyane Wade -Vanessa Trump -Ash Wednesday -H&r Block -Elizabeth Blackwell -Winter Olympics -Jessica Chastain -Black Panther -Paula Modersohn-Becker -Super blue blood Moon -XFL -Riverdale -Gods Plan -Mark Salling -Chinese New Year 2018 -Florida shooting -SpaceX -Tom Brady daughter -Sergei Eisenstein -Carter G. Woodson -Dwyane Wade -Russell Wilson -Google Drive -Elizabeth Blackwell -Greg Monroe -Patriots -Google Drive -Patriots -Virginia Woolf -Paula Modersohn-Becker -Daytona 500 -Kylie Jenner Baby Girl -State of the Union -Elizabeth Blackwell -Florida shooting -Despacito -Florida shooting -Shaun White -Cloverfield Paradox -Happy Valentines Day -Government Shutdown -Florida shooting -Elizabeth Blackwell -Super Bowl Commercials 2018 -Steven Tyler -Lindsey Vonn -Ash Wednesday -Tesla in space -Super blue blood Moon -Pro Bowl 2018 -Dwyane Wade -Gianni Versace -Larry Nassar -Ronaldinho -What Time Is The Super Bowl -Bitcoin Price -Larry Nassar -Grammys 2018 -State of the Union -Super Bowl 2018 -SpaceX -This Is Us -Atlanta Weather -Super Bowl score -Virginia Woolf -Sergei Eisenstein -Patriots -Betty White -SAG Awards 2018 -Pro Bowl 2018 -State of the Union -Alex Reimer -Government Shutdown Meaning -Aaron Fies -Sergei Eisenstein -Winter Olympics -Deadpool 2 -stock market -Chris Long -Shaun White -Super Bowl score -Jennifer Aniston -Government Shutdown -Isaiah Thomas -Super Bowl score -United States Of America Winter Olympics -Elton John -Paula Modersohn-Becker -Government shutdown 2018 -Robert Wagner -Sergei Eisenstein -Grammys 2018 -Alexa Commercial -Elizabeth Blackwell -Classroom -Rodney Hood -Altered Carbon -Wilder Penfield -Celebrity Big Brother cast -Wilder Penfield -Wilder Penfield -Super Bowl score -Real Madrid -Dwyane Wade -Florida shooting -Winter Olympics -Elizabeth Blackwell -Aaliyah -Royal Rumble 2018 -Chicago West -Oscar Nominations 2018 -Virginia Woolf -Jennifer Aniston -Dow Jones -Super Bowl score -Paula Modersohn-Becker -Paula Modersohn-Becker -Tonga -Matt Patricia -Elton John -Sergei Eisenstein -Nba All Star 2018 -Justin Timberlake -Grammys 2018 -Virginia Woolf -Florida shooting -Patriots -Elizabeth Blackwell -Larry Nassar -What Time Is The Super Bowl -Esteban Loaiza -Nba All Star 2018 -Florida shooting -school closings -Wilder Penfield -Sergei Eisenstein -Paula Modersohn-Becker -Rasual Butler -Sergei Eisenstein -Sergei Eisenstein -Super Bowl score -SAG Awards 2018 -Dow Jones -Carter G. Woodson -Vikings Vs Eagles -Super Bowl score -Wilder Penfield -Super Bowl score -Justin Timberlake -Wilder Penfield -Carter G. Woodson -What Time Is The Super Bowl -Dwyane Wade -Lindsey Vonn -Football Playoffs 2018 -DeMarcus Cousins -Super Bowl score -Florida shooting -Shaun White -Virginia Woolf -XFL -Justin Timberlake -Ash Wednesday -LeBron James -Outback Steakhouse -Patriots -Patriots -Elizabeth Blackwell -Kesha Grammy -UFC 220 -Winter Olympics -Elizabeth Blackwell -Oscar Nominations 2018 -NBA Trades -Super Bowl 2018 -Super Bowl 2018 -Patriots -happy new year in Chinese -Super Bowl score -Winter Olympics -Kylie Jenner -Patriots -Justin Timberlake -Super Bowl 2018 halftime show -Sergei Eisenstein -Oscar Nominations 2018 -Elizabeth Blackwell -Super Bowl score -Super Bowl score -Patriots -Patriots -Patriots -Winter Olympics -Elizabeth Blackwell -State of the Union -earthquake -Carter G. Woodson -Super Bowl score -Virginia Woolf -Paula Modersohn-Becker -New England Patriots owner -Grammys 2018 -Florida shooting -Paula Modersohn-Becker -Florida shooting -Jennifer Aniston -Chris Mazdzer -Government Shutdown -Slender Man -This is Us -Ohio State basketball -Sergei Eisenstein -Mardi Gras 2018 -Elizabeth Blackwell -Virginia Woolf -Carter G. Woodson -Winter Olympics -Carter G. Woodson -Shaun White -Patriots -Maria Menounos -Atlanta Weather -Women's March 2018 -Carter G. Woodson -Westerville Ohio -Elizabeth Blackwell -Groundhog Day 2018 -Patriots -Sergei Eisenstein -State of the Union -Lady Bird -Josh McDaniels -Kylie Jenner -Super Bowl score -Winter Olympics -Paula Modersohn-Becker -Alison Brie -Cavs -Super Bowl score -Wilder Penfield -Sarah Barthel -Google Classroom -Valentines Day Cards -Paula Modersohn-Becker -Sergei Eisenstein -Rob Delaney -school closings -Chicago West -Government Shutdown -Super Bowl 2018 -What Time Is The Super Bowl -Super Bowl 2018 -Kevin Durant -Virginia Woolf -Dane Cook -Olivia Culpo -Grammys 2018 -Walter Payton -Carter G. Woodson -Kentucky shooting -Kentucky shooting -Patriots -Tonga -Super Bowl 2018 -Vikings Vs Eagles -Oscar Nominations 2018 -Peter Rabbit -Carter G. Woodson -Super Bowl score -Jason Kidd -Super Bowl 2018 -Chinese New Year 2018 -Sergei Eisenstein -Patriots -SAG Awards 2018 -Super Bowl score -Elizabeth Blackwell -Chloe Kim -James Harden -Bitcoin Price -Government Shutdown Meaning -Tiger Woods -United States Of America Winter Olympics -Grammys 2018 -Virginia Woolf -Elizabeth Blackwell -Virginia Woolf -Elizabeth Blackwell -Did the Groundhog See His Shadow -Solo Trailer -Elizabeth Blackwell -Sergei Eisenstein -Winchester -Justin Timberlake -Nba All Star Draft -Robert Wagner -The Alienist -Sergei Eisenstein -Alaska earthquake -Winter Olympics -SpaceX -Virginia Woolf -National Pizza Day -Sergei Eisenstein -Kim Kardashian -Olympic medal count -Super Bowl score -Larry Nassar -Super Bowl Commercials 2018 -Chicago West -Carter G. Woodson -Winter Olympics -Elizabeth Blackwell -NBA Trades -Vanessa Trump -Olympics 2018 -Danielle Herrington -Wilder Penfield -Edible Arrangements -Carter G. Woodson -Kylie Jenner -Bitcoin Price -Patriots -Elizabeth Blackwell -Virginia Woolf -Simona Halep -Cnbc -Groundhog Day 2018 -Winter Olympics -Florida shooting -Super Bowl 2018 halftime show -Mardi Gras 2018 -Grammys 2018 -Trump State of the Union -SpaceX -Wilder Penfield -Andrew Cunanan -Super Bowl 2018 -NBA Trades -Super Bowl 2018 -What Time Is The Super Bowl -Carter G. Woodson -Winter Olympics -Grammys 2018 -Florida shooting -Solo Trailer -XFL -Justin Timberlake -Government shutdown 2018 -Blake Griffin -Wilder Penfield -Duke Basketball -Super blue blood Moon -SpaceX -Elizabeth Blackwell -Wilder Penfield -Super Bowl Commercials 2018 -Wilder Penfield -Altered Carbon -Memo -Super Bowl score -Despacito -BitConnect -Dow Jones -XFL -Women's March 2018 -Winter Olympics -NBA Trades -Westerville Ohio -Sergei Eisenstein -Super Bowl score -Paula Modersohn-Becker -State of the Union -Sea Of Thieves -Carter G. Woodson -Super Bowl score -Florida shooting -Wilder Penfield -Black Panther -Super Bowl 2018 -Justin Timberlake -United States Of America Winter Olympics -Lady Bird -Shaun White -Patriots -CNN -Westminster Dog Show 2018 -The Home Depot -Carter G. Woodson -calculator -United States Postal Service -Sergei Eisenstein -Super Bowl 2018 -State of the Union -Early Man -When We First Met -Josh McDaniels -Scott Baio -Johnny Weir -Justin Timberlake -Patriots -Westminster Dog Show 2018 -Maddie Mastro -Jamie Anderson -Super Bowl 2018 -Elizabeth Blackwell -Shaun White -Scott Baio -Lari White -Super Bowl 2018 -Did the Groundhog See His Shadow -Winter Olympics -Shaun White -Wilder Penfield -Justin Timberlake -Super Bowl score -Grammys 2018 -Obama portrait -SAG Awards 2018 -Wilder Penfield -Patriots -Government Shutdown Meaning -NBA Trades -Justin Timberlake -Patriots -Larry Nassar -Maria Menounos -Super Bowl score -Paula Modersohn-Becker -school closings -Winter Olympics -Super Bowl 2018 -Wilder Penfield -Shaun White -Elizabeth Blackwell -Jennifer Aniston -Grammys 2018 -Kim Kardashian -Florida shooting -Samson -Sabrina Dhowre -Super Bowl 2018 -Rob Porter -What Time Is The Super Bowl -Duke basketball -Josh McDaniels -Google Classroom -Google Classroom -Super Bowl 2018 -What Time Is The Super Bowl -What Time Is The Super Bowl -Kim Kardashian -Chicago West -Super Bowl score -XIV -Yahoo Finance -Celebrity Big Brother cast -Vikings Vs Eagles -Patriots -Winter Olympics -Florida shooting -Patti LuPone -Virginia Woolf -Chicago West -Mark Salling -Rasual Butler -Den of Thieves -Carter G. Woodson -Tom Brady -Chloe Kim -Sergei Eisenstein -Tom Brady daughter -Elizabeth Blackwell -Winter Olympics -Kim Cattrall -What Time Is The Super Bowl -Johnny Weir -Patriots -Did the Groundhog See His Shadow -Government Shutdown -Patriots -Trey Gowdy -Betty White -Paula Modersohn-Becker -Sting -Government Shutdown Meaning -Florida shooting -Super blue blood Moon -Hope Hicks -Doomsday Clock -Blue Moon -Virginia Woolf -Happy Valentines Day -AFC Championship Game 2018 -Florida shooting -Florida shooting -Scott Baio -Kentucky shooting -Women's March 2018 -Simona Halep -Wilder Penfield -SpaceX -Super Bowl score -Happy Valentines Day -Den of Thieves -Dennis Edwards -Florida shooting -Winter Olympics -Woody Allen -Super Bowl score -Elizabeth Blackwell -What Time Is The Super Bowl -Camila Cabello -Stormi -Wilder Penfield -Government Shutdown -Royal Rumble 2018 -The Alienist -Scott Baio -Sergei Eisenstein -Chinese New Year 2018 -Adam Rippon -Wilder Penfield -Dow Jones -Mardi Gras 2018 -Vikings Vs Eagles -Sergei Eisenstein -Elizabeth Blackwell -Carter G. Woodson -Grammys 2018 -Grammys 2018 -Rasual Butler -Dwyane Wade -Kesha Grammy -Wilder Penfield -LeBron James -Happy Valentines Day -Sergei Eisenstein -Winter Olympics -SpaceX -What Time Is The Super Bowl -Chief Wahoo -Super Bowl 2018 -National Pizza Day -DeMarcus Cousins -Patriots -Super Bowl 2018 -Wilder Penfield -Pro Bowl 2018 -Justin Timberlake -Trey Gowdy -Alex Smith -February -New England Patriots owner -Happy Valentines Day -Black Panther -Pro Bowl 2018 -Super Bowl score -Mark Salling -Mark Salling -Shibutani -Super Bowl Commercials 2018 -Wilder Penfield -NBA Trades -Sergei Eisenstein -Tesla in space -Elizabeth Blackwell -Super Bowl 2018 -Florida shooting -Chicago Weather -Vanity Fair Cover -Justin Timberlake -Virginia Woolf -Elizabeth Blackwell -Winter Olympics -Florida shooting -New England Patriots owner -Kentucky shooting -Carter G. Woodson -Super Bowl score -Virginia Woolf -Super Bowl score -Larry Nassar -Wilder Penfield -Kylie Jenner -What Time Is The Super Bowl -Super Bowl 2018 -Paula Modersohn-Becker -Florida shooting -Mardi Gras 2018 -Larry Nassar -Super Bowl 2018 -XFL -Justin Timberlake -Florida shooting -Wilder Penfield -Super Bowl score -Lindsey Vonn -Stephanie Katelnikoff -earthquake -SpaceX -SpaceX -Real Madrid -Elizabeth Blackwell -Patriots -Vikings Vs Eagles -Winter Olympics -Grammys 2018 -Grammys 2018 -Winter Olympics -Patty Hearst -Mueller -Mcdonald's -Government Shutdown -Patriots -Jason Kelce -Peter Rabbit -Justin Timberlake -Patriots -Larry Nassar -What Time Is The Super Bowl -Elizabeth Blackwell -Virginia Woolf -Kylie Jenner -Gianni Versace -Memo -Paula Modersohn-Becker -Sergei Eisenstein -Jon Huntsman -Gianni Versace -The 15:17 to Paris -Aaron Feis -Cherry Seaborn -Dow Jones -Grammys 2018 -Chicago Weather -Ash Wednesday -SpaceX -Dow Jones -Vikings Vs Eagles -Winter Olympics -Celebrity Big Brother cast -Google Classroom -Sergei Eisenstein -Black Panther -Justin Timberlake -Paula Modersohn-Becker -Wilder Penfield -Patriots -Cherry Seaborn -What Time Is The Super Bowl -Super blue blood Moon -SpaceX -Steve Wynn -Kentucky shooting -Wilder Penfield -Venom -Lady Doritos -What Time Is The Super Bowl -Happy Valentines Day -DeMarcus Cousins -Lena Zawaideh -Patriots -Florida shooting -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl 2018 -Virginia Woolf -Dow Jones -Elizabeth Blackwell -Dow Jones -Sergei Eisenstein -Elizabeth Blackwell -Super blue blood Moon -Elizabeth Blackwell -Paula Modersohn-Becker -Wilder Penfield -Sergei Eisenstein -What Time Is The Super Bowl -Virginia Woolf -Super Blue Blood Moon -Taiwan Earthquake Today -Oscar Nominations 2018 -Super Bowl Commercials -Super Blue Blood Moon -Government Shutdown Meaning -Patriots -Jason Kelce -SpaceX -Trump State of the Union -Markelle Fultz -Paula Modersohn-Becker -Despacito -Elizabeth Blackwell -Virginia Woolf -Rose McGowan -Mueller -Virginia Woolf -Wilder Penfield -Elon Musk -Oscar Nominations 2018 -Government Shutdown -Sergei Eisenstein -Super Bowl score -Royal Rumble 2018 -SpaceX -Florida shooting -Carter G. Woodson -HomePod -Elizabeth Blackwell -SpaceX -Winter Olympics -Virginia Woolf -Carter G. Woodson -Steven Tyler -SpaceX -Wilder Penfield -Tara Lipinski -Patriots -Memo -Carter G. Woodson -Super Blue Blood Moon -Ash Wednesday -Edwin Jackson -Blake Griffin -Sergei Eisenstein -Ash Wednesday -Super Bowl 2018 -United States Of America Winter Olympics -Sergei Eisenstein -Terrell Owens -Wilder Penfield -Elton John -Enzo Amore -Paula Modersohn-Becker -Grammys 2018 -government shutdown -Larry Nassar -Carter G. Woodson -Super Bowl score -Elizabeth Blackwell -Cloverfield Paradox -Wilder Penfield -Oscar Nominations 2018 -Super Bowl score -Kesha -Super Bowl 2018 -Peter Rabbit -Quincy Jones -Caroline Wozniacki -Government Shutdown Meaning -Florida shooting -Peter Rabbit -Florida shooting -Super blue blood Moon -Winter Olympics -Oscar Nominations 2018 -Kylie Jenner -Trump State of the Union -Florida shooting -Winter Olympics -Deadpool 2 -Virginia Woolf -Winter Olympics -Florida shooting -Mark Salling -Chrissy Teigen -Super Bowl score -Ash Wednesday -Patriots -Groundhog Day 2018 -Bitcoin Price -Patriots -CNN -Carter G. Woodson -Florida shooting -Omarosa -Sergei Eisenstein -Kylie Jenner -Super Bowl score -Deadpool 2 -Sergei Eisenstein -Patriots -Highline College -Super Bowl score -Tyler Hilinski -Blue Ivy -John Mahoney -Rasual Butler -NBA Trades -Rodney Hood -Duke Basketball -Paula Modersohn-Becker -Chloe Kim -Virginia Woolf -Happy Valentines Day -Royal Rumble 2018 -Virginia Woolf -Google Classroom -Winter Olympics -Mark Salling -Winter Olympics -Kylie Jenner -Elizabeth Blackwell -Winter Olympics -Jennifer Aniston -Caroline Wozniacki -Sergei Eisenstein -NBA Trades -Blue Moon -What Time Is The Super Bowl -Florida shooting -Justin Timberlake -Oscar Nominations 2018 -Paul Ryan -Wilder Penfield -Adam Rippon -Wilder Penfield -Rasual Butler -Super Bowl 2018 -Dow Jones -Kylie Jenner -Shaun White -Natalie Wood -Government Shutdown Meaning -Fifty Shades Freed -Jessica Chastain -Mark Salling -Ursula Le Guin -Larry Nassar -Justin Timberlake -Jennifer Aniston -Wilder Penfield -Grammys 2018 -Super blue blood Moon -Luke Wilson -Sal Castro Middle School -Paula Modersohn-Becker -Super Bowl 2018 -Carter G. Woodson -Virginia Woolf -Stan Lee -Super Bowl score -Dennis Edwards -Valentines Day -Florida shooting -Kentucky shooting -Joshua Cooper Ramo -Paula Modersohn-Becker -Larry Nassar -Florida shooting -Kim Kardashian -Mikaela Shiffrin -Michigan State -Government Shutdown -Memo -Justin Timberlake -Government shutdown 2018 -Sergei Eisenstein -Paula Modersohn-Becker -Patriots -United States Postal Service -Florida shooting -Fifty Shades Freed -Carter G. Woodson -Super Bowl score -Elizabeth Blackwell -Peter Rabbit -government shutdown -Virginia Woolf -Patriots -Patriots -Sergei Eisenstein -Grammys 2018 -Otto Warmbier -NBA Trades -Justin Timberlake -Virginia Woolf -Vikings vs Eagles -Mardi Gras 2018 -Florida shooting -Virginia Woolf -What Time Is The Super Bowl -Juegos Olímpicos de Invierno 2018 -Google Classroom -Nba All Star 2018 -Super Bowl 2018 -Florida shooting -Lunar eclipse -Cavs -SZA -Cnbc -Winter Olympics -Sergei Eisenstein -Virginia Woolf -Kim Kardashian -Peter Rabbit -Elizabeth Blackwell -Super Bowl score -Adam Rippon -Elizabeth Blackwell -Camila Cabello -Dow Jones -Trump State of the Union -Paula Modersohn-Becker -Cherry Seaborn -Hope Hicks -Adam Rippon -Super Bowl score -Women's March 2018 -Joe Kennedy -Elon Musk -Dow Jones -Justin Timberlake -Louise Linton -Obama portrait -Gianni Versace -Grammys 2018 -Childish Gambino -Bitcoin Price -Vikings Vs Eagles -Paula Modersohn-Becker -Amazon stock -Celebrity Big Brother cast -Mardi Gras 2018 -Google Drive -Bill Paxton -SpaceX -Kesha -Super Bowl 2018 -Obama portrait -Chris Long -Government Shutdown -Super Bowl 2018 -Government Shutdown -Paula Modersohn-Becker -Mark Salling -Alex Smith -Jessica Chastain -Elizabeth Blackwell -Tammy Duckworth -Super Bowl 2018 -Winter Olympics -Trump State of the Union -Elizabeth Blackwell -Alex Smith -Wilder Penfield -What Time Is The Super Bowl -Venom -Mavic Air -Drive -Kim Kardashian -Florida shooting -Sergei Eisenstein -Grammys 2018 -Fredo Santana -Lindsey Vonn -Carter G. Woodson -Norovirus -Maddie Mastro -Tyler Hilinski -Lunar eclipse -Florida shooting -Florida shooting -What Time Is The Super Bowl -Sergei Eisenstein -State of the Union -Paula Modersohn-Becker -Super Bowl 2018 -Puppy Bowl 2018 -Alex Smith -slides -Florida shooting -Real Madrid -Oscar Nominations 2018 -Grammys 2018 -Chloe Kim -Sergei Eisenstein -Laura Ingraham -Oscar Nominations 2018 -Super Bowl score -Steve Mcnair -Alex Smith -Jamie Anderson -Virginia Woolf -Enzo Amore -Sergei Eisenstein -Winter Olympics -Elizabeth Blackwell -Wilder Penfield -Shaun White -Chris Stapleton -Amy Schumer -Carrie Underwood -Football Playoffs 2018 -NBA Trades -Tesla in space -Patriots -SpaceX -Vikings Vs Eagles -Trump Hair -Government Shutdown Meaning -Childish Gambino -Florida shooting -Jimmy Garoppolo -Government shutdown 2018 -Super blue blood Moon -Super Bowl score -What Time Is The Super Bowl -Justin Timberlake -Vikings Vs Eagles -Tonga -Florida shooting -Megan Barry -Carter G. Woodson -Super Bowl Commercials -Wilder Penfield -Government shutdown -Memo -Cavs -Paula Modersohn-Becker -Amtrak -Sergei Eisenstein -Wilder Penfield -Chloe Kim -Winter Olympics -Super Bowl score -Virginia Woolf -Edwin Jackson -Columbine Shooting -SpaceX -Kim Kardashian -Greg Monroe -Virginia Woolf -Carter G. Woodson -Sergei Eisenstein -Sammy Sosa -Bitcoin Price -Wilder Penfield -Kawhi Leonard -Megan Barry -Sergei Eisenstein -Langston Hughes -Vikings Vs Eagles -Elizabeth Blackwell -Sergei Eisenstein -Government Shutdown -Kylie Jenner -Vikings Vs Eagles -Bitcoin Price -Wilder Penfield -Cherry Seaborn -Paula Modersohn-Becker -Larry Nassar -Laura Ingraham -Rose McGowan -Royal Rumble 2018 -Elizabeth Blackwell -Happy Valentines Day -Winter Olympics -Patriots -Florida shooting -Black Panther -Super Bowl score -Virginia Woolf -Neil Diamond -Cbs -Carter G. Woodson -Wilder Penfield -Virginia Woolf -Kim Kardashian -Sergei Eisenstein -Jason Kelce -Terrell Owens -Blake Griffin -Government Shutdown Meaning -Paula Modersohn-Becker -Mexico Vs Bosnia -Valentines Day Images -Mikaela Shiffrin -Elton John -New England Patriots owner -Tonga -Fred Savage -Uma Thurman -Winter Olympics -Olivia Munn -Wilder Penfield -Wilder Penfield -SpaceX -What Time Is The Super Bowl -Rodney Hood -Chicago West -Florida shooting -SpaceX -Sergei Eisenstein -Justin Timberlake -Sergei Eisenstein -Winchester -Tyler Hilinski -Harley Barber -NBA Trades -Kesha -Super Bowl score -Super Blue Blood Moon -Omarosa -Sal Castro Middle School -Scott Baio -Nba All Star Draft -SpaceX -James Baldwin -DeMarcus Cousins -Venom -Google Classroom -Justin Timberlake -Mark Salling -Wilder Penfield -State of the Union -Florida shooting -Mike Fisher -Patriots -Sergei Eisenstein -Patriots -Kim Kardashian -Kim Cattrall -Sergei Eisenstein -AFC Championship Game 2018 -PlayStation Network -Larry Nassar -Wilder Penfield -SAG Awards 2018 -Tyler Hilinski -Super Bowl 2018 -Sergei Eisenstein -Paula Modersohn-Becker -Larry Nassar -Wilder Penfield -Sea Of Thieves -Larry Nassar -Dennis Edwards -Wilder Penfield -Justin Timberlake -Paula Modersohn-Becker -Patriots -Wilder Penfield -Government Shutdown -Kylie Jenner -Larry Nassar -Super Bowl 2018 -pissant -AR-15 -Google Classroom -State of the Union -Florida shooting -The 15:17 to Paris -Dragon Ball Super -Bradie Tennell -Groundhog Day 2018 -Morgan Freeman -NHL All Star Game -NBA Trades -Super Bowl 2018 -Florida shooting -Elizabeth Blackwell -Morgan Freeman -Patriots -Kodak Black -James Baldwin -Sergei Eisenstein -Virginia Woolf -Paula Modersohn-Becker -Omarosa -Elizabeth Blackwell -John Mahoney -Mark Salling -Google Classroom -Brynn Cameron -Rob Delaney -Best Superbowl Commercials 2018 -SpaceX -SpaceX -Florida shooting -Tyler Hilinski -SAG Awards 2018 -Johnny Weir -Ar 15 -Larry Nassar -Super Bowl 2018 -Sergei Eisenstein -Kylie Jenner -Wilder Penfield -Florida shooting -Mark Salling -Super Bowl score -Kylie Jenner -Larry Nassar -Super blue blood Moon -What Time Is The Super Bowl -Alex Smith -SpaceX -Alexa Commercial -Solo Trailer -Winter Olympics -Groundhog Day 2018 -Sergei Eisenstein -Evgenia Medvedeva -Super Bowl score -Super Bowl 2018 -stock market -Paula Modersohn-Becker -Carter G. Woodson -Justin Timberlake -Jennifer Aniston -The Home Depot -Government Shutdown -Winter Olympics -Kylie Jenner -Government Shutdown -Government Shutdown -stock market -Pro Bowl 2018 -Florida shooting -Super Bowl 2018 -AR-15 -Monster Hunter World -Lil Pump -What Time Is The Super Bowl -Vikings Vs Eagles -Lakers -Winter Olympics -Pro Bowl 2018 -Oscar Nominations 2018 -Winter Olympics -New England Patriots owner -Super Bowl score -Winter Olympics -Winter Olympics -Joel Taylor -Rodney Hood -Government shutdown 2018 -Super Bowl score -Justin Timberlake -NFC Championship Game 2018 -Mark Salling -Florida shooting -Wilder Penfield -Dwyane Wade -Paula Modersohn-Becker -Vanessa Trump -Super Bowl score -Super Blue Blood Moon -Fortnite New Map -Carter G. Woodson -Shaun White -What Time Is The Super Bowl -Westerville Ohio -Kodak Black -Paula Modersohn-Becker -Wilder Penfield -Duke basketball -Trey Gowdy -Patriots -Elizabeth Blackwell -Wilder Penfield -Isaiah Thomas -Wilder Penfield -Deadpool 2 -Larry Nassar -Government shutdown 2018 -Virginia Woolf -Patriots -Grammys 2018 -Bradie Tennell -Toys R Us -Call Me by Your Name -Turpin -Winter Olympics -Carter G. Woodson -Heath Ledger -Super blue blood Moon -Super Bowl score -Patriots -Super Bowl 2018 -Groundhog Day 2018 -Google Classroom -Grammys 2018 -Paula Modersohn-Becker -Kylie Jenner -Florida shooting -Bellator 192 -Kim Kardashian -Sergei Eisenstein -Florida shooting -Hillary Clinton -Real Madrid -Super Bowl score -Winter Olympics -Justin Timberlake -Shiffrin -Virginia Woolf -Tom Petty -Virginia Woolf -Super Bowl 2018 -Did the Groundhog See His Shadow -What Time Is The Super Bowl -SAG Awards 2018 -Isaiah Canaan -Paula Modersohn-Becker -Kim Kardashian -Scott Baio -Groundhog Day 2018 -Wilder Penfield -Jacob Copeland -Mardi Gras 2018 -Florida shooting -Super Bowl 2018 -Happy Valentines Day -Carter G. Woodson -Dwyane Wade -SAG Awards 2018 -Memo -Paula Modersohn-Becker -Patriots -Grammys 2018 -Patriots -Logan Paul -Tammy Duckworth -SpaceX -Patriots -Paula Modersohn-Becker -Fredo Santana -What Time Is The Super Bowl -Kylie Jenner -Chloe Kim -Mavic Air -SpaceX -Government Shutdown -Happy Valentines Day -Wilder Penfield -Bitcoin Price -Quincy Jones -Eric Wood -Vikings Vs Eagles -Grammys 2018 -Super Bowl 2018 -Vince McMahon -Valentines Day -Carter G. Woodson -Wilder Penfield -Chinese New Year 2018 -Virginia Woolf -Justin Timberlake -Winter Olympics -What Time Is The Super Bowl -Royal Rumble 2018 -Virginia Woolf -Carter G. Woodson -Katie Couric -Valentines Day -Google Classroom -Kristaps Porzingis -Solo Trailer -Cloverfield Paradox -Waco -Puppy Bowl 2018 -Wilder Penfield -Justin Timberlake -Release The Memo -Obama portrait -Sergei Eisenstein -CNN -Pro Bowl 2018 -Sergei Eisenstein -Government Shutdown Meaning -Alessia Cara -CNN -Virginia Woolf -Alessia Cara -Virginia Woolf -Florida shooting -Wilder Penfield -Happy Valentines Day -SpaceX -Paula Modersohn-Becker -Culture 2 -Wilder Penfield -Amazon Stock -Vikings vs Eagles -Virginia Woolf -Vikings Vs Eagles -Dow Jones -Puppy Bowl 2018 -What Time Is The Super Bowl -Virginia Woolf -Virginia Woolf -Wilder Penfield -Super Bowl 2018 -Carter G. Woodson -Langston Hughes -Joshua Cooper Ramo -Elizabeth Blackwell -Taiwan Earthquake Today -Super Bowl score -Esteban Loaiza -Highline College -Wilder Penfield -Florida shooting -Carter G. Woodson -Joel Taylor -Oscar Nominations 2018 -Tom Brady daughter -Super Bowl score -Carter G. Woodson -Florida shooting -Venom -Carter G. Woodson -Jennifer Aniston -Super blue blood Moon -Paula Modersohn-Becker -Virginia Woolf -Kylie Jenner -Florida shooting -Chloe Kim -What Time Is The Super Bowl -Virginia Woolf -Elizabeth Blackwell -Solo Trailer -Super Bowl score -Virginia Woolf -Florida shooting -Super Bowl score -Aaron Feis -Groundhog Day 2018 -Florida shooting -Kim Kardashian -Matt Patricia -Super Bowl score -calculator -Virginia Woolf -Bob Dole -Grammys 2018 -Carter G. Woodson -Super Bowl score -What Time Is The Super Bowl -Winter Olympics -Super Bowl 2018 -Mark Salling -Alex Smith -Government Shutdown 2018 -Florida shooting -CNN -Rasual Butler -SpaceX -Memo -Luke Wilson -Larry Nassar -XFL -Kylie Jenner -Super Bowl score -Chicago Weather -Sergei Eisenstein -Wilder Penfield -Grammys 2018 -Did the Groundhog See His Shadow -Super Bowl 2018 -Super Bowl score -Vikings Vs Eagles -Zion Williamson -SAG Awards 2018 -Florida shooting -SpaceX -Super Bowl 2018 -Bitcoin Price -Tsunami Warning -Florida shooting -Grammys 2018 -Elizabeth Blackwell -Patriots -Shaun White -Paula Modersohn-Becker -Florida shooting -Virginia Woolf -Kentucky shooting -Elizabeth Blackwell -Carter G. Woodson -stock market -Virginia Woolf -Sergei Eisenstein -Patti LuPone -Oscar Nominations 2018 -Super Bowl 2018 -Kirstjen Nielsen -Carter G. Woodson -Super Bowl 2018 -Kylie Jenner -Grammys 2018 -Hope Hicks -Altered Carbon -Grammys 2018 -Ant Man and the Wasp -Google Classroom -Elton John -Groundhog Day 2018 -Florida shooting -Paula Modersohn-Becker -Super Bowl score -Sergei Eisenstein -Kesha -Kylie Jenner -Kim Kardashian -Ash Wednesday -Mark Salling -Florida shooting -Kodak Black -Winter Olympics -Google docs -Elon Musk -Government Shutdown Meaning -Super Bowl Commercials 2018 -Did the Groundhog See His Shadow -Super Bowl 2018 -Black Panther -Peter Rabbit -earthquake today -Presidents Day 2018 -Florida shooting -Hope Hicks -Sergei Eisenstein -Super Bowl score -Monster Hunter World -Super Bowl score -Sergei Eisenstein -Tyler Hilinski -NBA Trades -Virginia Woolf -12 Strong -Patriots -Blake Griffin Trade -Russell Wilson -What Time Is The Super Bowl -Carter G. Woodson -Royal Rumble 2018 -Grammys 2018 -Den of Thieves -Sergei Eisenstein -Justin Timberlake -Kylie Jenner -Kylie Jenner -Wilder Penfield -Blake Griffin Trade -Elton John -Joshua Cooper Ramo -Grammys 2018 -Zion Williamson -Kylie Jenner -SpaceX -Super blue blood Moon -Melania Trump -Korea -Kylie Jenner -Lakers -Patriots -Trayvon Martin -Shaun White -Mexico earthquake -Patriots -Winter Olympics -Luke Wilson -Nba All Star 2018 -FC Barcelona -Conor McGregor -Blake Griffin -Kylie Jenner -Adam Rippon -Valentines Day -Carter G. Woodson -Paula Modersohn-Becker -Oscar Nominations 2018 -Cherry Seaborn -Drake -Sergei Eisenstein -Google Drive -Virginia Woolf -Super Bowl score -Elizabeth Blackwell -Robert Mueller -Grammys 2018 -Incredibles 2 -Steve Wynn -Olympic medal count -Drake -Memo -Carter G. Woodson -Government Shutdown Meaning -Dow Jones -Yahoo Finance -Carter G. Woodson -Ronaldinho -Super Bowl Commercials 2018 -Sea Of Thieves -Tom Petty -Super blue blood Moon -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl 2018 -Elizabeth Blackwell -Patriots -Patriots -Winter Olympics -Wilder Penfield -Wilder Penfield -Johnny Weir -Oscar Nominations 2018 -Joe Kennedy -SpaceX -Dow Jones -Larry Nassar -Altered Carbon -Patriots -Edible Arrangements -Obama portrait -Mikaela Shiffrin -Super Bowl 2018 -Super Bowl 2018 -Super Bowl Winners -Manchester United -Cavs -Jennifer Aniston -Super Bowl score -Sergei Eisenstein -Luke Wilson -Carter G. Woodson -Happy Valentines Day -Groundhog Day 2018 -Florida shooting -This Is Us -Lari White -Larry Nassar -Pro Bowl 2018 -Patriots -Florida shooting -Patriots -Sergei Eisenstein -Elizabeth Blackwell -earthquake today -Chinese New Year 2018 -Paula Modersohn-Becker -Carter G. Woodson -Super Bowl score -Dow Jones -Virginia Woolf -Kentucky shooting -New England Patriots owner -Carter G. Woodson -Super Bowl score -Elizabeth Blackwell -Frank Reich -Government Shutdown -XFL -NBA Trades -Wilder Penfield -Puppy Bowl 2018 -Grammys 2018 -Larry Nassar -Lonzo Ball -school closings -Sergei Eisenstein -Elizabeth Blackwell -Valentines Day -Florida shooting -XFL -Isaiah Canaan -Carter G. Woodson -Childish Gambino -Women's March 2018 -Rodney Hood -Justin Timberlake -Trump State of the Union -Florida shooting -Justin Timberlake -Call Me by Your Name -Sea Of Thieves -Groundhog Day 2018 -Chloe Kim -Sergei Eisenstein -Outback Steakhouse -Winter Olympics -Grammys 2018 -Google Classroom -Solo Trailer -Super Bowl 2018 -Kesha Grammy -Nintendo Labo -Don Lemon -Tyler Hilinski -What Time Is The Super Bowl -Dwyane Wade -Florida shooting -Jon Huntsman -stock market -Vikings Vs Eagles -Patriots -Winter Olympics -Patriots -Sandy Hook -Eli Manning -Dragon Ball Super -Snapchat Update -Andrew Cunanan -Bitcoin Price -NBA Trades -Larry Nassar -This Is Us -Winter Olympics -Elizabeth Blackwell -Edible Arrangements -Carter G. Woodson -Google Classroom -SpaceX -Sergei Eisenstein -Virginia Woolf -Super Bowl score -Carter G. Woodson -Red Gerard -Wilder Penfield -Despacito -Florida shooting -What Time Is The Super Bowl -Greg Monroe -Winter Olympics -Katie Couric -Florida shooting -Super Bowl 2018 -Steve Mcnair -SpaceX -Super Bowl score -Government Shutdown -Government Shutdown -Alaska earthquake -Andrew Cunanan -Celtics -CNN -Hope Hicks -Larry Nassar -Stan Lee -Justin Timberlake -Cavs -Royal Rumble 2018 -Sergei Eisenstein -Bitcoin Price -Obama portrait -What Time Is The Super Bowl -Shaun White -Government Shutdown Meaning -Winter Olympics -Wilder Penfield -Justin Timberlake -Wilder Penfield -Hostiles Movie -Elizabeth Blackwell -Chloe Kim -Altered Carbon -Dua Lipa -Government Shutdown Meaning -Sergei Eisenstein -Super Bowl 2018 -Patriots -Government shutdown 2018 -Chicago Weather -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl 2018 -Government shutdown -Virginia Woolf -This is Us -Carter G. Woodson -Justin Timberlake -Chicago Weather -Call Me by Your Name -Oscar Nominations 2018 -Jason Momoa -Groundhog Day 2018 -Patriots -Black Panther -Jason Kelce -Marlon Brando -Warren Miller -What Time Is The Super Bowl -Royal Rumble 2018 -Elton John -Timor Leste -Government Shutdown -Wilder Penfield -Ash Wednesday -Robinhood -Mikaela Shiffrin -Carter G. Woodson -Grammys 2018 -Virginia Woolf -Kylie Jenner -Solo Trailer -Dow Jones -Super Bowl 2018 -Florida shooting -Harley Barber -Pro Bowl 2018 -Wilder Penfield -Vikings vs Eagles -Jacob Copeland -Paula Modersohn-Becker -Oscar Nominations 2018 -Kim Kardashian -NBA Trades -Vanessa Marcil -Lee Miglin -Call Me by Your Name -Super Bowl Winners -Grammys 2018 -Grammys 2018 -Elizabeth Blackwell -Elton John -Vikings Vs Eagles -Bitcoin Price -Sabrina Dhowre -Paula Modersohn-Becker -Lady Doritos -Kylie Jenner -Super Bowl score -Super Bowl score -Wilder Penfield -Groundhog Day 2018 -Super Bowl Commercials 2018 -Wilder Penfield -Danielle Herrington -Andre Roberson -Virginia Woolf -Lindsey Vonn -Den of Thieves -Otto Warmbier -Florida shooting -What Time Is The Super Bowl -LL Bean -What Time Is The Super Bowl -Super Bowl score -Groundhog Day 2018 -SpaceX -Government Shutdown Meaning -Black Panther -Chloe Kim -Oscar Nominations 2018 -Jamie Anderson -Carter G. Woodson -Megan Barry -Larry Nassar -Super Bowl score -Paula Modersohn-Becker -Rasual Butler -Super Bowl score -Winter Olympics -Uma Thurman -CNN -National Pizza Day -Government Shutdown -Super Bowl 2018 -Solo Trailer -Royal Rumble 2018 -Government shutdown -NBA Trades -Megan Barry -Winter Olympics -Wilder Penfield -Carter G. Woodson -Grammys 2018 -Lakers -Elizabeth Blackwell -Trump State of the Union -Did the Groundhog See His Shadow -Elizabeth Blackwell -Kylie Jenner -shutdown -Government shutdown -SpaceX -Paula Modersohn-Becker -Super Bowl 2018 -Virginia Woolf -Patriots -Sergei Eisenstein -Duke basketball -Florida shooting -Highline College -Patriots -Grammys 2018 -Wilder Penfield -Blake Griffin -Super Bowl score -XFL -Florida shooting -Kylie Jenner -calculator -Super Bowl score -Super Bowl score -Patriots -This Is Us -SAG Awards 2018 -Justin Timberlake -Ant Man and the Wasp -Bitcoin Price -Sergei Eisenstein -Ncaa Basketball Top 25 -Sergei Eisenstein -Hailee Steinfeld -Super Bowl Winners -Grammys 2018 -Paula Modersohn-Becker -Pro Bowl 2018 -Winter Olympics -Tyler Hilinski -Florida shooting -Will Ferrell -Blake Griffin -Florida shooting -Dolly Parton -Virginia Woolf -Chloe Kim -Government Shutdown 2018 -Super Bowl 2018 -Elizabeth Blackwell -Tiger Woods -Elizabeth Blackwell -Kodak Black -Paula Modersohn-Becker -Sergei Eisenstein -Solo Trailer -Carter G. Woodson -New England Patriots owner -Florida shooting -Patriots -Kylie Jenner -Ash Wednesday -Sergei Eisenstein -Kristaps Porzingis -Winter Olympics -Jason Kelce -Winter Olympics -Grammys 2018 -Elizabeth Blackwell -Super Bowl score -Esteban Loaiza -Eli Manning -Westerville Ohio -Carter G. Woodson -Government Shutdown Meaning -Josh McDaniels -Wilder Penfield -Halsey -Royal Rumble 2018 -NBA Trades -Rihanna -Elton John -The 15:17 to Paris -Florida shooting -Tammy Duckworth -What Time Is The Super Bowl -Cavs -Tyler Hilinski -Royal Rumble 2018 -Government Shutdown -Pro Bowl 2018 -Brynn Cameron -SAG Awards 2018 -Solo Trailer -Paula Modersohn-Becker -stock market -Elon Musk -Paula Modersohn-Becker -Pro Bowl 2018 -Elizabeth Blackwell -Bitcoin Price -Carter G. Woodson -SpaceX -Super Bowl score -Patriots -Elizabeth Blackwell -Florida shooting -Justin Timberlake -Winter Olympics -Justin Timberlake -NASA -Jessica Chastain -Omarosa -Costco Wholesale -Justin Timberlake -Grammys 2018 -Jennifer Aniston -Did the Groundhog See His Shadow -Elizabeth Blackwell -Paula Modersohn-Becker -Royal Rumble 2018 -This is Us -Mavic Air -SAG Awards 2018 -Elizabeth Blackwell -Mikaela Shiffrin -What Time Is The Super Bowl -Mardi Gras 2018 -Paula Modersohn-Becker -Virginia Woolf -Grammys 2018 -SZA -Emily Sweeney -Amy Schumer -Wilder Penfield -Doomsday Clock -Valentines Day -luge -Lindsey Vonn -Dwyane Wade -National Pizza Day -Grammys 2018 -Paula Modersohn-Becker -Fredo Santana -Release The Memo -Anastasia Bryzgalova -Highline College -Elizabeth Blackwell -Juventus -Groundhog Day 2018 -Carter G. Woodson -Chipper Jones -Patriots -Florida shooting -Wilder Penfield -Elizabeth Blackwell -Super Bowl 2018 -Shaun White -Paula Modersohn-Becker -Timor Leste -Government Shutdown -Carter G. Woodson -Vikings Vs Eagles -Alaska earthquake -Monster Hunter World -Carter G. Woodson -NBA Trades -earthquake -Danielle Herrington -Carter G. Woodson -Patriots -Valentines Day Images -Shaun White -Sergei Eisenstein -MS13 -Wilder Penfield -Kylie Jenner -Patriots -Black Panther -Grammys 2018 -Sergei Eisenstein -Justin Timberlake -Winter Olympics -calculator -Paula Modersohn-Becker -Jennifer Aniston -Danielle Herrington -Super Bowl score -Kylie Jenner Baby Girl -Kevin Love -Grammys 2018 -Grammys 2018 -Winter Olympics -Carter G. Woodson -Trump State of the Union -Virginia Woolf -Virginia Woolf -Patriots -Joe Kennedy -Tonga -Alex Smith -Wilder Penfield -Jessica Chastain -NBA Trades -Florida shooting -Chinese New Year 2018 -When We First Met -Markelle Fultz -Isaiah Thomas -Chloe Kim -Wilder Penfield -Lena Zawaideh -Government Shutdown Meaning -Lari White -Virginia Woolf -SpaceX -UFC 220 -SpaceX -Jason Kelce -Super Bowl 2018 -Blake Griffin -Super Bowl 2018 -Markelle Fultz -Patriots -Super Bowl 2018 -Virginia Woolf -Florida shooting -Esteban Loaiza -Larry Nassar -Sergei Eisenstein -Adam Rippon -NBA Trades -Bitcoin Price -Kristaps Porzingis -Andrew Cunanan -Altered Carbon -Larry Nassar -Chloe Kim -calculator -Super Bowl score -NBA Trades -Florida shooting -Michigan State -Government shutdown 2018 -Super blue blood Moon -Elizabeth Blackwell -State of the Union -Paula Modersohn-Becker -Carter G. Woodson -Lady Doritos -Incredibles 2 -Super Bowl 2018 -Super Bowl score -Oscar Nominations 2018 -Kim Kardashian -Virginia Woolf -Paula Modersohn-Becker -Shaun White -Patti LuPone -Super Bowl score -Patriots -Patriots -What Time Is The Super Bowl -Happy Valentines Day -MS13 -Florida shooting -Winter Olympics -Kevin Love -Paula Modersohn-Becker -Lady Bird -Google Classroom -Justin Timberlake -Virginia Woolf -Royal Rumble 2018 -Super Bowl 2018 -What Time Is The Super Bowl -Patriots -Forever My Girl -Memo -SpaceX -Wilder Penfield -Pro Bowl 2018 -Kylie Jenner Baby Girl -Dow Jones -Paula Modersohn-Becker -Virginia Woolf -Patriots -Isaiah Thomas -Winter Olympics -Government shutdown -Florida shooting -Prince William -Winter Olympics -Patriots -Google Drive -Blake Griffin -Larry Nassar -Black Panther -Sergei Eisenstein -Wilder Penfield -Paula Modersohn-Becker -Florida shooting -SpaceX -Wilder Penfield -Sergei Eisenstein -What Time Is The Super Bowl -Costco Wholesale -Patriots -Kim Kardashian -Carter G. Woodson -Super Bowl 2018 -Paula Modersohn-Becker -Jimmy Garoppolo -Daniel Kaluuya -Super Bowl 2018 -Government Shutdown -Maddie Mastro -State of the Union -What Time Is The Super Bowl -Elizabeth Blackwell -Vikings Vs Eagles -Google docs -Elizabeth Blackwell -State of the Union -Super Blue Blood Moon -Wilder Penfield -Winter Olympics -Super Bowl 2018 -Larry Nassar -Bob Dole -Justin Timberlake -Jennifer Aniston -Danielle Herrington -Mark Salling -Oscar Nominations 2018 -Carter G. Woodson -Patriots -Virginia Woolf -Super Bowl 2018 -Justin Timberlake -Camila Cabello -Winter Olympics -Elizabeth Blackwell -Robert Wagner -Carter G. Woodson -Google docs -Virginia Woolf -Super Bowl 2018 -Shaun White -Shaun White -calculator -tsunami -Super Bowl score -Carter G. Woodson -Wilder Penfield -SpaceX -Grammys 2018 -Winter Olympics -stock market -State of the Union -Paula Modersohn-Becker -Cavs -Larry Nassar -Winter Olympics -Super Bowl score -Florida shooting -Alex Smith -Sergei Eisenstein -Virginia Woolf -New England Patriots owner -The 15:17 to Paris -Virginia Woolf -Sergei Eisenstein -Josh McDaniels -Sergei Eisenstein -Patriots -Camila Cabello -Jessica Chastain -SpaceX -Super Bowl 2018 -Vikings vs Eagles -United States Of America Winter Olympics -Culture 2 -Mexico Vs Bosnia -Bill Belichick -What Time Is The Super Bowl -Shaun White -Super Bowl score -Super Bowl 2018 -Grammys 2018 -Scandal -Kylie Jenner -Elizabeth Blackwell -calculator -Virginia Woolf -Olivia Culpo -Chloe Kim -Winter Olympics -Larry Nassar -Montreal Cognitive Assessment -Winter Olympics -UFC 220 -Elizabeth Blackwell -Vikings Vs Eagles -Florida shooting -DeMarcus Cousins -Blake Griffin -Groundhog Day 2018 -SpaceX -Jane Fonda -Elton John -Ar 15 -Kylie Jenner -stock market -Happy Valentines Day -Wilder Penfield -Carter G. Woodson -Adam Rippon -Luke Wilson -Carter G. Woodson -Puppy Bowl 2018 -Elizabeth Blackwell -Wilder Penfield -Chloe Kim -Peter Rabbit -Blue Ivy -Alessia Cara -What Time Is The Super Bowl -Forever My Girl -UFC 220 -Outback Steakhouse -Danielle Herrington -Sergei Eisenstein -Carter G. Woodson -Kylie Jenner -Chinese New Year 2018 -Sergei Eisenstein -Olympic Medal Count -Virginia Woolf -SpaceX -Super Bowl 2018 -Super Bowl score -Patriots -Blake Griffin -Alessia Cara -Josh Allen -Korea -XFL -Sergei Eisenstein -CNN -Dow Jones -Black Panther -Isaiah Canaan -Super blue blood Moon -Chief Wahoo -Larry Nassar -Paula Modersohn-Becker -Groundhog Day 2018 -Super Bowl score -Virginia Woolf -Robinhood -Paula Modersohn-Becker -Patriots -Sergei Eisenstein -Paula Modersohn-Becker -Esteban Loaiza -Rasual Butler -Sergei Eisenstein -Chicago West -Florida shooting -Patriots -Wilder Penfield -Winter Olympics -Elizabeth Blackwell -Chris Paul -Puppy Bowl 2018 -Sergei Eisenstein -Stock Market Crash Today -Larry Nassar -Government Shutdown 2018 -Mark Salling -Harley Barber -Anna Kournikova -Super Bowl score -Patriots -New California -This Is Us -New England Patriots owner -Tyler Hilinski -Alex Smith -UFC 220 -Mark Salling -Scandal -Patriots -Trump State of the Union -Winter Olympics -Patriots -Elizabeth Blackwell -Super Bowl 2018 -Alessia Cara -Vikings Vs Eagles -Carter G. Woodson -Wilder Penfield -Sergei Eisenstein -Kylie Jenner -What Time Is The Super Bowl -Elizabeth Blackwell -Winter Olympics -Bitcoin Price -Women's March 2018 -UFC 220 -United States Of America Winter Olympics -Larry Nassar -Elizabeth Blackwell -Carter G. Woodson -Carrie Underwood -Super Bowl score -Patriots -Super Bowl 2018 -Ash Wednesday -Carter G. Woodson -Elton John -Grammys 2018 -Virginia Woolf -Sea Of Thieves -Winter Olympics -The Resident -XFL -Montreal Cognitive Assessment -Wilder Penfield -Montreal Cognitive Assessment -Oscar Nominations 2018 -Winter Olympics -12 Strong -Kentucky shooting -Korea -Caitlin McHugh -Carter G. Woodson -Super Bowl score -Black Panther -SpaceX -12 Strong -Cloverfield Paradox -Super Bowl score -Carter G. Woodson -Alex Smith -Winter Olympics -Nintendo Labo -National Pizza Day -Zion Williamson -Government Shutdown Meaning -Grammys 2018 -Carter G. Woodson -Patty Hearst -Winter Olympics -Grammys 2018 -Rob Porter -Carter G. Woodson -Isaiah Thomas -Alaska earthquake -Sergei Eisenstein -Alaska earthquake -Grammys 2018 -Sergei Eisenstein -Florida shooting -Winter Olympics -Terrell Owens -Carter G. Woodson -Carter G. Woodson -Florida shooting -Elizabeth Blackwell -Black Lightning -UFC 221 -Happy Valentines Day -Carter G. Woodson -What Time Is The Super Bowl -Super Bowl 2018 -Government shutdown 2018 -Terrell Owens -Elizabeth Blackwell -Super Bowl 2018 -Justin Timberlake -Markelle Fultz -Morgan Freeman -Wilder Penfield -Jason Kelce -Florida shooting -Chinese New Year 2018 -Carter G. Woodson -Government Shutdown -Chinese New Year 2018 -Tessa Virtue -Kesha Grammy -Super Bowl 2018 -Chris Paul -Rasual Butler -Larry Nassar -CNN -Kesha -SAG Awards 2018 -Alaska earthquake -Black Panther -Super Bowl score -Larry Nassar -Super Bowl 2018 -Super Bowl score -Super Bowl score -Aliona Savchenko -Vikings Vs Eagles -Wilder Penfield -Elizabeth Blackwell -NFC Championship Game 2018 -Grammys 2018 -Dow Jones -Mark Salling -Chloe Kim -Cavs -Super Bowl 2018 -Kim Kardashian -NFC Championship Game 2018 -What Time Is The Super Bowl -Quincy Jones -Princess Eugenie -Lena Zawaideh -Jason Kelce -Sergei Eisenstein -Florida shooting -Winter Olympics -Grammys 2018 -Celebrity Big Brother cast -Luke Wilson -Virginia Woolf -Women's March 2018 -Patriots -Black Panther -Virginia Woolf -Joe Kennedy -Super Bowl 2018 -Winter Olympics -Elizabeth Blackwell -Did the Groundhog See His Shadow -Scott Baio -Josh McDaniels -Government Shutdown -Gianni Versace -Elizabeth Blackwell -Terry Bradshaw -Cloverfield Paradox -Terrell Owens -Robert Mueller -Rose McGowan -Tammy Duckworth -Mikaela Shiffrin -Snapchat Update -Kylie Jenner -Memo -What Time Is The Super Bowl -Michigan State -Wilder Penfield -Tessa Virtue -Dane Cook -Patriots -Shiffrin -Oscar Nominations 2018 -Elizabeth Blackwell -Paula Modersohn-Becker -Mikaela Shiffrin -Solo Trailer -Larry Nassar -Luke Wilson -Lena Zawaideh -Super Bowl score -Kylie Jenner -Carter G. Woodson -New England Patriots owner -Paula Modersohn-Becker -What Time Is The Super Bowl -Carter G. Woodson -Grammys 2018 -Larry Nassar -Danielle Herrington -Florida shooting -Julie Ertz -SpaceX -Oscar Nominations 2018 -Paula Modersohn-Becker -Sergei Eisenstein -Larry Nassar -The 15:17 to Paris -Classroom -Vikings Vs Eagles -Larry Nassar -Grammys 2018 -Isaiah Thomas -Patriots -Wilder Penfield -Patriots -Anastasia Bryzgalova -Den of Thieves -Carter G. Woodson -Super Bowl score -Real Madrid -Wilder Penfield -Aliona Savchenko -Kylie Jenner -Elizabeth Blackwell -earthquake -Elizabeth Blackwell -Amazon stock -Trump State of the Union -Kylie Jenner -Ann Curry -Jimmy Kimmel -Happy Valentines Day -Shaun White -Elizabeth Blackwell -Chinese New Year 2018 -Sergei Eisenstein -Manchester United -Mardi Gras 2018 -Olympic Medal Count -Alessia Cara -Virginia Woolf -Google docs -State of the Union -Paula Modersohn-Becker -Nintendo Labo -What Time Is The Super Bowl -Black Panther -Super Bowl score -Government Shutdown -Winter Olympics -Omarosa -shutdown -The Resident -Winter Olympics -Winter Olympics -Blake Griffin -NBC Sports -Julie Ertz -Ohio State basketball -XFL -NBA Trades -Monster Hunter World -Elizabeth Blackwell -Florida shooting -Super Bowl score -Forever My Girl -Rihanna -Rasual Butler -Florida shooting -Carter G. Woodson -Bernie Sanders -Blood Moon -This Is Us -Wilder Penfield -Paula Modersohn-Becker -Groundhog Day 2018 -NBA Trades -Justin Timberlake -Rodney Hood -Chris Long -Paula Modersohn-Becker -Kylie Jenner -Patriots -Pink -Paula Modersohn-Becker -Kylie Jenner -Isaiah Canaan -Justin Timberlake -Florida shooting -Justin Timberlake -Super blue blood Moon -Wilder Penfield -Virginia Woolf -Altered Carbon -Larry Nassar -Altered Carbon -Timor Leste -Virginia Woolf -Naya Rivera -SpaceX -Lunar eclipse -Tiger Woods -Anna Kournikova -Super Bowl score -Winter Olympics -Super Bowl score -Tyler Hilinski -Pro Bowl 2018 -Elton John -Stock Market Crash Today -Sergei Eisenstein -Carter G. Woodson -Government Shutdown -Kim Kardashian -Snap Stock -Classroom -Larry Nassar -Grammys 2018 -Happy Valentines Day -Super Bowl score -Luke Wilson -Winter Olympics -Elizabeth Blackwell -Super Bowl Commercials -Jason Kidd -Groundhog Day 2018 -Patriots -Kesha Grammy -Super Bowl score -Super Bowl score -Grammys 2018 -Kratom -Chloe Kim -Trayvon Martin -Paula Modersohn-Becker -Sarah Barthel -Paula Modersohn-Becker -Cherry Seaborn -Cavs -Florida shooting -Joe Kennedy -Google docs -Groundhog Day 2018 -Patriots -Paul Ryan -Elizabeth Blackwell -Jennifer Aniston -What Time Is The Super Bowl -Patriots -Sergei Eisenstein -Virginia Woolf -Memo -Kylie Jenner -Virginia Woolf -Johnny Weir -Vikings Vs Eagles -Kylie Jenner -Mark Salling -CNN -Paula Modersohn-Becker -Steven Tyler -Valentines Day Memes -SpaceX -Patriots -Edwin Jackson -Olympics 2018 -Mark Salling -Heath Ledger -Groundhog Day 2018 -Wilder Penfield -Mardi Gras 2018 -Sergei Eisenstein -Carrie Underwood -Google Classroom -The 15:17 to Paris -Tom Brady -Super Bowl 2018 -What Time Is The Super Bowl -Super Blue Blood Moon -Carter G. Woodson -Florida shooting -Virginia Woolf -Government Shutdown -Groundhog Day 2018 -Rasual Butler -Carrie Underwood -Joe Kennedy -Sergei Eisenstein -Elizabeth Blackwell -Patriots -Winter Olympics -SpaceX -Virginia Woolf -Blue Ivy -SpaceX -Zion Williamson -Terrell Owens -Wilder Penfield -What Time Is The Super Bowl -Government shutdown -Obama portrait -Happy Valentines Day -Super Bowl 2018 -Kylie Jenner -John Mahoney -Sergei Eisenstein -Sergei Eisenstein -Dow Jones -Kesha -Justin Timberlake -Alexander Polinsky -Elizabeth Blackwell -Florida shooting -Caroline Wozniacki -Elizabeth Blackwell -Google Classroom -Patriots -Carter G. Woodson -SpaceX -Childish Gambino -Montreal Cognitive Assessment -Super Bowl 2018 -Altered Carbon -Winter Olympics -Mike Tomlin -Natalie Wood -Sarah Barthel -Sergei Eisenstein -Dow Jones -Timor Leste -Super Bowl score -Wilder Penfield -Government Shutdown Meaning -Joe Kennedy -Brynn Cameron -Winter Olympics -Florida shooting -tsunami -Mike Vrabel -Kirstjen Nielsen -Elizabeth Blackwell -Super Bowl 2018 -Paula Modersohn-Becker -Naya Rivera -Grammys 2018 -Virginia Woolf -Florida shooting -Chinese New Year 2018 -Wilder Penfield -national signing day 2018 -Valentines Day Memes -Super Bowl 2018 -SAG Awards 2018 -Super Bowl score -Winter Olympics -Sergei Eisenstein -Disneyland tickets -Elizabeth Blackwell -Carter G. Woodson -Wilder Penfield -Jennifer Aniston -Mark Salling -Wilder Penfield -Wilder Penfield -Super Bowl score -Paula Modersohn-Becker -Pro Bowl 2018 -Chicago West -Super blue blood Moon -Purdue Basketball -Ash Wednesday -Super Bowl score -Amtrak -Cavs -Google Drive -Release The Memo -Government shutdown 2018 -Mikaela Shiffrin -Roger Federer -Alessia Cara -Mark E Smith -What Time Is The Super Bowl -Memo -CNN -Wilder Penfield -Alison Brie -Pro Bowl 2018 -Florida shooting -Jennifer Aniston -Virginia Woolf -Brynn Cameron -Bitcoin Price -Outback Steakhouse -Super Bowl score -Dow Jones -Florida shooting -Government Shutdown -Paula Modersohn-Becker -Winter Olympics -Costco Wholesale -Florida shooting -Stock Market Crash Today -Wilder Penfield -Government shutdown -Sandy Hook -Valentine's Day -Carter G. Woodson -Kris Dunn -Sergei Eisenstein -Super Bowl Commercials -Elizabeth Blackwell -Morgan Freeman -Bitcoin Price -SpaceX -Paula Modersohn-Becker -Wing Bowl 2018 -Peter Rabbit -Blue Moon -Blake Griffin -Government shutdown 2018 -Ash Wednesday -Valentines Day Memes -Carter G. Woodson -Black Panther -Blue Ivy -Government Shutdown -Princess Eugenie -Sergei Eisenstein -Carter G. Woodson -Florida shooting -NBA Trades -Cavs -Snapchat Update -Dwyane Wade -Memo -Super Bowl score -Caroline Wozniacki -SpaceX -Winter Olympics -Julie Ertz -Florida shooting -Florida shooting -Joe Kennedy -Justin Timberlake -SpaceX -Isaiah Thomas -Paula Modersohn-Becker -Virginia Woolf -Super Bowl score -Winter Olympics -Florida shooting -Wilder Penfield -Paula Modersohn-Becker -Mike Vrabel -Winter Olympics -Grammys 2018 -Wilder Penfield -Sergei Eisenstein -Florida shooting -Patriots -Bitcoin Price -Luke Wilson -Senior Bowl -Elton John -Cavs -Wilder Penfield -Halsey -NBA Trades -Altered Carbon -Virginia Woolf -Esteban Loaiza -Wilder Penfield -Tonga -Vikings Vs Eagles -Paula Modersohn-Becker -Lauren Davis -Vikings vs Eagles -Grammys 2018 -calculator -Wilder Penfield -Earthquake -Elizabeth Blackwell -Nba All Star 2018 -Sergei Eisenstein -NFC Championship Game 2018 -Wilder Penfield -Google Classroom -Alex Smith -Winter Olympics -Wilder Penfield -Wilder Penfield -Valentines Day -Grammys 2018 -State of the Union -Dane Cook -Super Bowl score -Steven Tyler -Sergei Eisenstein -Elizabeth Blackwell -Winter Olympics -What Time Is The Super Bowl -Super Bowl 2018 -Wilder Penfield -Black Panther -NBA Trades -The 15:17 to Paris -Super Bowl 2018 -Winter Olympics -calculator -Sergei Eisenstein -What Time Is The Super Bowl -Elizabeth Blackwell -Patriots -This is Us -Government shutdown -Patriots -Florida shooting -Bruno Mars -Patriots -Grammys 2018 -Wilder Penfield -Rob Gronkowski -Florida shooting -Fidel Castro -Ash Wednesday -Black Panther -Nba All Star Draft -Winter Olympics -Larry Nassar -Super Bowl score -Kitty Kat West -Johnny Weir -Nancy Pelosi -Football Playoffs 2018 -James Harden -Winter Olympics -Justin Timberlake -National Pizza Day -Patriots -Government Shutdown -Paula Modersohn-Becker -AR-15 -Elizabeth Blackwell -Early Man -Carter G. Woodson -Sergei Eisenstein -Obama portrait -Super Bowl score -Grammys 2018 -Wilder Penfield -Carter G. Woodson -Daryle Singletary -Winter Olympics -State of the Union -Rodney Hood -Bitcoin Price -Chicago Weather -NBA Trades -Super Bowl score -Rasual Butler -Jennifer Aniston -Sergei Eisenstein -Wilder Penfield -Groundhog Day 2018 -Memo -Super Bowl score -Larry Nassar -Government Shutdown -Super Bowl 2018 halftime show -Kylie Jenner -Black Panther -Patriots -Super Bowl score -Maze Runner: The Death Cure -State of the Union -Sergei Eisenstein -Patriots -Wing Bowl 2018 -Groundhog Day 2018 -Wilder Penfield -Shiffrin -Carter G. Woodson -Super blue blood Moon -Super Bowl 2018 -Groundhog Day 2018 -SpaceX -Mike Vrabel -Robert Mueller -Kylie Jenner -Culture 2 -Julie Ertz -Memo -What Time Is The Super Bowl -Virginia Woolf -Champions League -Charissa Thompson -Elizabeth Blackwell -NBA Trades -Sandy Hook -Columbine Shooting -Virginia Woolf -Kylie Jenner Baby Girl -Chris Stapleton -Justin Timberlake -XFL -Solo Trailer -Elizabeth Blackwell -Wilder Penfield -Esteban Loaiza -Virginia Woolf -Kylie Jenner -Winter Olympics -Ant Man and the Wasp -Chris Paul -Kylie Jenner -Government Shutdown -Paula Modersohn-Becker -Patriots -Mark Salling -Super Bowl 2018 -What Time Is The Super Bowl -Alaska earthquake -SpaceX -Carter G. Woodson -Paula Modersohn-Becker -Valentines Day Images -Sergei Eisenstein -Patriots -Paula Modersohn-Becker -Football Playoffs 2018 -Super Bowl 2018 -Larry Nassar -Rob Delaney -Omarosa -Sergei Eisenstein -New California -Patriots -Virginia Woolf -Vikings Vs Eagles -Florida shooting -Paula Modersohn-Becker -Super Bowl score -Manchester United -Elizabeth Blackwell -Paula Modersohn-Becker -Halsey -Grammys 2018 -Chris Mazdzer -Kylie Jenner -Omarosa -Shaun White -Carrie Underwood -Paula Modersohn-Becker -Groundhog Day 2018 -School closings -Wilder Penfield -Slender Man -Zion Williamson -Super Bowl Commercials 2018 -calculator -Super Bowl score -What Time Is The Super Bowl -Virginia Woolf -Vincent Zhou -Elizabeth Blackwell -Farmers Insurance Open 2018 -Elizabeth Blackwell -Alaska earthquake -Adam Rippon -Patriots -Virginia Woolf -Tom Izzo -Bitcoin Price -Patriots -Chris Paul -Vikings Vs Eagles -Vikings Vs Eagles -Super Bowl score -Call Me by Your Name -Ohio State basketball -CNN -Florida shooting -earthquake -SpaceX -Paula Modersohn-Becker -Carter G. Woodson -Black Panther -Isaiah Thomas -Super Blue Blood Moon -Sergei Eisenstein -Virginia Woolf -Paula Modersohn-Becker -Wilder Penfield -Super Bowl score -Kylie Jenner Baby Girl -Elizabeth Blackwell -Shaun White -Black Panther -Super Bowl 2018 halftime show -Red Gerard -Super Bowl score -Super Bowl score -Winter Olympics -Wilder Penfield -Florida shooting -Kim Kardashian -Friends movie -Wilder Penfield -Dolly Parton -What Time Is The Super Bowl -United States Postal Service -Women's March 2018 -Super blue blood Moon -Paula Modersohn-Becker -Virginia Woolf -Ash Wednesday -Elizabeth Blackwell -Patriots -Tessa Virtue -Government Shutdown -Cryptocurrency News -Sergei Eisenstein -UFC 220 -Super Bowl 2018 -Super Bowl 2018 -Winter Olympics -Government Shutdown -Bitcoin Price -What Time Is The Super Bowl -Florida shooting -Nikki Haley -Florida shooting -Patriots -Winter Olympics -Grammys 2018 -Best Superbowl Commercials 2018 -Paula Modersohn-Becker -School Closings -Cavs -Brynn Cameron -Shaun White -Patriots -SAG Awards 2018 -John Mahoney -Shaun White -Blake Griffin -Groundhog Day 2018 -Ohio State basketball -Carter G. Woodson -AR-15 -Elizabeth Blackwell -Memo -Kylie Jenner -Carter G. Woodson -Bill Paxton -Rasual Butler -XFL -Elizabeth Blackwell -Kim Kardashian -Elizabeth Blackwell -Kylie Jenner -Steven Tyler -Rasual Butler -Real Madrid -Happy Valentines Day -Maze Runner: The Death Cure -Chinese New Year 2018 -Winter Olympics -This Is Us -Super Bowl score -Paula Modersohn-Becker -Winter Olympics -Super Bowl 2018 -Woody Allen -NBA Trades -Blue Moon -Daryle Singletary -SpaceX -Blake Griffin -Black Panther -Farmers Insurance Open 2018 -Wilder Penfield -Super Bowl score -Trump State of the Union -Paula Modersohn-Becker -Eli Manning -Montreal Cognitive Assessment -Super Bowl score -Kylie Jenner -Vikings Vs Eagles -Left Shark -Gregory Salcido -Carter G. Woodson -Patriots -State of the Union -Wilder Penfield -Erykah Badu -Lena Zawaideh -CNN -Government Shutdown -Sergei Eisenstein -Virginia Woolf -Alex Smith -Patriots -Sergei Eisenstein -Super Bowl score -Kim Kardashian -Valentines Day Cards -Olympic Medal Count -Super Bowl 2018 -Winter Olympics -Will Ferrell -Elizabeth Blackwell -Grammys 2018 -Andrew Cunanan -New England Patriots owner -Kentucky shooting -Super Bowl score -Elizabeth Blackwell -Sergei Eisenstein -Blake Griffin -Paula Modersohn-Becker -What Time Is The Super Bowl -SpaceX -NBA Trades -Apple stock -Paula Modersohn-Becker -Wilder Penfield -Florida shooting -Justin Timberlake -Derrick Rose -Virginia Woolf -Happy Valentines Day -Florida shooting -Marlon Brando -Obama portrait -SpaceX -Super Bowl 2018 -Vikings Vs Eagles -Earthquake Today -Kylie Jenner -Memo -Chinese New Year 2018 -Mardi Gras 2018 -Super blue blood Moon -Lunar eclipse -Carter G. Woodson -Quincy Jones -Otto Warmbier -Elizabeth Blackwell -Happy Valentines Day -Puppy Bowl 2018 -Vanity Fair Cover -Florida shooting -Government shutdown 2018 -Yahoo Finance -Wilder Penfield -Jemele Hill -Florida shooting -Super Bowl 2018 -Camila Cabello -Kim Kardashian -Kesha -Florida shooting -Kylie Jenner -Happy Valentines Day -Kylie Jenner -Carter G. Woodson -Florida shooting -Tyler Hilinski -Carter G. Woodson -Monster Hunter World -Monster Hunter World -Kylie Jenner -Trump State of the Union -Virginia Woolf -Justin Timberlake -Jamie Anderson -Wilder Penfield -Sergei Eisenstein -Dow Jones -Groundhog Day 2018 -Virginia Woolf -Alaska earthquake -Valentines Day -Groundhog Day 2018 -Florida shooting -NBA Trades -Steven Tyler -12 Strong -Kylie Jenner -CNN -What Time Is The Super Bowl -Virginia Woolf -Wilder Penfield -NFC Championship Game 2018 -Super blue blood Moon -Chicago West -Sergei Eisenstein -SAG Awards 2018 -Patriots -Virginia Woolf -Wilder Penfield -Florida shooting -Kim Kardashian -Grammys 2018 -Yu Darvish -Justin Timberlake -Left Shark -Carter G. Woodson -Super Bowl score -Chris Paul -Super Bowl score -Hostiles -Andrew Cunanan -Super Bowl score -Carter G. Woodson -Sergei Eisenstein -Mikaela Shiffrin -Super Bowl score -Jason Kidd -Florida shooting -Chinese New Year 2018 -Kylie Jenner -Florida shooting -Alaska earthquake -Justin Timberlake -Carter G. Woodson -Florida shooting -Blue Moon -Detroit Lions -Happy Valentines Day -stock market -Super Bowl score -Paula Modersohn-Becker -Rodney Hood -Jamie Anderson -Natalie Wood -Gods Plan -Memo -Patriots -Snapchat Update -SAG Awards 2018 -Super Bowl score -Patriots -Government Shutdown -Oscar Nominations 2018 -Florida shooting -Sergei Eisenstein -Carter G. Woodson -Carter G. Woodson -Super Bowl score -Elizabeth Blackwell -AR-15 -Super Bowl 2018 -Cherry Seaborn -Taiwan Earthquake Today -Black Panther -Valentines Day Memes -Alex Smith -Chicago West -New England Patriots owner -fake news awards -Google docs -Super Bowl 2018 -Alaska earthquake -Vikings Vs Eagles -SpaceX -Pro Bowl 2018 -Super Bowl 2018 -Friends movie -school closings -NBA Trades -Winter Olympics -Caitlin McHugh -Super Bowl score -Mueller -What Time Is The Super Bowl -Kylie Jenner -Government Shutdown Meaning -Government shutdown -Wilder Penfield -Riverdale -Larry Nassar -Florida shooting -Government Shutdown -Paula Modersohn-Becker -Patti LuPone -Wilder Penfield -Alexander Polinsky -Nathan Chen -Super Bowl score -Cavs -Dwyane Wade -Den of Thieves -Chloe Kim -Matt Patricia -Cnbc -Otto Warmbier -Tyler Hilinski -Super Bowl score -Florida shooting -Winter Olympics -Blake Griffin -Grammys 2018 -Chloe Kim Snowboarder -Justin Timberlake -Grammys 2018 -Duke Basketball -Florida shooting -Bob Dole -NBA Trades -Alex Reimer -Super Bowl 2018 -Paula Modersohn-Becker -Happy Valentines Day -Super Bowl 2018 -Paula Modersohn-Becker -Winter Olympics -SpaceX -Memo -Super blue blood Moon -Patriots -Wilder Penfield -What Time Is The Super Bowl -Paula Modersohn-Becker -Football Playoffs 2018 -What Time Is The Super Bowl -Royal Rumble 2018 -Larry Nassar -Paula Modersohn-Becker -Wilder Penfield -Valentines Day -Justin Timberlake -NBA Trades -Lena Zawaideh -Virginia Woolf -Chinese New Year 2018 -Yahoo Finance -Kim Kardashian -Winter Olympics -Super blue blood Moon -Paula Modersohn-Becker -Mueller -Peter Rabbit -Deadpool 2 -What Time Is The Super Bowl -Carter G. Woodson -Kylie Jenner -Cbs -Wilder Penfield -Wilder Penfield -Carrie Underwood -Culture 2 -Super Bowl Commercials -Isaiah Canaan -Omarosa -Quincy Jones -What Time Is The Super Bowl -Sergei Eisenstein -Super Bowl Commercials 2018 -Alaska earthquake -Puppy Bowl 2018 -Terrell Owens -Isaiah Thomas -Wilder Penfield -SpaceX -Chinese New Year 2018 -United States Of America Winter Olympics -Patriots -Florida shooting -Kesha Grammy -Andrew Cunanan -Chief Wahoo -Virginia Woolf -Black Panther -Valentines Day Cards -Trump State of the Union -Shaun White -Jacob Copeland -Government Shutdown Meaning -Florida shooting -Dow Jones -Justin Timberlake -Super Bowl 2018 -Kentucky shooting -Kylie Jenner -Virginia Woolf -Fredo Santana -NBA Trades -Vikings Vs Eagles -Get Out -School closings -Justin Timberlake -Sergei Eisenstein -Tom Petty -Chinese New Year 2018 -Carter G. Woodson -Florida shooting -Happy Valentines Day -Yahoo Finance -XFL -Vikings Vs Eagles -Best Superbowl Commercials 2018 -Paula Modersohn-Becker -Bitcoin Price -Super Bowl Commercials 2018 -Wilder Penfield -Super Bowl 2018 -Oscar Nominations 2018 -Winter Olympics -Jessica Chastain -Elizabeth Blackwell -Paula Modersohn-Becker -Super Bowl 2018 -Paula Modersohn-Becker -Ar 15 -Wilder Penfield -Super Bowl score -Florida shooting -Vikings Vs Eagles -Happy Valentines Day -Government Shutdown Meaning -Kylie Jenner -Blood Moon -SpaceX -Vikings Vs Eagles -Florida shooting -Government shutdown 2018 -Super Bowl score -FA Cup -Grammys 2018 -Government Shutdown Meaning -Bitcoin Price -Mike Vrabel -Government Shutdown -Adam Rippon -tsunami -Google docs -Super Bowl 2018 -State of the Union -AFC Championship Game 2018 -Government shutdown 2018 -Elizabeth Blackwell -Virginia Woolf -Wilder Penfield -Larry Nassar -Blue Moon -Mexico earthquake -Super Bowl score -Super Bowl score -Virginia Woolf -Patriots -Florida shooting -Government shutdown -Chris Long -Florida shooting -Government Shutdown -State of the Union -UFC 220 -Winter Olympics -Super Bowl score -CNN -New England Patriots owner -Trump State of the Union -Elizabeth Blackwell -New England Patriots owner -Elizabeth Blackwell -Virginia Woolf -Government shutdown 2018 -Patriots -Super Bowl 2018 -Elizabeth Blackwell -Sergei Eisenstein -Winter Olympics -What Time Is The Super Bowl -Virginia Woolf -Kingdom Come Deliverance -Wilder Penfield -Wilder Penfield -What Time Is The Super Bowl -Oscar Nominations 2018 -Cherry Seaborn -SpaceX -12 Strong -Don Lemon -Google Classroom -Happy Valentines Day -Government Shutdown -Super Bowl Commercials -Super Bowl score -Shaun White -Hope Hicks -Cherry Seaborn -What Time Is The Super Bowl -Brynn Cameron -Winter Olympics -Carter G. Woodson -Grammys 2018 -Larry Nassar -Kylie Jenner Baby Girl -Virginia Woolf -Sergei Eisenstein -Kesha Grammy -Ronaldinho -Larry Nassar -calculator -Google docs -Patriots -Ant Man and the Wasp -This Is Us -Scott Baio -Dwyane Wade -Celebrity Big Brother cast -Wilder Penfield -Sergei Eisenstein -James Maslow -NHL All Star Game -Virginia Woolf -Elizabeth Blackwell -Virginia Woolf -Shaun White -Super blue blood Moon -Justin Timberlake -Deadpool 2 -Super Bowl score -Scott Baio -Dennis Edwards -Wilder Penfield -Super Bowl score -Carter G. Woodson -Oscar Nominations 2018 -Paula Modersohn-Becker -Vince McMahon -Sergei Eisenstein -Dow Jones -Super Bowl score -Vic Damone -Robert Wagner -Elizabeth Blackwell -Vikings Vs Eagles -Government shutdown 2018 -Vikings Vs Eagles -Super Bowl 2018 -Fredo Santana -NBA Trades -Paula Modersohn-Becker -Carter G. Woodson -Virginia Woolf -Chloe Kim -Elizabeth Blackwell -Shibutani -Natalie Portman -Cavs -Andrew McCabe -Rasual Butler -Carter G. Woodson -Government shutdown -Ash Wednesday -Josh McDaniels -Bode Miller -Carter G. Woodson -Larry Nassar -Robert Wagner -Did the Groundhog See His Shadow -Winter Olympics -Virginia Woolf -Elton John -Jane Fonda -Kylie Jenner -Roger Federer -Paula Modersohn-Becker -Virginia Woolf -Virginia Woolf -Elizabeth Blackwell -Vikings Vs Eagles -Dow Jones -Kentucky shooting -Naya Rivera -Mark Salling -Paula Modersohn-Becker -Virginia Woolf -Winter Olympics -State of the Union -Fredo Santana -Cavs -Elizabeth Blackwell -All Star Weekend 2018 -Patriots -Government Shutdown -Groundhog Day 2018 -Florida shooting -Sandy Hook -Valentines Day -Paula Modersohn-Becker -SpaceX -Justin Timberlake -Amy Schumer -Black Panther -Chicago West -What Time Is The Super Bowl -BitConnect -United States Of America Winter Olympics -Wilder Penfield -Florida shooting -Google docs -Robert Wagner -Winter Olympics -Patriots -Sergei Eisenstein -Paula Modersohn-Becker -Elizabeth Blackwell -Megan Barry -State of the Union -Kate Upton -Terrell Owens -Winter Olympics -Kylie Jenner -Sergei Eisenstein -Mark Salling -Elizabeth Blackwell -Josh McDaniels -Fifty Shades Freed -NBC Sports -Virginia Woolf -The 15:17 to Paris -Elizabeth Blackwell -NBA Trades -Elizabeth Blackwell -CNN -Highline College -Paula Modersohn-Becker -Sabrina Dhowre -Grammys 2018 -Super Blue Blood Moon -Carter G. Woodson -Edwin Jackson -Patriots -Groundhog Day 2018 -Peter Rabbit -Stormi -Wilder Penfield -Government Shutdown -Meteor -Black Panther -Patriots -Super Bowl score -Snapchat Update -Carter G. Woodson -Maddie Mastro -Tessa Virtue -Pro Bowl 2018 -Manchester United -Isaiah Thomas -Florida shooting -Winter Olympics -Super Bowl score -What Time Is The Super Bowl -Government Shutdown 2018 -Red Gerard -Virginia Woolf -Justin Timberlake -Patriots -Super Bowl 2018 -Virginia Woolf -Sal Castro Middle School -Black Panther -Chloe Kim -Lil Xan -Dwyane Wade -Elizabeth Blackwell -Alaska earthquake -Winter Olympics -Ash Wednesday -Den of Thieves -Super Bowl score -New England Patriots owner -Laura Ingraham -NBA Trades -Google docs -Wilder Penfield -State of the Union -Chloe Kim -Paula Modersohn-Becker -Virginia Woolf -Elizabeth Blackwell -Super blue blood Moon -CNN -Release The Memo -Best Superbowl Commercials 2018 -Ash Wednesday -Virginia Woolf -Jimmy Kimmel -Wilder Penfield -Grammys 2018 -Royal Rumble 2018 -Larry Nassar -Justin Timberlake -Elizabeth Blackwell -Oscar Nominations 2018 -NBA Trades -Vikings Vs Eagles -Kylie Jenner -Larry Nassar -Sergei Eisenstein -Sergei Eisenstein -stock market -Patriots -Daryle Singletary -Government shutdown -Zion Williamson -Kim Kardashian -Bradie Tennell -Grammys 2018 -Paula Modersohn-Becker -What Time Is The Super Bowl -Tom Brady -Wilder Penfield -Justin Timberlake -Despacito -Sergei Eisenstein -Winter Olympics -Westerville Ohio -Forever My Girl -Kylie Jenner -SpaceX -Carter G. Woodson -Groundhog Day 2018 -Otto Warmbier -Valentines Day -Justin Timberlake -Sergei Eisenstein -Andre the Giant -Dwyane Wade -Super Bowl score -Winter Olympics -Mcdonald's -Florida shooting -Homeland -Elizabeth Blackwell -Justin Timberlake -Royal Rumble 2018 -North Korean cheerleaders -Bitcoin Price -Paula Modersohn-Becker -Larry Nassar -Elizabeth Blackwell -Lunar eclipse -Elizabeth Blackwell -What Time Is The Super Bowl -The Resident -Super blue blood Moon -Winter Olympics -Duke Basketball -Amy Schumer -Eric Wood -Virginia Woolf -Paula Modersohn-Becker -Winter Olympics -Super Bowl score -Westerville Ohio -Kylie Jenner -SpaceX -CBS Sports -Carter G. Woodson -Elizabeth Blackwell -Altered Carbon -Justin Timberlake -SAG Awards 2018 -Omarosa -What Time Is The Super Bowl -Wilder Penfield -Sergei Eisenstein -Elizabeth Blackwell -SAG Awards 2018 -Valentines Day -Mike Tomlin -Vikings Vs Eagles -Mark Salling -Super Bowl score -Super blue blood Moon -CNN -Call Me by Your Name -Super Bowl score -Patriots -Oar Olympics -Carter G. Woodson -Super Bowl score -Super Bowl 2018 -Tara Lipinski -Super Bowl 2018 -SpaceX -Google Drive -Florida shooting -Kentucky shooting -Mardi Gras 2018 -Winter Olympics -Release The Memo -Carter G. Woodson -Fredo Santana -Obama portrait -Winter Olympics -Super Bowl 2018 halftime show -Winter Olympics -Paula Modersohn-Becker -Adam Schiff -Earthquake Today -SpaceX -Wilder Penfield -Royal Rumble 2018 -Elizabeth Blackwell -Oar Olympics -Winter Olympics -Halsey -Patriots -Sea Of Thieves -Super Bowl 2018 halftime show -Nathan Chen -Chris Stapleton -Winter Olympics -Amazon Stock -Lunar eclipse -Chrissy Teigen -Dwyane Wade -Olive Garden -Winter Olympics -Super Bowl score -Larry Nassar -Obama portrait -Winter Olympics -Paula Modersohn-Becker -Florida shooting -H&r Block -Dow Jones -Fredo Santana -Government Shutdown -Black Panther -Super blue blood Moon -Evgenia Medvedeva -Winter Olympics -Mardi Gras 2018 -Sergei Eisenstein -Florida shooting -Patriots -Carter G. Woodson -This Is Us -What Time Is The Super Bowl -Royal Rumble 2018 -calculator -Kylie Jenner -Virginia Woolf -Carter G. Woodson -Dow Jones -Kylie Jenner -Super Bowl score -Grammys 2018 -Adam Rippon -Kylie Jenner -Patriots -Florida shooting -Sal Castro Middle School -Fifty Shades Freed -United States Of America Winter Olympics -Government shutdown 2018 -United States Of America Winter Olympics -Justin Timberlake -Winter Olympics -Super Bowl 2018 halftime show -Virginia Woolf -Winter Olympics -Patriots -NFC Championship Game 2018 -Camila Cabello -John Mahoney -Wilder Penfield -Winter Olympics -Elizabeth Blackwell -Duke basketball -Waco -Kylie Jenner -Mikaela Shiffrin -SpaceX -Happy Valentines Day -Carter G. Woodson -Den of Thieves -Winter Olympics -Patriots -SAG Awards 2018 -Virginia Woolf -Real Madrid -State of the Union -NBA Trades -Matt Patricia -New California -XIV -Royal Rumble 2018 -Grammys 2018 -Virginia Woolf -SpaceX -Pro Bowl 2018 -Kylie Jenner -Black Panther -Super Bowl score -Alex Smith -Larry Nassar -Louise Linton -Elizabeth Blackwell -UFC 220 -Government shutdown -Tom Petty -Alaska earthquake -Grammys 2018 -Royal Rumble 2018 -Childish Gambino -Florida shooting -The 15:17 to Paris -Justin Timberlake -Fredo Santana -Sting -Cavs -Virginia Woolf -Gigi Hadid -Paula Modersohn-Becker -Super Bowl 2018 -Elizabeth Blackwell -This Is Us -Scott Baio -Alessia Cara -Amy Schumer -What Time Is The Super Bowl -Carter G. Woodson -Patriots -Elizabeth Blackwell -Happy Valentines Day -Justin Timberlake -Paula Modersohn-Becker -Grammys 2018 -Trump State of the Union -Oscar Nominations 2018 -Call Me by Your Name -Did the Groundhog See His Shadow -Groundhog Day 2018 -Hostiles -AFC Championship Game 2018 -Sergei Eisenstein -Outback Steakhouse -Patriots -Gods Plan -Winter Olympics -Elizabeth Blackwell -Kylie Jenner -Oscar Nominations 2018 -Adam Hicks -Justin Timberlake -Rasual Butler -Paula Modersohn-Becker -Super Bowl score -Super Bowl 2018 -Happy Valentines Day -UFC 220 -Virginia Woolf -Mark Salling -Carter G. Woodson -happy new year in Chinese -Adam Rippon -Justin Timberlake -Wilder Penfield -Rodney Hood -Sergei Eisenstein -Super Bowl 2018 -Super Bowl Commercials 2018 -Virginia Woolf -Isaiah Thomas -Grammys 2018 -Elizabeth Blackwell -Sergei Eisenstein -Emily Sweeney -Virginia Woolf -Carter G. Woodson -Wilder Penfield -Patriots -United States Postal Service -Mark Salling -Kylie Jenner -Post Malone -Dwyane Wade -Pro Bowl 2018 -Altered Carbon -Patti LuPone -Winter Olympics -Winter Olympics -Justin Timberlake -Jimmy Garoppolo -Kentucky shooting -Super Bowl score -Duke Basketball -Wilder Penfield -Blake Griffin -Olympic Medal Count -Super Bowl score -What Time Is The Super Bowl -Oscar Nominations 2018 -Carter G. Woodson -Virginia Woolf -Larry Nassar -Jennifer Aniston -Paula Modersohn-Becker -Groundhog Day 2018 -Elizabeth Blackwell -Justin Timberlake -Patriots -The Home Depot -Sergei Eisenstein -Elizabeth Blackwell -Virginia Woolf -Chicago West -Dane Cook -Wilder Penfield -FA Cup -Virginia Woolf -Florida shooting -Lil Pump -What Time Is The Super Bowl -Super Bowl score -Elizabeth Blackwell -Groundhog Day 2018 -Ash Wednesday -Grammys 2018 -Super Bowl score -Ursula Le Guin -Paula Modersohn-Becker -Happy Valentines Day -Super Bowl score -Wilder Penfield -Winter Olympics -Sergei Eisenstein -SpaceX -CBS Sports -Florida shooting -Super Bowl 2018 -Super Bowl score -Kim Kardashian -Winter Olympics -Celebrity Big Brother cast -Cloverfield Paradox -Steve Mcnair -Dolly Parton -school closings -John Mahoney -Carter G. Woodson -Larry Nassar -Virginia Woolf -Happy Valentines Day -The 15:17 to Paris -Florida shooting -Groundhog Day 2018 -Vikings Vs Eagles -Westerville Ohio -Carter G. Woodson -Sergei Eisenstein -Sergei Eisenstein -Larry Nassar -Winter Olympics -Super Bowl 2018 -Amazon stock -What Time Is The Super Bowl -Larry Nassar -Oar Olympics -Wilder Penfield -Vikings vs Eagles -Larry Nassar -Happy Valentines Day -Winter Olympics -Carter G. Woodson -Solo Trailer -Lakers -Nba All Star Draft -Edible Arrangements -Super Bowl Commercials 2018 -Elizabeth Blackwell -Vanessa Trump -Kim Kardashian -Florida shooting -Winter Olympics -Super blue blood Moon -Black Panther -Derrick Rose -Tom Petty -Winter Olympics -Nintendo Labo -Bitcoin Price -Florida shooting -Oscar Nominations 2018 -Andrew Cunanan -Carter G. Woodson -John Mahoney -Elizabeth Blackwell -Wilder Penfield -Winter Olympics -Super Bowl score -Football Playoffs 2018 -Adam Rippon -Jason Kelce -Jennifer Aniston -Dwyane Wade -Kylie Jenner -Paula Modersohn-Becker -Sergei Eisenstein -Elizabeth Blackwell -Grammys 2018 -National Pizza Day -Winter Olympics -Alexander Polinsky -Justin Timberlake -Sabrina Dhowre -Andre the Giant -Trump Hair -Trump State of the Union -Elton John -Happy Valentines Day -Government shutdown 2018 -Morgan Freeman -Happy Valentines Day -Valentines Day -Carter G. Woodson -Carter G. Woodson -Nancy Pelosi -Virginia Woolf -Joe Kennedy -Florida shooting -Shaun White -Costco Wholesale -Elizabeth Blackwell -Wilder Penfield -SpaceX -Dane Cook -Winter Olympics -Super Bowl score -Monster Hunter World -Super Bowl 2018 -Google docs -United States Of America Winter Olympics -Virginia Woolf -Larry Nassar -Valentines Day -SAG Awards 2018 -Super Bowl 2018 -Kristaps Porzingis -Jessica Chastain -Daryle Singletary -Korea -Virginia Woolf -Kylie Jenner -Kylie Jenner -calculator -Super Bowl score -Caroline Wozniacki -Patriots -Andrew Cunanan -Patriots -NFL Honors -Super Bowl 2018 -Carter G. Woodson -Happy Valentines Day -Carter G. Woodson -Chipper Jones -Wilder Penfield -Quincy Jones -State of the Union -SpaceX -12 Strong -Elizabeth Blackwell -Super Bowl score -Jason Kelce -Patriots -Chloe Kim -Ted Bundy -Grammys 2018 -Tyler Hilinski -Grammys 2018 -Andre Roberson -Super Bowl score -Chinese New Year 2018 -Super Bowl score -Mikaela Shiffrin -State of the Union -Ash Wednesday -Olympic Medal Count -CBS Sports -Larry Nassar -Bitcoin Price -Danielle Herrington -Carter G. Woodson -Carter G. Woodson -Patriots -Bitcoin Price -Paula Modersohn-Becker -Super Bowl score -Jessica Chastain -Vikings Vs Eagles -Did the Groundhog See His Shadow -Jamie Anderson -Paula Modersohn-Becker -Peter Rabbit -Larry Nassar -Farmers Insurance Open 2018 -Virginia Woolf -Yu Darvish -Pro Bowl 2018 -Groundhog Day 2018 -Brie Larson -James Baldwin -Sergei Eisenstein -What Time Is The Super Bowl -Super Bowl 2018 -Virginia Woolf -Super Blue Blood Moon -calculator -Yu Darvish -Vikings Vs Eagles -What Time Is The Super Bowl -Paula Modersohn-Becker -Rodney Hood -Trump State of the Union -Culture 2 -Portia de Rossi -IXL -Celtics -State of the Union -What Time Is The Super Bowl -SAG Awards 2018 -Mardi Gras 2018 -Amtrak -Peter Rabbit -Carter G. Woodson -Aaron Fies -SpaceX -Florida shooting -Super Bowl 2018 -Super Bowl score -Scott Baio -Sergei Eisenstein -Celtics -Google Classroom -Winter Olympics -Super Bowl 2018 -Mike Vrabel -Eli Manning -Patriots -Hailee Steinfeld -Winter Olympics -Cavs -Super Bowl score -SpaceX -Paula Modersohn-Becker -Red Gerard -Omarosa -Oscar Nominations 2018 -SpaceX -Lady Bird -Oscar Nominations 2018 -Super Bowl score -Sergei Eisenstein -NBA Trades -Black Panther -Trump State of the Union -Wilder Penfield -Carter G. Woodson -Trump State of the Union -Government Shutdown Meaning -Super Bowl Commercials 2018 -Larry Nassar -State of the Union -Paula Modersohn-Becker -SpaceX -Morgan Freeman -Larry Nassar -Sergei Eisenstein -Peter Rabbit -Mardi Gras 2018 -Justin Timberlake -Super Bowl score -Super Bowl score -SpaceX -AR-15 -Super Bowl score -Greg Monroe -Super blue blood Moon -Release The Memo -Sea Of Thieves -Shaun White -Justin Timberlake -Paula Modersohn-Becker -Alaska earthquake -Sergei Eisenstein -Wilder Penfield -Justin Timberlake -Sergei Eisenstein -Winter Olympics -Hope Hicks -Florida shooting -Maze Runner: The Death Cure -Super Bowl score -Greg Monroe -Venom -Justin Timberlake -Enzo Amore -Florida shooting -Winter Olympics -Justin Timberlake -Did the Groundhog See His Shadow -Bitcoin Price -Sergei Eisenstein -Lindsey Vonn -Yahoo Finance -Patriots -United States Of America Winter Olympics -Eli Manning -Super Bowl 2018 -Kesha Grammy -Super Bowl score -Carter G. Woodson -Sergei Eisenstein -Virginia Woolf -Oscar Nominations 2018 -Justin Timberlake -Winter Olympics -SpaceX -Carter G. Woodson -Dow Jones -Wilder Penfield -Paula Modersohn-Becker -Robert Wagner -Daryle Singletary -Isaiah Thomas -SpaceX -Kelsey Grammer -Carter G. Woodson -Elton John -Elizabeth Blackwell -Valentines Day -Real Madrid -Harley Barber -Wilder Penfield -Kentucky shooting -Dow Jones -Sergei Eisenstein -Tom Petty -Winter Olympics -Apolo Ohno -Elizabeth Blackwell -Amy Schumer -Winter Olympics -Wilder Penfield -Nba All Star Draft -Paula Modersohn-Becker -Cbs -Patriots -Carter G. Woodson -Carter G. Woodson -Sergei Eisenstein -Elizabeth Blackwell -Winter Olympics -Florida shooting -Elizabeth Blackwell -Elizabeth Blackwell -Jacob Copeland -SpaceX -Adam Schiff -Pro Bowl 2018 -Vikings vs Eagles -NBA Trades -Sergei Eisenstein -Kylie Jenner -Tesla in space -Tom Petty -Vikings Vs Eagles -Royal Rumble 2018 -Florida shooting -Blood Moon -Patriots -Groundhog Day 2018 -Paula Modersohn-Becker -What Time Is The Super Bowl -Sergei Eisenstein -Camila Cabello -Did the Groundhog See His Shadow -Peter Rabbit -Patriots -Nathan Chen -Government shutdown 2018 -Johnny Weir -What Time Is The Super Bowl -National Pizza Day -Immaculate Conception -Brynn Cameron -Florida shooting -Super Bowl score -Fredo Santana -Florida shooting -Virginia Woolf -National Pizza Day -Kylie Jenner -Logan Paul -Super Bowl 2018 -XIV -Patriots -Sergei Eisenstein -school closings -Carter G. Woodson -Florida shooting -Paula Modersohn-Becker -H&r Block -XIV -Celtics -Carter G. Woodson -Adam Rippon -Nancy Pelosi -Florida shooting -Carter G. Woodson -Wilder Penfield -Grammys 2018 -Sergei Eisenstein -Elizabeth Blackwell -Super Bowl 2018 -Andrew Cunanan -Super blue blood Moon -Adam Rippon -Super Bowl score -Blake Griffin -Super Bowl score -Chris Paul -Amy Schumer -Chicago West -Jon Huntsman -Obama portrait -New England Patriots owner -Wilder Penfield -Wilder Penfield -Shaun White -Vikings Vs Eagles -Obama portrait -Super blue blood Moon -Super Bowl score -Doomsday Clock -Florida shooting -Kylie Jenner -Google Classroom -Lunar eclipse -Florida shooting -Dow Jones -Grammys 2018 -Winter Olympics -Tesla in space -Carter G. Woodson -Super Bowl score -Shaun White -National Pizza Day -Kesha -Groundhog Day 2018 -Reg E Cathey -Wilder Penfield -Kylie Jenner -weather tomorrow -Virginia Woolf -Florida shooting -Costco Wholesale -Oscar Nominations 2018 -Valentines Day -Winter Olympics -Carter G. Woodson -Terrell Owens -Happy Valentines Day -Sergei Eisenstein -Blake Griffin -Wilder Penfield -Wilder Penfield -Elizabeth Blackwell -Did the Groundhog See His Shadow -Virginia Woolf -Super Bowl 2018 -Eli Manning -Taiwan -New England Patriots owner -Andrew McCabe -SpaceX -Memo -Pro Bowl 2018 -Nancy Pelosi -Paula Modersohn-Becker -Sergei Eisenstein -Vikings Vs Eagles -Super Bowl score -Carter G. Woodson -Super Bowl Commercials 2018 -Grammys 2018 -Patriots -Yoel Romero -Lil Pump -Olympic Medal Count -Larry Nassar -Shaun White -Esteban Loaiza -What Time Is The Super Bowl -Olympic Medal Count -Dragon Ball Super -Kylie Jenner -Jon Huntsman -curling -Florida shooting -Grammys 2018 -SpaceX -Best Superbowl Commercials 2018 -Vikings Vs Eagles -Sergei Eisenstein -Super Bowl 2018 -Florida shooting -Patriots -Carter G. Woodson -Mark Salling -Justin Timberlake -Paula Modersohn-Becker -Sergei Eisenstein -Olive Garden -National Pizza Day -Super blue blood Moon -Paula Modersohn-Becker -Florida shooting -What Time Is The Super Bowl -Grammys 2018 -Snapchat Update -Tara Lipinski -Virginia Woolf -Larry Nassar -State of the Union -Winter Olympics -Monster Hunter World -Adam Rippon -Sergei Eisenstein -Grammys 2018 -SpaceX -Nba All Star Draft -Grammys 2018 -Government Shutdown -Mardi Gras 2018 -Valentines Day Memes -Carter G. Woodson -Mcdonald's -Groundhog Day 2018 -Vikings Vs Eagles -Super Bowl Commercials -Sabrina Dhowre -Paula Modersohn-Becker -Hope Hicks -NBC Sports -Government Shutdown 2018 -Larry Nassar -Sharon Stone -Elizabeth Blackwell -Black Panther -Super Bowl score -Jalen Ramsey -Super Bowl Commercials 2018 -Patriots -Sergei Eisenstein -Wilder Penfield -Carter G. Woodson -Florida shooting -Winter Olympics -Shaun White -Cory Booker -Maddie Mastro -Meteor -Florida shooting -Tyler Hilinski -Government shutdown 2018 -Oscar Nominations 2018 -Winter Olympics -Super Bowl 2018 -Paula Modersohn-Becker -Black Panther -Florida shooting -Duke Basketball -Jason Momoa -Winter Olympics -NBA Trades -Did the Groundhog See His Shadow -Memo -Justin Timberlake -Black Panther -Kentucky shooting -Neil Diamond -NASA -Super Bowl score -Groundhog Day 2018 -What Time Is The Super Bowl -calculator -Celtics -Early Man -Florida shooting -Sergei Eisenstein -Jamie Anderson -NBC Sports -Virginia Woolf -What Time Is The Super Bowl -Fifty Shades Freed -Did the Groundhog See His Shadow -Super Bowl 2018 -Blake Griffin Trade -Paula Modersohn-Becker -Pro Bowl 2018 -Super Bowl Winners -Justin Timberlake -Larry Nassar -Government Shutdown -Luke Wilson -Quincy Jones -Cryptocurrency News -Dane Cook -Rob Delaney -Meteor -Grammys 2018 -SpaceX -Elizabeth Blackwell -Fifty Shades Freed -SAG Awards 2018 -Dow Jones -Patriots -Obama portrait -Florida shooting -Larry Nassar -CNN -Chris Mazdzer -Chicago West -Patriots -Dow Jones -Super Bowl score -Wilder Penfield -Larry Nassar -Tony Romo -Lindsey Vonn -Wilder Penfield -Frederick Douglass -calculator -Amy Schumer -Robert Mueller -SpaceX -Super Bowl 2018 -Chinese New Year 2018 -Super Bowl 2018 -Super Bowl score -This Is Us -Virginia Woolf -Mikaela Shiffrin -Florida shooting -Black Panther -SpaceX -Wonder Woman -Winter Olympics -Government Shutdown -Peter Rabbit -Blake Griffin -NFC Championship Game 2018 -Florida shooting -Virginia Woolf -Yuzuru Hanyu -Wilder Penfield -NBA Trades -Sergei Eisenstein -Grammys 2018 -Otto Warmbier -Super Bowl 2017 -Black Panther -Olympic medal count -North Korean cheerleaders -Kylie Jenner -Sergei Eisenstein -Winter Olympics -Patriots -What Time Is The Super Bowl -Super Bowl score -UFC 221 -Super Bowl 2018 -Larry Nassar -Elizabeth Blackwell -Carter G. Woodson -Obama portrait -Super Bowl score -Wilder Penfield -Larry Nassar -Carter G. Woodson -Elizabeth Blackwell -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl 2018 -Kylie Jenner -This Is Us -Joe Kennedy -Florida shooting -Blue Ivy -Kylie Jenner -Kylie Jenner -Government Shutdown -Wilder Penfield -Trump State of the Union -Solo Trailer -Wilder Penfield -Nba All Star Draft -Olive Garden -What Time Is The Super Bowl -Vikings Vs Eagles -Grammys 2018 -Winter Olympics -XFL -Vanessa Trump -Arsenal -Left Shark -Patriots -Blake Griffin -Mardi Gras 2018 -calculator -Alex Reimer -Kawhi Leonard -Tammy Duckworth -Paula Modersohn-Becker -Virginia Woolf -Sergei Eisenstein -Kylie Jenner -Patriots -What Time Is The Super Bowl -Chloe Kim -Carter G. Woodson -Scott Baio -Warren Miller -Paula Modersohn-Becker -Virginia Woolf -Peter Rabbit -Patriots -Amy Schumer -Obama portrait -Carter G. Woodson -Omarosa -Fredo Santana -Government Shutdown -Florida shooting -Florida shooting -Carter G. Woodson -Florida shooting -Valentines Day -Kylie Jenner -Patriots -Sergei Eisenstein -Elizabeth Blackwell -Mark Salling -Super blue blood Moon -Justin Timberlake -Jennifer Aniston -Paula Modersohn-Becker -Paula Modersohn-Becker -Paula Modersohn-Becker -Fredo Santana -Kratom -SpaceX -Winter Olympics -Cloverfield Paradox -Carter G. Woodson -Paula Modersohn-Becker -Virginia Woolf -Paula Modersohn-Becker -What Time Is The Super Bowl -Childish Gambino -Snap Stock -Kylie Jenner -Shaun White -Sergei Eisenstein -Justin Timberlake -Isaiah Thomas -Justin Timberlake -NBA Trades -Virginia Woolf -Stan Lee -Virginia Woolf -Vikings Vs Eagles -NBA Trades -stock market -Steve Wynn -Patriots -Florida shooting -Super Bowl score -Super Bowl 2018 -The Home Depot -Forever My Girl -Vikings Vs Eagles -Sergei Eisenstein -Sergei Eisenstein -Jason Kidd -Vikings Vs Eagles -Google docs -Florida shooting -Alaska earthquake -Paula Modersohn-Becker -Mark Salling -Super Blue Blood Moon -Elizabeth Blackwell -Wilder Penfield -Sergei Eisenstein -New England Patriots owner -Wilder Penfield -Alaska earthquake -Cherry Seaborn -Pro Bowl 2018 -Virginia Woolf -Florida shooting -Trump State of the Union -Super Bowl 2018 -Virginia Woolf -Lonzo Ball -Super Bowl score -Shaun White -Florida shooting -Chinese New Year 2018 -Patriots -Bitcoin Price -Gods Plan -Dow Jones -Government Shutdown -Super Bowl score -Blake Griffin -Fifty Shades Freed -Patriots -State of the Union -Virginia Woolf -Elizabeth Blackwell -Trump State of the Union -Wilder Penfield -Elizabeth Blackwell -SAG Awards 2018 -Wilder Penfield -Virginia Woolf -Abraham Lincoln -Winter Olympics -Blood Moon -Mark Salling -What Time Is The Super Bowl -Alex Smith -Virginia Woolf -Virginia Woolf -Mark Salling -Alaska earthquake -Sea Of Thieves -Justin Timberlake -Winter Olympics -Black Panther -Black Panther -Grammys 2018 -Kylie Jenner -Super Bowl score -Wilder Penfield -Florida shooting -Larry Nassar -Winter Olympics -Elizabeth Blackwell -Super Bowl 2018 -Super Bowl 2018 -Patriots -Obama portrait -Jason Kelce -Patriots -Super Bowl score -Obama portrait -Mardi Gras 2018 -Chicago West -SpaceX -Jessica Chastain -James Maslow -Royal Rumble 2018 -Dow Jones -Sarah Barthel -Grammys 2018 -Luke Wilson -Mike Tomlin -Cloverfield Paradox -weather tomorrow -Winter Olympics -Hostiles Movie -Justin Timberlake -Government Shutdown -Florida shooting -Chloe Kim -Rasual Butler -Kodak Black -Grammys 2018 -Carter G. Woodson -Joe Kennedy -Chinese New Year 2018 -Sergei Eisenstein -Valentines Day -Elizabeth Blackwell -Happy Valentines Day -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl score -Neil Diamond -Justin Timberlake -Bruno Mars -Wilder Penfield -Chief Wahoo -Kylie Jenner -Mueller -Paula Modersohn-Becker -Portia de Rossi -Elizabeth Blackwell -Eli Manning -Amy Schumer -stock market -Kristaps Porzingis -Elizabeth Blackwell -Kelsey Grammer -Government Shutdown -Earthquake Today -Virginia Woolf -State of the Union -Groundhog Day 2018 -Super Bowl score -Elizabeth Blackwell -Justin Timberlake -Paula Modersohn-Becker -Frank Reich -Winter Olympics -Elizabeth Blackwell -Google docs -Government Shutdown -Cherry Seaborn -Matt Patricia -Alex Smith -Super Bowl score -What Time Is The Super Bowl -XFL -Hostiles -Super Bowl Commercials 2018 -Super Bowl score -Winter Olympics -Paula Modersohn-Becker -Donald Trump Jr -Jennifer Aniston -Sergei Eisenstein -Cavs -Winter Olympics -calculator -IXL -Chicago West -Fortnite New Map -Rett Syndrome -Meteor -Lindsey Vonn -Markelle Fultz -Senior Bowl -This Is Us -Super Bowl score -Edwin Jackson -Vanessa Trump -Sergei Eisenstein -Alaska earthquake -Carter G. Woodson -Super blue blood Moon -Carter G. Woodson -Blake Griffin Trade -Super Bowl 2018 -calculator -Winter Olympics -AR-15 -Florida shooting -Obama portrait -Patriots -Paula Modersohn-Becker -Patriots -CNN -Super Bowl score -CNN -Kylie Jenner -Super Bowl 2018 -XFL -Stormi -Isaiah Thomas -Justin Timberlake -Patriots -Kim Kardashian -Kylie Jenner -Patriots -Betty White -Groundhog Day 2018 -SpaceX -NBA Trades -Carter G. Woodson -Lauren Davis -Sergei Eisenstein -Kesha Grammy -This Is Us -Eli Manning -Memo -Sammy Sosa -Sergei Eisenstein -State of the Union -Grammys 2018 -Cavs -Elizabeth Blackwell -Patriots -Did the Groundhog See His Shadow -Government Shutdown -Zion Williamson -Ann Curry -Chris Stapleton -Chloe Kim -Kylie Jenner Baby Girl -Florida shooting -Alexa Commercial -Mark Salling -Princess Eugenie -Wilder Penfield -Did the Groundhog See His Shadow -Sergei Eisenstein -Elizabeth Blackwell -Jessica Chastain -Super Bowl 2018 -Virginia Woolf -Frank Reich -State of the Union -Sergei Eisenstein -Winter Olympics -Super Bowl score -Florida shooting -What Time Is The Super Bowl -Elton John -Super Blue Blood Moon -Cloverfield Paradox -Women's March 2018 -H&r Block -Paula Modersohn-Becker -Anthony Davis -Patriots -Dwyane Wade -Government shutdown -Justin Timberlake -Farmers Insurance Open 2018 -Florida shooting -Josh McDaniels -What Time Is The Super Bowl -State of the Union -Justin Timberlake -Carter G. Woodson -Olympics 2018 -NBA Trades -Yu Darvish -Sergei Eisenstein -What Time Is The Super Bowl -Sergei Eisenstein -Purdue basketball -Mexico Vs Bosnia -New England Patriots owner -Vanessa Trump -Government shutdown -Patti LuPone -Chinese New Year 2018 -Paula Modersohn-Becker -Patriots -Kylie Jenner -Justin Timberlake -Super Bowl score -Larry Nassar -Florida shooting -Grammys 2018 -United States Of America Winter Olympics -Obama portrait -Valentines Day -Rodney Hood -Oscar Nominations 2018 -Trayvon Martin -NBA Trades -Carter G. Woodson -Super Bowl 2018 -Trump State of the Union -The 15:17 to Paris -Virginia Woolf -Once Upon a Time -Paula Modersohn-Becker -Florida shooting -Paula Modersohn-Becker -Royal Rumble 2018 -Happy Valentines Day -Wilder Penfield -Alaska earthquake -Elizabeth Blackwell -Scott Baio -Super Bowl 2018 -Sergei Eisenstein -Black Panther -Super Bowl score -Phantom Thread -Government shutdown 2018 -Valentines Day -Rasual Butler -Sergei Eisenstein -Mueller -Esteban Loaiza -Florida shooting -Super Bowl score -Super Bowl score -Luke Wilson -SAG Awards 2018 -Jessica Chastain -Grammys 2018 -Government shutdown 2018 -Trey Gowdy -calculator -Betty White -Eli Manning -Jessica Chastain -Carter G. Woodson -Paula Modersohn-Becker -Wilder Penfield -Florida shooting -Fredo Santana -Sergei Eisenstein -Real Madrid -Paula Modersohn-Becker -Logan Paul -Dow Jones -slides -Fredo Santana -Florida shooting -Adam Hicks -Bitcoin Price -Grammys 2018 -Sabrina Dhowre -Grammys 2018 -SZA -Sal Castro Middle School -Carter G. Woodson -Vikings Vs Eagles -Aliona Savchenko -Chicago West -Johnny Weir -Carter G. Woodson -Carter G. Woodson -Larry Nassar -Florida shooting -Did the Groundhog See His Shadow -Virginia Woolf -Chloe Kim -Dennis Edwards -Virginia Woolf -Winter Olympics -Patriots -Sergei Eisenstein -Solo Trailer -Black Panther -CNN -All Star Weekend 2018 -Grammys 2018 -Mark E Smith -Dwyane Wade -State of the Union -NBA Trades -Florida shooting -Kevin Love -Florida shooting -Justin Timberlake -Wilder Penfield -Elizabeth Blackwell -Oscar Nominations 2018 -Ellen DeGeneres -Carter G. Woodson -Sergei Eisenstein -What Time Is The Super Bowl -Fifty Shades Freed -Patriots -Paula Modersohn-Becker -SpaceX -CNN -Bitcoin Price -Mark Salling -Government Shutdown -Elizabeth Blackwell -Nathan Chen -Super Bowl 2018 -United States Of America Winter Olympics -Sergei Eisenstein -Kesha -Wilder Penfield -Valentines Day -Chinese New Year 2018 -Sergei Eisenstein -John Mahoney -Vanessa Trump -Elizabeth Blackwell -Josh McDaniels -Mardi Gras 2018 -Kentucky shooting -Wilder Penfield -Real Madrid -Olympic medal count -Royal Rumble 2018 -Paul Ryan -Larry Nassar -Super Bowl 2018 -Alaska earthquake -Betty White -Greg Monroe -Kylie Jenner -Virginia Woolf -Emily Sweeney -Dow Jones -United States Of America Winter Olympics -Carter G. Woodson -Super Bowl 2018 -Patriots -Greg Monroe -Black Panther -Memo -Betty White -Mr Rogers -Winter Olympics -Larry Nassar -What Time Is The Super Bowl -Mikaela Shiffrin -Super Bowl 2018 -Carter G. Woodson -Chinese New Year 2018 -Super Bowl score -Chloe Kim -Peter Rabbit -Black Panther -Winter Olympics -Winter Olympics -Super blue blood Moon -Winchester -Snapchat Update -Carter G. Woodson -Riverdale -Kim Cattrall -Mark Salling -Super Bowl 2018 -Larry Nassar -Steve Mcnair -NBA Trades -Tom Izzo -Winter Olympics -Super Bowl score -Super Bowl 2018 -Lakers -AFC Championship Game 2018 -Valentines Day -NBA Trades -Oscar Nominations 2018 -Super Bowl score -James Harden -Bitcoin Price -Virginia Woolf -New California -fake news awards -Larry Nassar -Elizabeth Blackwell -Duke basketball -Sergei Eisenstein -Elizabeth Blackwell -Carter G. Woodson -Elizabeth Blackwell -Larry Nassar -Super Bowl 2018 -Dow Jones -Grammys 2018 -Elizabeth Blackwell -Paula Modersohn-Becker -Meteor -Kylie Jenner -Black Panther -Super Bowl 2018 -Black Panther -Justin Timberlake -Quincy Jones -Carter G. Woodson -Paula Modersohn-Becker -Elizabeth Blackwell -SAG Awards 2018 -Ursula Le Guin -Rose McGowan -Super Bowl 2018 -Andre the Giant -SpaceX -Larry Nassar -Wilder Penfield -Winter Olympics -Rob Gronkowski -Patriots -lady gaga grammys -Government Shutdown -Trey Gowdy -Paula Modersohn-Becker -Groundhog Day 2018 -Wilder Penfield -Virginia Woolf -Super Bowl score -Johnny Weir -Larry Nassar -Wilder Penfield -Fifty Shades Freed -Jimmy Garoppolo -Winter Olympics -Super Bowl score -Kentucky shooting -UFC 221 -Carter G. Woodson -Super Bowl score -Paula Modersohn-Becker -Alaska earthquake -Super Bowl score -United States Of America Winter Olympics -Paula Modersohn-Becker -NSA -Blake Griffin Trade -Blake Griffin -The Home Depot -Paula Modersohn-Becker -Peter Rabbit -Sergei Eisenstein -Culture 2 -Winter Olympics -Paula Modersohn-Becker -Culture 2 -Winter Olympics -Harley Barber -Wilder Penfield -Sergei Eisenstein -stock market -Wilder Penfield -Carter G. Woodson -Grammys 2018 -SpaceX -Super Bowl 2018 -SpaceX -Carter G. Woodson -Super Bowl 2018 -Jessica Chastain -Valentines Day Memes -Virginia Woolf -Carter G. Woodson -Wilder Penfield -Wilder Penfield -What Time Is The Super Bowl -Sergei Eisenstein -Obama portrait -Alex Smith -Grammys 2018 -XFL -Florida shooting -Trey Gowdy -Dwyane Wade -Government Shutdown -Toys R Us -Elizabeth Blackwell -Paula Modersohn-Becker -Quincy Jones -Lunar eclipse -Columbine Shooting -Super Bowl Commercials 2018 -Nba All Star Draft -Jo Jo White -What Time Is The Super Bowl -Russell Wilson -Johnny Weir -Kim Kardashian -Grammys 2018 -Florida shooting -Super Bowl score -Wilder Penfield -Ash Wednesday -Valentines Day Memes -Paula Modersohn-Becker -LeBron James -Shaun White -Olympic Medal Count -Larry Nassar -Purdue Basketball -Royal Rumble 2018 -Stephanie Katelnikoff -Robert Mueller -Government Shutdown -Grammys 2018 -Florida shooting -Anastasia Bryzgalova -Winter Olympics -Winter Olympics -Frederick Douglass -Kylie Jenner -Super Bowl score -Terry Bradshaw -MS13 -Larry Nassar -Super Bowl 2018 -Google docs -Tessa Virtue -SpaceX -Pro Bowl 2018 -Kentucky shooting -Super Bowl score -Carter G. Woodson -Black Panther -Paula Modersohn-Becker -Patriots -Google Classroom -Virginia Woolf -Happy Valentines Day -Florida shooting -Carrie Underwood -Waco -Release The Memo -Happy Valentines Day -Patriots -Elizabeth Blackwell -Cavs -Carter G. Woodson -Sergei Eisenstein -SpaceX -Groundhog Day 2018 -fake news awards -School closings -Carter G. Woodson -Dow Jones -SpaceX -Robert Wagner -Paul Ryan -Terrell Owens -Camila Cabello -Super Bowl 2018 -Government Shutdown -Sergei Eisenstein -Jennifer Aniston -Tom Petty -Elizabeth Blackwell -Cryptocurrency News -What Time Is The Super Bowl -NBA Trades -Wilder Penfield -Super Bowl score -Super blue blood Moon -Westerville Ohio -Arsenal -Wilder Penfield -Florida shooting -Bill Belichick -Super Bowl 2018 -Woody Allen -Carter G. Woodson -Wilder Penfield -XFL -Kylie Jenner -Bitcoin Price -Elizabeth Blackwell -Ash Wednesday -Roger Federer -Paula Modersohn-Becker -Kesha -Olive Garden -Pro Bowl 2018 -Stan Lee -Virginia Woolf -Caroline Wozniacki -Hope Hicks -Winter Olympics -Dragon Ball Super -Larry Nassar -Happy Valentines Day -Amazon Stock -Elizabeth Blackwell -School Closings -Florida shooting -Olympic medal count -Elizabeth Blackwell -Alex Smith -Rob Porter -Winter Olympics -All Star Weekend 2018 -Carter G. Woodson -Alaska earthquake -XFL -Ash Wednesday -SpaceX -Mickey Jones -Elizabeth Blackwell -Carter G. Woodson -Ash Wednesday -Paula Modersohn-Becker -Andrew Cunanan -Paula Modersohn-Becker -What Time Is The Super Bowl -Wilder Penfield -Natalie Portman -Rasual Butler -What Time Is The Super Bowl -LeBron James -Classroom -Super Bowl score -Super Bowl 2018 -Cavs -Ash Wednesday -Matt Czuchry -Patriots -Super Bowl 2018 -Brie Larson -Lil Xan -Happy Valentines Day -Super Bowl 2018 -Lunar eclipse -Black Panther -Super Bowl score -Kylie Jenner Baby Girl -Edwin Jackson -Joel Taylor -Elizabeth Blackwell -New California -Obama portrait -Carter G. Woodson -Josh McDaniels -Sergei Eisenstein -Wilder Penfield -Elon Musk -Paula Modersohn-Becker -Patti LuPone -Virginia Woolf -Kratom -Wilder Penfield -Release The Memo -Super Bowl 2018 -Carter G. Woodson -Danielle Herrington -Rasual Butler -12 Strong -Ar 15 -Edwin Jackson -Winter Olympics -Trump State of the Union -Florida shooting -Rasual Butler -Jason Kelce -Obama portrait -Winter Olympics -Warren Miller -Virginia Woolf -Paula Modersohn-Becker -Black Panther -What Time Is The Super Bowl -Super Blue Blood Moon -Virginia Woolf -Kylie Jenner -Virginia Woolf -Super Bowl score -Patriots -Vikings Vs Eagles -Florida shooting -Grammys 2018 -Isaiah Canaan -Larry Nassar -Wilder Penfield -Super Bowl 2018 -Tonga -Chinese New Year 2018 -Rodney Hood -Super Bowl 2018 halftime show -Tom Brady -Super Bowl Commercials 2018 -Patriots -SpaceX -Olympics 2018 -Isaiah Canaan -New England Patriots owner -Ohio State basketball -Oscar Nominations 2018 -Patriots -Patti LuPone -Wilder Penfield -Conor McGregor -Kylie Jenner -Super Bowl score -Chris Stapleton -Super Bowl score -Carter G. Woodson -State of the Union -Lauren Davis -Winter Olympics -Zion Williamson -Quincy Jones -Virginia Woolf -Government Shutdown -Government Shutdown Meaning -Kesha -Sergei Eisenstein -Winter Olympics -Elizabeth Blackwell -Kylie Jenner Baby Girl -Tonga -Blake Griffin -State of the Union -school closings -Virginia Woolf -Paula Modersohn-Becker -Cavs -Did the Groundhog See His Shadow -Kevin Durant -Sergei Eisenstein -Daryle Singletary -Carter G. Woodson -Super Bowl score -Oar Olympics -What Time Is The Super Bowl -Trump State of the Union -Elizabeth Blackwell -Winter Olympics -Jason Momoa -Johnny Weir -Government shutdown -Outback Steakhouse -Valentines Day Images -Florida shooting -What Time Is The Super Bowl -Government Shutdown -Blood Moon -Solo Trailer -Government shutdown -Grammys 2018 -calculator -Malcom Butler -Shaun White -Russell Wilson -Florida shooting -This Is Us -Lonzo Ball -Jessica Chastain -Alexander Polinsky -Florida shooting -Groundhog Day 2018 -CNN -Trey Gowdy -Virginia Woolf -Hillary Clinton -The Home Depot -Cherry Seaborn -Memo -Sergei Eisenstein -Ash Wednesday -Wilder Penfield -Carter G. Woodson -Mcdonald's -Government Shutdown Meaning -Grammys 2018 -Alaska earthquake -Andrew McCabe -Super Bowl score -Paula Modersohn-Becker -Mattie Larson -Chloe Kim -Carter G. Woodson -Paul Ryan -Super Bowl score -Vikings Vs Eagles -Government shutdown 2018 -Super blue blood Moon -Patriots -Justin Timberlake -Patriots -Vikings Vs Eagles -Vikings Vs Eagles -Quincy Jones -Alaska earthquake -Lunar eclipse -Dow Jones -Joe Kennedy -Google Drive -Valentines Day Memes -Dow Jones -Florida shooting -Virginia Woolf -Mark Salling -Paula Modersohn-Becker -Jeffrey Tambor -CNN -Sergei Eisenstein -Google docs -Trump State of the Union -Wilder Penfield -Sergei Eisenstein -Sergei Eisenstein -Patriots -Sergei Eisenstein -SAG Awards 2018 -Carter G. Woodson -Super Bowl score -Super Bowl score -Wilder Penfield -Winter Olympics -What Time Is The Super Bowl -Government shutdown 2018 -Justin Timberlake -Virginia Woolf -Terrell Owens -Terrell Owens -What Time Is The Super Bowl -Did the Groundhog See His Shadow -NBA Trades -Winter Olympics -Olympic medal count -Florida shooting -Paula Modersohn-Becker -Winchester -Mardi Gras 2018 -Blake Griffin -Ted Bundy -Duke Basketball -Valentines Day -NBA Trades -Chloe Kim -Black Panther -stock market -Patriots -calculator -Carter G. Woodson -Deadpool 2 -Winter Olympics -Justin Timberlake -Super Bowl 2018 -Alaska earthquake -Patriots -Patriots -Super Bowl 2018 -Super Bowl 2018 -Patriots -Mark Salling -Kylie Jenner -Obama portrait -What Time Is The Super Bowl -Florida shooting -Carter G. Woodson -Government Shutdown -What Time Is The Super Bowl -Elizabeth Blackwell -Elizabeth Blackwell -Sergei Eisenstein -Robinhood -Cavs -Timor Leste -Fifty Shades Freed -XFL -Jennifer Aniston -Kylie Jenner -Happy Valentines Day -Super Bowl score -Winter Olympics -calculator -Winter Olympics -Florida shooting -Super Blue Blood Moon -Winter Olympics -Warren Miller -Virginia Woolf -Puppy Bowl 2018 -Super Bowl score -Kylie Jenner -Winter Olympics -Cloverfield Paradox -Carter G. Woodson -Carter G. Woodson -Morgan Freeman -Justin Timberlake -Enzo Amore -Don Lemon -Korea -Halsey -Super Bowl 2018 -Jen Selter -Michelle Obama -Wilder Penfield -Virginia Woolf -New England Patriots owner -Carter G. Woodson -Sarah Barthel -Vikings Vs Eagles -Florida shooting -State of the Union -Shaun White -Florida shooting -Virginia Woolf -Dane Cook -What Time Is The Super Bowl -Johnny Weir -Super Bowl score -SpaceX -school closings -Super Bowl 2018 -Patriots -Black Panther -Winter Olympics -Amtrak -Dow Jones -Daryle Singletary -Sergei Eisenstein -XIV -Robert Wagner -Government Shutdown Meaning -Jason Kelce -Get Out -Sergei Eisenstein -Wilder Penfield -XFL -Winter Olympics -Florida shooting -Isaiah Canaan -Lindsey Vonn -Cavs -Government Shutdown -Super Bowl 2018 -School Closings -Walter Payton -Pro Bowl 2018 -Super Bowl score -SAG Awards 2018 -Mardi Gras 2018 -Sergei Eisenstein -John Mahoney -Kodak Black -Bob Marley -Winter Olympics -Virginia Woolf -Elizabeth Blackwell -Justin Timberlake -Justin Timberlake -Alex Smith -Sergei Eisenstein -AFC Championship Game 2018 -Paula Modersohn-Becker -Carrie Underwood -Royal Rumble 2018 -Tom Petty -Mikaela Shiffrin -Super Bowl score -Paula Modersohn-Becker -Prince William -Isaiah Thomas -Erykah Badu -Bitcoin Price -Alex Smith -Red Gerard -Patriots -Carter G. Woodson -Carter G. Woodson -Snake -Kylie Jenner -Super Bowl 2018 -Larry Nassar -Rachel Brand -Chicago West -Winter Olympics -Paula Modersohn-Becker -Sergei Eisenstein -Google Classroom -Grammys 2018 -Wilder Penfield -Justin Timberlake -Super Bowl 2018 -Super Bowl 2018 -Virginia Woolf -fake news awards -Virginia Woolf -Government Shutdown -Super Bowl score -Shaun White -Olympic Medal Count -Larry Nassar -Solo Trailer -Super Bowl score -Ronaldinho -Mattie Larson -Elizabeth Blackwell -Government shutdown 2018 -Florida shooting -Patriots -Paula Modersohn-Becker -Florida shooting -Carter G. Woodson -Winter Olympics -Black Panther -Ash Wednesday -Kentucky shooting -SpaceX -Get Out -Pro Bowl 2018 -Robert Wagner -Obama portrait -Super Bowl 2018 -Quincy Jones -happy new year in Chinese -PlayStation Network -Super Bowl 2018 -Wilder Penfield -Google Classroom -Florida shooting -Elizabeth Blackwell -Wilder Penfield -Government Shutdown -Snapchat Update -Patriots -Lakers -Tyler Hilinski -Virginia Woolf -SpaceX -Florida shooting -Tyler Hilinski -Cherry Seaborn -Carter G. Woodson -Sergei Eisenstein -Daryle Singletary -Super Bowl Commercials -Wilder Penfield -Elizabeth Blackwell -Robert Wagner -Super Bowl score -Paula Modersohn-Becker -Did the Groundhog See His Shadow -SpaceX -Chicago West -Childish Gambino -Quincy Jones -Chloe Kim -Justin Timberlake -Carter G. Woodson -Westerville Ohio -Did the Groundhog See His Shadow -Pro Bowl 2018 -Patriots -12 Strong -Super Bowl score -School Closings -UFC 220 -What Time Is The Super Bowl -Tyler Hilinski -What Time Is The Super Bowl -Danielle Herrington -Florida shooting -Florida shooting -school closings -Winter Olympics -Dow Jones -Kratom -Elizabeth Blackwell -Culture 2 -Meteor -Super Bowl 2018 -Kirstjen Nielsen -Elizabeth Blackwell -Black Panther -tsunami -Paula Modersohn-Becker -Super Bowl 2018 -Carter G. Woodson -Government Shutdown -Luke Wilson -Mark Salling -Florida shooting -Wilder Penfield -Grammys 2018 -Government Shutdown Meaning -Government Shutdown -Virginia Woolf -SpaceX -Wilder Penfield -Winter Olympics -Larry Nassar -Joe Kennedy -Justin Timberlake -Super Bowl score -Grammys 2018 -Elizabeth Blackwell -Elizabeth Blackwell -Government Shutdown -Paula Modersohn-Becker -Carter G. Woodson -Elizabeth Blackwell -Larry Nassar -Groundhog Day 2018 -Super blue blood Moon -Wilder Penfield -Winter Olympics -Virginia Woolf -Chloe Kim Snowboarder -Justin Timberlake -Patriots -Patriots -Super Bowl 2018 -Alessia Cara -Mexico Vs Bosnia -Melania Trump -Patriots -Winter Olympics -Government Shutdown Meaning -Red Gerard -Mark Salling -Florida shooting -Carter G. Woodson -Patty Hearst -Venom -Government Shutdown -Super blue blood Moon -Florida shooting -Government Shutdown -Black Panther -CBS Sports -Blue Moon -Paula Modersohn-Becker -Omarosa -SAG Awards 2018 -Larry Nassar -Oar Olympics -Super Bowl score -UFC 220 -Florida shooting -Betty White -Paula Modersohn-Becker -Vikings Vs Eagles -Justin Timberlake -Super Bowl 2018 -Olympic medal count -BitConnect -Google docs -State of the Union -Scott Baio -Super Bowl 2018 -What Time Is The Super Bowl -SpaceX -John Mahoney -Carter G. Woodson -Alessia Cara -Winter Olympics -Gigi Hadid -Florida shooting -Cloverfield Paradox -Elizabeth Blackwell -Elizabeth Blackwell -Nadal -Elizabeth Blackwell -Eli Manning -Jessica Chastain -NBA Trades -Omarosa -Paula Modersohn-Becker -Sergei Eisenstein -Chinese New Year 2018 -This Is Us -12 Strong -Kylie Jenner -Andrew McCabe -Florida shooting -SpaceX -Den of Thieves -Dennis Edwards -Amy Schumer -Super Bowl score -Uma Thurman -Virginia Woolf -Derrick Rose -Virginia Woolf -What Time Is The Super Bowl -Puppy Bowl 2018 -Elizabeth Blackwell -Winter Olympics -Elizabeth Blackwell -NBA Trades -Rodney Hood -Valentines Day -Kylie Jenner -Justin Timberlake -Cavs -Women's March 2018 -Super Bowl 2018 -State of the Union -Google Classroom -Florida shooting -Wilder Penfield -Wilder Penfield -Grammys 2018 -Florida shooting -SAG Awards 2018 -Virginia Woolf -Oscar Nominations 2018 -Grammys 2018 -shutdown -Sergei Eisenstein -Larry Nassar -Sergei Eisenstein -Paula Modersohn-Becker -Paula Modersohn-Becker -SpaceX -Joe Kennedy -Oscar Nominations 2018 -NBA Trades -Super Bowl score -Super Bowl score -Portia de Rossi -Rob Porter -Winter Olympics -Marlon Brando -Winter Olympics -Google Classroom -Wilder Penfield -Dow Jones -Alaska earthquake -Winter Olympics -Fredo Santana -SpaceX -Kirstjen Nielsen -stock market -Duke Basketball -Government shutdown -Solo Trailer -NBA Trades -Florida shooting -Rodney Hood -Patriots -School Closings -Wilder Penfield -Royal Rumble 2018 -Wilder Penfield -Virginia Woolf -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl score -Virginia Woolf -Sergei Eisenstein -Government Shutdown -Justin Timberlake -Ursula Le Guin -Elon Musk -Oscar Nominations 2018 -Elizabeth Blackwell -Mark Salling -What Time Is The Super Bowl -Winter Olympics -Paula Modersohn-Becker -Simona Halep -Paula Modersohn-Becker -Jason Kidd -Sergei Eisenstein -Trump State of the Union -Kentucky shooting -Super Bowl score -Amy Schumer -Meteor -Solo Trailer -Nascar Schedule -Stormi -Mcdonald's -Lil Pump -Mike Fisher -Winter Olympics -Mardi Gras 2018 -Kylie Jenner Baby Girl -Edwin Jackson -Super Bowl 2018 -Paula Modersohn-Becker -Kylie Jenner -Memo -Super Bowl score -Monster Hunter World -Winter Olympics -Tom Petty -Justin Timberlake -Amazon HQ2 -Carter G. Woodson -Shiffrin -Sergei Eisenstein -Florida shooting -Elizabeth Blackwell -Florida shooting -Shaun White -Super Bowl 2018 -Wilder Penfield -Larry Nassar -NBC Sports -Winter Olympics -Elizabeth Blackwell -Florida shooting -Winter Olympics -Sergei Eisenstein -Super Bowl score -Shaun White -Carter G. Woodson -UFC 221 -Patriots -Government Shutdown 2018 -Solo Trailer -Sergei Eisenstein -SpaceX -Amy Schumer -Anastasia Bryzgalova -Vikings Vs Eagles -Duke Basketball -Super Bowl 2018 -Adam Rippon -Kylie Jenner -Blood Moon -Grammys 2018 -Solo Trailer -Groundhog Day 2018 -Carter G. Woodson -Elizabeth Blackwell -Winter Olympics -school closings -Justin Timberlake -Florida shooting -Florida shooting -Winter Olympics -Paula Modersohn-Becker -Caitlin McHugh -Obama portrait -Red Gerard -Nathan Chen -Patriots -Justin Timberlake -school closings -Elizabeth Blackwell -Did the Groundhog See His Shadow -Did the Groundhog See His Shadow -Despacito -Adam Rippon -Virginia Woolf -Winter Olympics -Yu Darvish -Winter Olympics -Paula Modersohn-Becker -SpaceX -Real Madrid -Patriots -Government Shutdown Meaning -Manchester United -Paula Modersohn-Becker -Elizabeth Blackwell -Kingdom Come Deliverance -Wilder Penfield -Dwyane Wade -Tesla in space -New California -Mark Salling -Justin Timberlake -Oscar Nominations 2018 -Dennis Edwards -Vikings vs Eagles -Sergei Eisenstein -Super Bowl score -What Time Is The Super Bowl -Meteor -Larry Nassar -What Time Is The Super Bowl -Despacito -Grammys 2018 -National Pizza Day -Patriots -Andrew Cunanan -Alessia Cara -Waco -Alessia Cara -Elizabeth Blackwell -New England Patriots owner -Florida shooting -Super Bowl 2018 -Government Shutdown -Black Panther -UFC 220 -Adam Rippon -Super Bowl score -Hostiles -Virginia Woolf -Elton John -Adam Rippon -Vanity Fair Cover -State of the Union -Kylie Jenner -Paula Modersohn-Becker -Kim Kardashian -Kentucky shooting -Paula Modersohn-Becker -Peter Rabbit -Virginia Woolf -Solo Trailer -earthquake -Duke Basketball -Patriots -Patriots -Happy Valentines Day -Super Bowl 2018 -Rodney Hood -Tesla in space -Super Bowl score -Super Bowl 2018 -Wilder Penfield -Winter Olympics -Caroline Wozniacki -Justin Timberlake -Patriots -United States Of America Winter Olympics -Daryle Singletary -Hostiles -Cavs -Culture 2 -Sergei Eisenstein -Rob Porter -Carter G. Woodson -Carter G. Woodson -SpaceX -Neil Diamond -Real Madrid -Trey Gowdy -Elizabeth Blackwell -Wilder Penfield -Paula Modersohn-Becker -Norovirus -Wilder Penfield -Kesha -Super Bowl 2018 -What Time Is The Super Bowl -Paula Modersohn-Becker -Patriots -Chloe Kim -Wilder Penfield -UFC 220 -Peter Rabbit -Patriots -Olympic Medal Count -Virginia Woolf -Larry Nassar -Vikings Vs Eagles -Sergei Eisenstein -Memo -Mark Salling -Sergei Eisenstein -Netflix Stock -Chris Stapleton -Alaska earthquake -Ted Bundy -Florida shooting -Betty White -Joel Taylor -Government Shutdown -Kesha Grammy -New England Patriots owner -Virginia Woolf -Jason Kelce -Super Bowl score -Blue Ivy -Olympic Medal Count -What Time Is The Super Bowl -Happy Valentines Day -Government Shutdown Meaning -Florida shooting -John Mahoney -Matt Czuchry -The Home Depot -This Is Us -Oscar Nominations 2018 -Florida shooting -Obama portrait -Rodney Hood -Super blue blood Moon -Government shutdown -This Is Us -Sergei Eisenstein -This Is Us -Larry Nassar -Eli Manning -Forever My Girl -Super Bowl 2018 -Sammy Sosa -Patriots -Florida shooting -Paula Modersohn-Becker -Winter Olympics -Valentines Day Cards -Virginia Woolf -State of the Union -Justin Timberlake -Winter Olympics -Vikings Vs Eagles -Olympic medal count -Larry Nassar -Vikings Vs Eagles -Jason Kelce -Groundhog Day 2018 -stock market -Bitcoin Price -Virginia Woolf -Grey's Anatomy -Joe Kennedy -Jennifer Aniston -Justin Timberlake -Kristaps Porzingis -Carter G. Woodson -Super Bowl 2018 -Florida shooting -Groundhog Day 2018 -Wilder Penfield -Chris Paul -Paula Modersohn-Becker -Megan Barry -Alex Smith -Chinese New Year 2018 -AR-15 -Kim Kardashian -Daryle Singletary -XFL -New England Patriots owner -Google Classroom -Virginia Woolf -Paula Modersohn-Becker -Shaun White -The 15:17 to Paris -Florida shooting -Sergei Eisenstein -Elizabeth Blackwell -Paula Modersohn-Becker -Wilder Penfield -XFL -Patriots -Duke Basketball -Virginia Woolf -Winter Olympics -Wilder Penfield -Joe Kennedy -Bitcoin Price -Kylie Jenner -Kylie Jenner -Groundhog Day 2018 -What Time Is The Super Bowl -Paula Modersohn-Becker -Korea -Winchester -Super Bowl score -Government Shutdown Meaning -Grammys 2018 -Jessica Chastain -Paula Modersohn-Becker -Super Bowl 2018 -Super Bowl score -Grammys 2018 -Virginia Woolf -SAG Awards 2018 -Adam Rippon -Lindsey Vonn -Bradie Tennell -Super Bowl score -Winter Olympics -Patriots -New England Patriots owner -What Time Is The Super Bowl -Camila Cabello -Carter G. Woodson -Johnny Weir -Alaska earthquake -Wilder Penfield -Vikings Vs Eagles -NBA Trades -Happy Valentines Day -Wilder Penfield -Super Bowl 2018 -Robert Wagner -Kylie Jenner -Florida shooting -Kesha Grammy -Valentines Day Memes -What Time Is The Super Bowl -Larry Nassar -Oscar Nominations 2018 -Winter Olympics -All Star Weekend 2018 -Valentines Day -Bill Paxton -Blake Griffin -Fifty Shades Freed -Omarosa -Blake Griffin -Government Shutdown -Justin Timberlake -Super Bowl score -Larry Nassar -Mardi Gras 2018 -Super Bowl 2018 -Happy Valentines Day -CNN -State of the Union -Larry Nassar -Olive Garden -Wilder Penfield -Women's March 2018 -Carter G. Woodson -Florida shooting -Tyler Hilinski -Super Bowl 2018 -weather tomorrow -UFC 220 -Florida shooting -Florida shooting -Daryle Singletary -Childish Gambino -Virginia Woolf -Wilder Penfield -Groundhog Day 2018 -CNN -Carter G. Woodson -New England Patriots owner -Sergei Eisenstein -Luke Wilson -Carter G. Woodson -Trump State of the Union -What Time Is The Super Bowl -SpaceX -Mark Salling -Alex Smith -Super Bowl 2018 -State of the Union -Sergei Eisenstein -Patriots -Carter G. Woodson -Sergei Eisenstein -Evgenia Medvedeva -government shutdown -Carter G. Woodson -Pink -Patriots -Government Shutdown -SpaceX -Shiffrin -Patriots -Rodney Hood -Government Shutdown Meaning -Super Bowl 2018 -Ash Wednesday -What Time Is The Super Bowl -Chinese New Year 2018 -Carter G. Woodson -Paula Modersohn-Becker -Super Bowl 2018 -Robert Wagner -Carter G. Woodson -SpaceX -Josh McDaniels -Wilder Penfield -Amtrak -Virginia Woolf -NBA Trades -Kelly Clark -Frederick Douglass -Wilder Penfield -Kesha -Winter Olympics -What Time Is The Super Bowl -Carter G. Woodson -Justin Timberlake -Dow Jones -Dow Jones -Super Bowl score -Paula Modersohn-Becker -Winter Olympics -Langston Hughes -Cavs -Kylie Jenner -SpaceX -Adam Schiff -Adam Rippon -Shaun White -Waco -School Closings -Ash Wednesday -Chinese New Year 2018 -Super blue blood Moon -Virginia Woolf -Julie Ertz -Mark Salling -Oscar Gamble -Paula Modersohn-Becker -Florida shooting -Elizabeth Blackwell -Sergei Eisenstein -Enzo Amore -Paula Modersohn-Becker -Trump State of the Union -Chinese New Year 2018 -Cloverfield Paradox -Virginia Woolf -Government Shutdown 2018 -Robert Wagner -Patriots -Olympic medal count -Turpin -Logan Paul -Patriots -Super Bowl score -Meteor -Sea of Thieves -Virginia Woolf -Government Shutdown 2018 -Winter Olympics -Groundhog Day 2018 -Den of Thieves -Kylie Jenner -Olive Garden -Carter G. Woodson -Florida shooting -Blue Moon -Wilder Penfield -Black Panther -XFL -Happy Valentines Day -Pro Bowl 2018 -Super Bowl 2018 -Valentines Day -Bitcoin Price -Groundhog Day 2018 -Florida shooting -Super Bowl score -Google Classroom -Royal Rumble 2018 -Cloverfield Paradox -XFL -Sergei Eisenstein -Mikaela Shiffrin -Lindsey Vonn -Sergei Eisenstein -Rose McGowan -Football Playoffs 2018 -Kylie Jenner -Nba All Star Draft -The Alienist -SpaceX -Florida shooting -Elizabeth Blackwell -Government Shutdown 2018 -Shaun White -Isaiah Canaan -Super Bowl score -Sergei Eisenstein -Cnbc -Cherry Seaborn -Oscar Nominations 2018 -Classroom -Nadal -Patriots -Wilder Penfield -James Baldwin -The 15:17 to Paris -Patriots -Government Shutdown -Kim Kardashian -Florida shooting -Grammys 2018 -Paula Modersohn-Becker -H&r Block -Winter Olympics -Steve Wynn -Valentines Day Images -UFC 220 -Groundhog Day 2018 -Wilder Penfield -Elizabeth Blackwell -Cavs -Carter G. Woodson -Turpin -Wilder Penfield -Rasual Butler -Cbs -Michigan State -Ash Wednesday -Carter G. Woodson -Terry Bradshaw -Ash Wednesday -Cherry Seaborn -Government shutdown -Government Shutdown -Chicago Weather -Super Bowl score -Google docs -Grammys 2018 -Nba All Star Draft -Paula Modersohn-Becker -Kylie Jenner Baby Girl -Korea -Alaska earthquake -Patriots -Super Bowl 2018 -Super Bowl score -Virginia Woolf -Virginia Woolf -Emily Sweeney -SpaceX -Super Bowl 2018 -Super Bowl 2018 -Paula Modersohn-Becker -Super Bowl score -United States Of America Winter Olympics -Halsey -Super Bowl Commercials -Vikings Vs Eagles -The Alienist -Winter Olympics -Super Bowl score -Wilder Penfield -Virginia Woolf -Peter Rabbit -Virginia Woolf -Terry Bradshaw -Oscar Nominations 2018 -Super Bowl score -Super Bowl score -Mark Salling -Sergei Eisenstein -Kylie Jenner -Florida shooting -Carter G. Woodson -Justin Timberlake -Kesha Grammy -Kris Dunn -Valentines Day -SpaceX -Super blue blood Moon -Google Classroom -Wilder Penfield -Super Bowl 2018 -Gianni Versace -Happy Valentines Day -Pro Bowl 2018 -Slender Man -UFC 220 -Florida shooting -Patti LuPone -What Time Is The Super Bowl -Shaun White -Den of Thieves -John Mahoney -Winter Olympics -Mark Salling -Virginia Woolf -Larry Nassar -Paula Modersohn-Becker -Super Bowl 2018 -Carter G. Woodson -Blake Griffin -Quincy Jones -Patriots -Alex Smith -Grammys 2018 -tsunami -New England Patriots owner -Vikings Vs Eagles -Elizabeth Blackwell -Carter G. Woodson -Virginia Woolf -Dow Jones -calculator -Larry Nassar -Obama portrait -Yahoo Finance -Vikings Vs Eagles -Patriots -Larry Nassar -Royal Rumble 2018 -Super Bowl 2018 -School Closings -Government Shutdown Meaning -Justin Timberlake -Grammys 2018 -Kentucky shooting -Winter Olympics -Super Bowl 2018 -SpaceX -Bob Marley -SpaceX -calculator -Stormi -Drive -United States Of America Winter Olympics -Virginia Woolf -Virginia Woolf -Valentines Day -Patriots -Super Bowl score -Black Panther -Pro Bowl 2018 -Den of Thieves -Government Shutdown -Valentines Day -Hailee Steinfeld -Russell Wilson -Sea Of Thieves -Lindsey Vonn -Johnny Weir -Outback Steakhouse -Government Shutdown -Super blue blood Moon -Justin Timberlake -John Mahoney -Paula Modersohn-Becker -Elizabeth Blackwell -Elizabeth Blackwell -Wilder Penfield -Josh McDaniels -Edible Arrangements -Childish Gambino -Ohio State basketball -Mardi Gras 2018 -12 Strong -XFL -Sergei Eisenstein -Brie Larson -Adam Rippon -Government shutdown -Josh McDaniels -Joe Kennedy -Bitcoin Price -Chicago West -Olivia Munn -Happy Valentines Day -SpaceX -SpaceX -Google docs -Mardi Gras 2018 -Kylie Jenner -Kylie Jenner -Super Bowl Commercials 2018 -Senior Bowl -Florida shooting -Tom Brady daughter -Florida shooting -Paula Modersohn-Becker -Chris Stapleton -Winter Olympics -State of the Union -SpaceX -The Resident -Johnny Weir -Nba All Star Draft -Super Bowl score -Adam Rippon -Elizabeth Blackwell -Cavs -Elizabeth Blackwell -Mark Salling -Joe Kennedy -Dua Lipa -Grammys 2018 -Virginia Woolf -Winter Olympics -Virginia Woolf -Patriots -Super Bowl score -Vikings Vs Eagles -Costco Wholesale -Elizabeth Blackwell -Sergei Eisenstein -Government Shutdown -Rob Delaney -Carter G. Woodson -Obama portrait -Florida shooting -Royal Rumble 2018 -United States Of America Winter Olympics -Kylie Jenner -Florida shooting -Cherry Seaborn -Wilder Penfield -Obama portrait -Bitcoin Price -Rose McGowan -Super Bowl Commercials 2018 -Carter G. Woodson -Google docs -Jimmy Garoppolo -Super blue blood Moon -Carter G. Woodson -Jennifer Aniston -KSI Vs Weller -Super Bowl score -Dwyane Wade -Did the Groundhog See His Shadow -Super Bowl 2018 -Paula Modersohn-Becker -Monster Hunter World -Winter Olympics -UFC 220 -Super Bowl 2018 -Carter G. Woodson -Walter Payton -Fifty Shades Freed -Paula Modersohn-Becker -Josh McDaniels -Virginia Woolf -Groundhog Day 2018 -Justin Timberlake -SAG Awards 2018 -Kentucky shooting -Valentines Day -Phantom Thread -Grammys 2018 -Senior Bowl -Jamie Anderson -MS13 -Wilder Penfield -Super Bowl score -Kylie Jenner -Larry Nassar -Government shutdown 2018 -Winter Olympics -Grammys 2018 -Super Bowl 2018 -Wilder Penfield -Blue Ivy -UFC 220 -Black Panther -Tiger Woods -Altered Carbon -Sergei Eisenstein -Grammys 2018 -Memo -earthquake -Government Shutdown -Patriots -Florida shooting -Happy Valentines Day -Larry Nassar -Olivia Munn -Paula Modersohn-Becker -Turpin -Naya Rivera -Florida shooting -Kylie Jenner -Wilder Penfield -Super Bowl 2018 -Super Bowl score -Winter Olympics -Cavs -Maze Runner: The Death Cure -Isaiah Canaan -Super Bowl 2018 -XFL -Bitcoin Price -Florida shooting -Jo Jo White -Doomsday Clock -Winter Olympics -Alex Smith -Patriots -Super Bowl score -What Time Is The Super Bowl -Nintendo Labo -Super Bowl score -What Time Is The Super Bowl -Trump State of the Union -Florida shooting -NBA Trades -Patriots -Super Bowl Winners -NBA Trades -Elizabeth Blackwell -Shaun White -Kylie Jenner -Sergei Eisenstein -Daniel Kaluuya -Florida shooting -XFL -Paula Modersohn-Becker -Elizabeth Blackwell -Florida shooting -Wilder Penfield -Rodney Hood -Sergei Eisenstein -John Mahoney -Carter G. Woodson -Google docs -Paula Modersohn-Becker -Cavs -Government shutdown -NSA -Quincy Jones -Super Bowl Commercials 2018 -Government Shutdown -Super Bowl score -Stan Lee -Olivia Munn -Vikings Vs Eagles -Virginia Woolf -Super Bowl 2018 -Wilder Penfield -Paula Modersohn-Becker -Florida shooting -Obama portrait -Paula Modersohn-Becker -Government Shutdown -Elizabeth Blackwell -Super Bowl score -Super Bowl score -Tessa Virtue -Elizabeth Blackwell -SpaceX -Virginia Woolf -Super Bowl 2018 -Super Bowl 2018 -Florida shooting -Paula Modersohn-Becker -Virginia Woolf -Kylie Jenner -Andrew Cunanan -Super Bowl 2018 -Grammys 2018 -Carter G. Woodson -Winter Olympics -Super Bowl score -Florida shooting -Sergei Eisenstein -Government Shutdown -Super Bowl 2018 -Super Bowl 2018 -Chris Mazdzer -Meteor -Edible Arrangements -Adam Rippon -Shiffrin -Phantom Thread -State of the Union -Solo Trailer -Patriots -Andrew Cunanan -Patriots -Ted Bundy -Mardi Gras 2018 -Solo Trailer -Super Bowl 2018 -Super Bowl 2018 -Caitlin McHugh -calculator -Bitcoin Price -Vikings Vs Eagles -UFC 220 -Sabrina Dhowre -John Mahoney -Rasual Butler -Paula Modersohn-Becker -Patriots -Google Classroom -Grammys 2018 -Vikings vs Eagles -NBA Trades -Yahoo Finance -Kylie Jenner Baby Girl -Shaun White -Tom Petty -Carter G. Woodson -Elizabeth Blackwell -Super Bowl score -Super Bowl score -Pro Bowl 2018 -Paula Modersohn-Becker -This is Us -XFL -Patriots -Groundhog Day 2018 -Mike Vrabel -Drake -Larry Nassar -New England Patriots owner -Otto Warmbier -Mark E Smith -Carter G. Woodson -Sting -DeMarcus Cousins -Carter G. Woodson -Columbine Shooting -Oar Olympics -Super Bowl 2018 -Cloverfield Paradox -Kristaps Porzingis -Chicago West -fake news awards -Virginia Woolf -Shaun White -Rasual Butler -Virginia Woolf -Carter G. Woodson -Virginia Woolf -Virginia Woolf -Kylie Jenner -Meteor -Mardi Gras 2018 -Eli Manning -Super Bowl Commercials 2018 -Virginia Woolf -Google Drive -Virginia Woolf -Black Panther -Solo Trailer -Government Shutdown -Patriots -Steve Wynn -Happy Valentines Day -Virginia Woolf -Virginia Woolf -Robert Wagner -Cryptocurrency News -Kylie Jenner -Elizabeth Blackwell -Virginia Woolf -Kesha Grammy -Carter G. Woodson -Grammys 2018 -Government shutdown -Shiffrin -Red Gerard -Scott Baio -Shaun White -SpaceX -Carter G. Woodson -Super blue blood Moon -Super Bowl score -12 Strong -Justin Timberlake -Happy Valentines Day -Wing Bowl 2018 -Bitcoin Price -Adam Rippon -Super Bowl score -New England Patriots owner -Ellen DeGeneres -Memo -Google Classroom -Elizabeth Blackwell -Super Bowl score -Winter Olympics -Wilder Penfield -Wilder Penfield -Tonga -Super Bowl score -Paula Modersohn-Becker -Virginia Woolf -Carter G. Woodson -Florida shooting -New England Patriots owner -Super Bowl score -Elizabeth Blackwell -Patriots -Anthony Davis -SZA -Trump State of the Union -Elizabeth Blackwell -Bitcoin Price -This Is Us -SAG Awards 2018 -Shaun White -Stephanie Katelnikoff -Oscar Nominations 2018 -Alaska earthquake -New England Patriots owner -Super Bowl score -Virginia Woolf -Florida shooting -Oscar Nominations 2018 -calculator -Greg Monroe -Sergei Eisenstein -Olympics 2018 -What Time Is The Super Bowl -Patty Hearst -Jennifer Aniston -Nikki Haley -Carter G. Woodson -Puppy Bowl 2018 -Olympic Medal Count -NBA Trades -Carter G. Woodson -Super Bowl score -Patriots -Sergei Eisenstein -Marlon Brando -Virginia Woolf -Did the Groundhog See His Shadow -Robert Wagner -Elizabeth Blackwell -Tom Brady daughter -Government Shutdown -Mark Salling -State of the Union -James Maslow -Florida shooting -Lindsey Vonn -Sergei Eisenstein -Super Bowl 2018 -Pro Bowl 2018 -State of the Union -Super blue blood Moon -Wilder Penfield -Google Classroom -Super Bowl 2018 -School Closings -Elizabeth Blackwell -Meteor -Super Bowl score -What Time Is The Super Bowl -Winter Olympics -Virginia Woolf -Larry Nassar -Ash Wednesday -Carter G. Woodson -Virginia Woolf -Jenna Morasca -Patriots -Carter G. Woodson -Olympic medal count -Virginia Woolf -Real Madrid -Dow Jones -Patriots -Wilder Penfield -school closings -Google Classroom -Rasual Butler -Florida shooting -Portia de Rossi -School Closings -Virginia Woolf -Virginia Woolf -Jamie Anderson -Solo Trailer -Paula Modersohn-Becker -Edible Arrangements -Wilder Penfield -Obama portrait -Bill Paxton -School Closings -Sergei Eisenstein -Florida shooting -Classroom -Super Bowl score -Chris Stapleton -Super Bowl score -Larry Nassar -Mark Salling -Sergei Eisenstein -Super Bowl score -Super Bowl 2018 -Larry Nassar -Esteban Loaiza -Trump State of the Union -JUUL -Sergei Eisenstein -Government shutdown -Sergei Eisenstein -Carter G. Woodson -pissant -Super Bowl 2018 -Larry Nassar -Patriots -Mark Salling -Carter G. Woodson -Elizabeth Blackwell -Carter G. Woodson -Ash Wednesday -Alison Brie -Virginia Woolf -Carter G. Woodson -Den of Thieves -Paula Modersohn-Becker -Elizabeth Blackwell -Elizabeth Blackwell -Real Madrid -Presidents Day 2018 -Riverdale -Paula Modersohn-Becker -Elton John -Super Bowl 2018 -Virginia Woolf -CNN -NBA Trades -Patriots -Grammys 2018 -Celebrity Big Brother cast -Winter Olympics -Shaun White -Memo -Elizabeth Blackwell -Carter G. Woodson -Florida shooting -Megan Barry -Elizabeth Blackwell -Patriots -Carter G. Woodson -Wilder Penfield -Oscar Nominations 2018 -Tsunami Warning -Patriots -Winter Olympics -blue alert -SpaceX -Justin Timberlake -Hope Hicks -Elizabeth Blackwell -Wilder Penfield -Dow Jones -Lena Zawaideh -Winter Olympics -Sergei Eisenstein -Patriots -Carter G. Woodson -Lindsey Vonn -Elton John -Tyler Hilinski -CNN -Deadpool 2 -Patriots -Florida shooting -Elizabeth Blackwell -Black Panther -Super Bowl Commercials 2018 -Wilder Penfield -Jennifer Aniston -James Maslow -Government Shutdown -Larry Nassar -Sergei Eisenstein -Sarah Barthel -Florida shooting -Carter G. Woodson -Johnny Weir -Super Bowl Winners -Solo Trailer -Champions League -Super Bowl Commercials -Groundhog Day 2018 -Cloverfield Paradox -Patriots -Rodney Hood -Jo Jo White -Google Classroom -Virginia Woolf -NBA Trades -United States Of America Winter Olympics -Omarosa -Red Gerard -Super Bowl Commercials 2018 -Elizabeth Blackwell -Sergei Eisenstein -Patriots -Paula Modersohn-Becker -Josh McDaniels -Andre Roberson -Fredo Santana -Shaun White -Royal Rumble 2018 -Carter G. Woodson -Kylie Jenner -Royal Rumble 2018 -Winter Olympics -Rasual Butler -What Time Is The Super Bowl -Carter G. Woodson -Super Bowl 2018 -Virginia Woolf -Grammys 2018 -Hostiles -Roger Federer -Shaun White -Super Bowl 2018 -James Maslow -Johnny Weir -Wilder Penfield -Tiger Woods -SpaceX -Paula Modersohn-Becker -Sergei Eisenstein -Grammys 2018 -Despacito -Government shutdown -Government Shutdown 2018 -Jennifer Aniston -Government Shutdown 2018 -SpaceX -Kesha -Wilder Penfield -Super Bowl score -Paula Modersohn-Becker -Winter Olympics -Jacob Copeland -Gods Plan -Paula Modersohn-Becker -Cedi Osman -Larry Nassar -Winter Olympics -Robert Wagner -Sergei Eisenstein -Terry Bradshaw -Super Bowl 2018 -earthquake today -Virginia Woolf -Toys R Us -Quincy Jones -Super Bowl 2018 -New England Patriots owner -Paula Modersohn-Becker -Patriots -Patriots -Virginia Woolf -SpaceX -Wilder Penfield -Carter G. Woodson -Winter Olympics -Winter Olympics -Forever My Girl -Kylie Jenner -Paula Modersohn-Becker -Patriots -Winter Olympics -Sergei Eisenstein -Super Blue Blood Moon -What Time Is The Super Bowl -Patriots -Mark Salling -Atlanta Weather -Florida shooting -Larry Nassar -Happy Valentines Day -Winter Olympics -Hailee Steinfeld -Grammys 2018 -Justin Timberlake -Happy Valentines Day -Lunar eclipse -Virginia Woolf -Uma Thurman -Dow Jones -Elizabeth Blackwell -Florida shooting -Super Bowl 2018 -Mardi Gras 2018 -Paula Modersohn-Becker -CNN -SpaceX -Patriots -Patriots -Wilder Penfield -Elizabeth Blackwell -Florida shooting -Justin Timberlake -Olympic medal count -Virginia Woolf -Carter G. Woodson -Super Bowl Commercials 2018 -Mark Salling -Wilder Penfield -Obama portrait -Joe Kennedy -Oscar Nominations 2018 -Virginia Woolf -Grammys 2018 -Happy Valentines Day -Elizabeth Blackwell -Sergei Eisenstein -Elizabeth Blackwell -Bitcoin Price -Carter G. Woodson -Virginia Woolf -Peter Rabbit -Memo -Virginia Woolf -Larry Nassar -Super Bowl 2018 -XFL -Justin Timberlake -Carter G. Woodson -Cbs -Incredibles 2 -The 15:17 to Paris -Super Bowl score -Happy Valentines Day -SpaceX -Larry Nassar -slides -Kim Kardashian -Carter G. Woodson -Justin Timberlake -Super Bowl 2018 -Grammys 2018 -Grammys 2018 -What Time Is The Super Bowl -Korea -Florida shooting -Super Bowl score -Justin Timberlake -What Time Is The Super Bowl -Winter Olympics -Wilder Penfield -Paula Modersohn-Becker -Sergei Eisenstein -Tom Petty -Justin Timberlake -Elizabeth Blackwell -Government Shutdown -Aaliyah -Wilder Penfield -MS13 -Tammy Duckworth -Super Bowl 2018 -Florida shooting -Patriots -Robert Wagner -Grammys 2018 -Senior Bowl -Government Shutdown -Sergei Eisenstein -Rachel Brand -Chicago West -Tom Brady -Sergei Eisenstein -Carter G. Woodson -Super Bowl 2018 -Justin Timberlake -Wilder Penfield -slides -Rob Porter -Tom Petty -Dwyane Wade -Winter Olympics -NBC Sports -Paula Modersohn-Becker -Shani Davis -Classroom -Red Gerard -calculator -Super Bowl score -Gods Plan -Kylie Jenner Baby Girl -Marlon Brando -Kylie Jenner -Government Shutdown Meaning -Paula Modersohn-Becker -Jennifer Aniston -Patriots -NHL All Star Game -Natalie Wood -Elizabeth Blackwell -Earthquake Today -Johnny Weir -This Is Us -Kylie Jenner -Winter Olympics -Pro Bowl 2018 -Yuzuru Hanyu -Dow Jones -Larry Nassar -Super Bowl score -Carter G. Woodson -Luke Wilson -Patriots -Otto Warmbier -NBA Trades -Alaska earthquake -Patriots -Paula Modersohn-Becker -Otto Warmbier -Paula Modersohn-Becker -calculator -Patriots -Chinese New Year 2018 -Kylie Jenner -Super Bowl score -Sergei Eisenstein -Super Bowl score -Chicago Weather -Tom Izzo -Did the Groundhog See His Shadow -Carter G. Woodson -Did the Groundhog See His Shadow -Black Panther -Patriots -Florida shooting -Altered Carbon -Florida shooting -Did the Groundhog See His Shadow -Super Bowl 2018 -Meteor -Super Bowl 2018 -Winter Olympics -Carter G. Woodson -What Time Is The Super Bowl -Sting -Grammys 2018 -Sergei Eisenstein -Government Shutdown -Nadal -Memo -Nadal -XFL -Elizabeth Blackwell -shutdown -What Time Is The Super Bowl -Derrick Rose -Florida shooting -Carter G. Woodson -Alaska earthquake -Winter Olympics -Florida shooting -Winter Olympics -SpaceX -Florida shooting -SpaceX -Matt Patricia -Fredo Santana -Did the Groundhog See His Shadow -State of the Union -Patriots -Stormi -Cloverfield Paradox -Super blue blood Moon -Josh McDaniels -Lil Pump -Kim Kardashian -All Star Weekend 2018 -Super Bowl 2018 -Mikaela Shiffrin -Ronaldinho -Tom Petty -Winter Olympics -Blue Moon -Super Bowl score -Kylie Jenner -Columbine -Carter G. Woodson -stock market -Elton John -Real Madrid -Cloverfield Paradox -Carter G. Woodson -Wilder Penfield -Adam Rippon -Grammys 2018 -Chris Fischer -Super Bowl 2018 -Grey's Anatomy -Alison Brie -Winter Olympics -XFL -UFC 220 -Wilder Penfield -Obama portrait -Paula Modersohn-Becker -Justin Timberlake -Winter Olympics -Winter Olympics -This Is Us -Blake Griffin -Carter G. Woodson -Black Panther -Elizabeth Blackwell -Wilder Penfield -Jemele Hill -Phantom Thread -Government Shutdown Meaning -Omarosa -What Time Is The Super Bowl -Childish Gambino -The 15:17 to Paris -Shaun White -SpaceX -Government shutdown 2018 -Elizabeth Blackwell -Super Bowl 2018 -Jalen Ramsey -Justin Timberlake -What Time Is The Super Bowl -Wilder Penfield -Florida shooting -Super Bowl score -Fredo Santana -Culture 2 -Florida shooting -Winter Olympics -Government Shutdown -Dennis Edwards -Mark Salling -Florida shooting -Chloe Kim -Riverdale -Chloe Kim -SpaceX -Super Bowl score -Dow Jones -Bitcoin Price -Elizabeth Blackwell -Kylie Jenner Baby Girl -Sergei Eisenstein -Chinese New Year 2018 -Pegasus World Cup -Wilder Penfield -Sergei Eisenstein -Florida shooting -Lunar eclipse -calculator -State of the Union -Shaun White -Carter G. Woodson -Grammys 2018 -Mark Salling -Super Bowl score -Carter G. Woodson -Super Bowl score -New England Patriots owner -Winter Olympics -Presidents Day 2018 -Winter Olympics -Patriots -Elton John -Carter G. Woodson -Super Bowl score -Maria Menounos -Justin Timberlake -Sergei Eisenstein -Virginia Woolf -NBA Trades -New England Patriots owner -Cryptocurrency News -Lena Zawaideh -Florida shooting -Patriots -Aaron Fies -Government shutdown 2018 -Justin Timberlake -Vikings Vs Eagles -Senior Bowl -Justin Timberlake -Elizabeth Blackwell -Taiwan Earthquake Today -Oscar Nominations 2018 -Bitcoin Price -Edible Arrangements -Super Bowl score -Wilder Penfield -Mike Fisher -Super Blue Blood Moon -John Mahoney -Patriots -Sergei Eisenstein -Trump State of the Union -Tyler Hilinski -Omarosa -Grey's Anatomy -Paula Modersohn-Becker -Omarosa -Once Upon a Time -Carter G. Woodson -Winter Olympics -Super Bowl 2018 -Elizabeth Blackwell -Tom Brady daughter -Paula Modersohn-Becker -Gods Plan -Wilder Penfield -Paula Modersohn-Becker -State of the Union -Luke Wilson -Valentines Day -Super Bowl 2018 -Super Bowl score -Super Bowl score -Doomsday Clock -Alessia Cara -Natalie Wood -NBA Trades -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl Commercials 2018 -Bitcoin Price -Oscar Nominations 2018 -Sergei Eisenstein -Amy Schumer -Winter Olympics -Tyler Hilinski -Government Shutdown -Oscar Nominations 2018 -Mardi Gras 2018 -Winter Olympics -Celtics -Scott Baio -Olympics 2018 -Blue Moon -Kesha -Rodney Hood -Sergei Eisenstein -Grammys 2018 -Larry Nassar -Carter G. Woodson -Elizabeth Blackwell -Wilder Penfield -Grammys 2018 -Google docs -Google docs -Mark Salling -Steve Mcnair -Justin Timberlake -Carter G. Woodson -Memo -Paula Modersohn-Becker -Chloe Kim -Virginia Woolf -Government Shutdown -Valentine's Day -Nintendo Labo -Shaun White -Shaun White -Friends The Movie 2018 -Chloe Kim -Outback Steakhouse -Valentines Day -Cavs -Blood Moon -Tom Petty -Oscar Nominations 2018 -Drive -Florida shooting -Solo Trailer -Super Bowl score -Wilder Penfield -SpaceX -What Time Is The Super Bowl -Kylie Jenner -Justin Timberlake -Happy Valentines Day -Vikings Vs Eagles -Nikki Haley -Alex Smith -Mark Salling -Black Panther -Virginia Woolf -Arsenal -Sandy Hook -Sergei Eisenstein -Sergei Eisenstein -Valentines Day -Super Bowl 2018 -BitConnect -calculator -Patriots -Elizabeth Blackwell -Super Bowl score -Kentucky shooting -Kelsey Grammer -Matt Patricia -Alex Reimer -Super Bowl score -Groundhog Day 2018 -Kesha -Sal Castro Middle School -Justin Timberlake -Jessica Chastain -This Is Us -Wilder Penfield -Super Bowl 2018 -Oscar Nominations 2018 -Justin Timberlake -Carter G. Woodson -Patriots -Quentin Tarantino -Super Bowl 2018 -Patriots -Florida shooting -What Time Is The Super Bowl -Government Shutdown -Mark E Smith -Sergei Eisenstein -Florida shooting -Virginia Woolf -Government shutdown 2018 -Elizabeth Blackwell -Lady Gaga -Rasual Butler -SpaceX -Government Shutdown Meaning -Netflix Stock -Larry Nassar -Patriots -Carter G. Woodson -Florida shooting -SpaceX -Daryle Singletary -Pro Bowl 2018 -Larry Nassar -Wilder Penfield -Champions League -Super Bowl score -Paula Modersohn-Becker -Oscar Nominations 2018 -Wilder Penfield -Elizabeth Blackwell -Black Panther -Elizabeth Blackwell -Shaun White -Larry Nassar -Grammys 2018 -Dua Lipa -SpaceX -Adam Rippon -12 Strong -Juventus -Patriots -Rodney Hood -Grammys 2018 -Paula Modersohn-Becker -Kylie Jenner -Wilder Penfield -Kesha -Justin Timberlake -Chloe Kim -NBA Trades -Adam Rippon -Florida shooting -Elizabeth Blackwell -Winter Olympics -Sergei Eisenstein -Fifty Shades Freed -shutdown -Sergei Eisenstein -Paula Modersohn-Becker -Super Bowl 2018 -Blake Griffin -Zion Williamson -Super Bowl score -Sergei Eisenstein -Super Bowl score -Government shutdown 2018 -Kylie Jenner -CBS Sports -Super Bowl Winners -Logan Paul -What Time Is The Super Bowl -Omarosa -Kristaps Porzingis -Vikings Vs Eagles -Virginia Woolf -Joe Kennedy -Andre the Giant -Winter Olympics -SpaceX -Greg Monroe -Women's March 2018 -Wilder Penfield -Paula Modersohn-Becker -Kylie Jenner -This is Us -Celtics -Government shutdown 2018 -Florida shooting -Elizabeth Blackwell -Caroline Wozniacki -Virginia Woolf -Alison Brie -Patriots -Grammys 2018 -Dua Lipa -Government Shutdown -Google docs -Daryle Singletary -Royal Rumble 2018 -State of the Union -Government shutdown 2018 -Elizabeth Blackwell -Justin Timberlake -Elizabeth Blackwell -This Is Us -Google docs -Tom Brady -Larry Nassar -Outback Steakhouse -Carrie Underwood -Alex Smith -Elton John -Virginia Woolf -Elizabeth Blackwell -Wilder Penfield -Tessa Virtue -Wilder Penfield -Virginia Woolf -Virginia Woolf -H&r Block -Super Bowl 2018 -Virginia Woolf -Larry Nassar -Spice Girls -Grammys 2018 -Elizabeth Blackwell -Childish Gambino -Nathan Chen -Pro Bowl 2018 -Patriots -Paula Modersohn-Becker -Rob Porter -Jessica Chastain -Royal Rumble 2018 -Cloverfield Paradox -Patriots -Call Me by Your Name -Snake -Patriots -Carter G. Woodson -Vanessa Trump -Josh McDaniels -Paula Modersohn-Becker -Joe Kennedy -Super Bowl 2018 -Mikaela Shiffrin -Blake Griffin -stock market -NBA Trades -Jason Kelce -Justin Timberlake -Red Gerard -James Maslow -Bitcoin Price -Paula Modersohn-Becker -Government Shutdown -Alessia Cara -Groundhog Day 2018 -Super Bowl 2018 -Kylie Jenner -SAG Awards 2018 -Elizabeth Blackwell -SpaceX -Florida shooting -Jeff Flake -Adam Rippon -Super Bowl score -Patriots -Chicago Weather -Carter G. Woodson -NBA Trades -Chinese New Year 2018 -Vikings Vs Eagles -Government Shutdown -Zion Williamson -Sergei Eisenstein -Larry Nassar -Super Bowl 2018 -Patriots -Paula Modersohn-Becker -Cnbc -Sting -Carter G. Woodson -Grammys 2018 -Elizabeth Blackwell -Hostiles -Super Bowl 2018 -Rasual Butler -Ellen DeGeneres -Shiffrin -Carter G. Woodson -Super Bowl 2018 -CNN -Virginia Woolf -Super Bowl 2018 -Shiffrin -Paula Modersohn-Becker -What Time Is The Super Bowl -Justin Timberlake -Hostiles -Dow Jones -NBA Trades -Valentines Day -Patriots -Super Bowl score -Jamie Anderson -Kylie Jenner -Google Classroom -Tom Petty -Florida shooting -Florida shooting -Best Superbowl Commercials 2018 -Florida shooting -Elizabeth Blackwell -Cloverfield Paradox -Sergei Eisenstein -calculator -Zion Williamson -Super Bowl 2018 -Rasual Butler -Super Blue Blood Moon -Wing Bowl 2018 -Virginia Woolf -Super Bowl score -Duke Basketball -Patriots -Elton John -Super Bowl 2018 -Virginia Woolf -Government Shutdown 2018 -Blake Griffin -Larry Nassar -Joel Taylor -NFC Championship Game 2018 -Adam Rippon -Sergei Eisenstein -Florida shooting -Justin Timberlake -Paula Modersohn-Becker -Olympics 2018 -Rasual Butler -Wilder Penfield -Pro Bowl 2018 -Robert Wagner -Winter Olympics -Florida shooting -Sergei Eisenstein -Government Shutdown -Patriots -Elizabeth Blackwell -Dow Jones -Jeff Flake -Wilder Penfield -stock market -Wonder Woman -Wilder Penfield -Oar Olympics -Dane Cook -Malcom Butler -Kesha -Gregory Salcido -Netflix Stock -Groundhog Day 2018 -Katie Couric -Super Bowl score -State of the Union -Virginia Woolf -Peter Rabbit -Josh McDaniels -Super Bowl score -Patriots -Florida shooting -Women's March 2018 -Sergei Eisenstein -Government Shutdown -Paula Modersohn-Becker -Elizabeth Blackwell -Kodak Black -UFC 220 -Sergei Eisenstein -Florida shooting -What Time Is The Super Bowl -XFL -Super blue blood Moon -Kim Kardashian -Cloverfield Paradox -Groundhog Day 2018 -Carter G. Woodson -Andrew Cunanan -James Baldwin -Florida shooting -Florida shooting -Super Bowl score -Super Bowl score -Mark Salling -Nadal -Super blue blood Moon -Alexander Polinsky -Real Madrid -Andrew Cunanan -Deadpool 2 -Blue Moon -Vikings vs Eagles -Dwyane Wade -Oscar Nominations 2018 -Winter Olympics -Kylie Jenner -Government shutdown -Alison Brie -Grammys 2018 -SpaceX -Super Bowl 2018 -Government Shutdown -Elizabeth Blackwell -Winter Olympics -Carter G. Woodson -Paula Modersohn-Becker -Dow Jones -John Mahoney -Alex Smith -What Time Is The Super Bowl -Wilder Penfield -Manchester United -Wilder Penfield -SpaceX -NBA Trades -UFC 220 -Black Panther -Sergei Eisenstein -Adam Rippon -Adam Rippon -Wilder Penfield -Terrell Owens -Get Out -Andrew McCabe -Patriots -Cloverfield Paradox -Wilder Penfield -Elizabeth Blackwell -Super Bowl 2018 -Paula Modersohn-Becker -Florida shooting -Dwyane Wade -Tsunami Warning -Did the Groundhog See His Shadow -Virginia Woolf -Virginia Woolf -Bitcoin Price -Grammys 2018 -Alessia Cara -What Time Is The Super Bowl -UFC 220 -Trump State of the Union -Wilder Penfield -Elizabeth Blackwell -Black Panther -Pro Bowl 2018 -Grammys 2018 -Google docs -Super Bowl score -Steven Tyler -Grammys 2018 -Patriots -Carter G. Woodson -Valentines Day Memes -Carter G. Woodson -Super Bowl score -Wilder Penfield -Wilder Penfield -Government Shutdown Meaning -Patriots -Vikings Vs Eagles -Greg Monroe -Kate Upton -Wilder Penfield -National Pizza Day -Super Bowl 2018 -Wilder Penfield -Black Panther -Olive Garden -Alessia Cara -Amy Schumer -Wilder Penfield -Oscar Nominations 2018 -Isaiah Canaan -Larry Nassar -SAG Awards 2018 -Wilder Penfield -Carter G. Woodson -Carter G. Woodson -Grammys 2018 -Super Bowl score -Patriots -Super Bowl score -What Time Is The Super Bowl -What Time Is The Super Bowl -SpaceX -MS13 -SpaceX -Winter Olympics -Vikings Vs Eagles -Government Shutdown -Government Shutdown -School Closings -Elizabeth Blackwell -Winter Olympics -Florida shooting -This Is Us -Wilder Penfield -Black Panther -Camila Cabello -Sergei Eisenstein -Winter Olympics -Larry Nassar -Carter G. Woodson -Grammys 2018 -Tiger Woods -Dow Jones -Vikings Vs Eagles -Kentucky shooting -Culture 2 -Grammys 2018 -Dow Jones -calculator -Patti LuPone -Vikings Vs Eagles -Patriots -Carter G. Woodson -Kesha Grammy -Paula Modersohn-Becker -Virginia Woolf -Patriots -Super blue blood Moon -Celtics -Happy Valentines Day -Chinese New Year 2018 -government shutdown -Paula Modersohn-Becker -Winter Olympics -Drake -Dow Jones -Memo -Wilder Penfield -Super Bowl 2018 -Elizabeth Blackwell -Justin Timberlake -Florida shooting -Rasual Butler -Elizabeth Blackwell -earthquake -Justin Timberlake -Lunar eclipse -Chicago West -Joe Kennedy -Riverdale -Josh McDaniels -State of the Union -Kylie Jenner Baby Girl -Carrie Underwood -Florida shooting -Yu Darvish -Winter Olympics -Super Bowl score -Memo -Black Panther -Super Bowl score -calculator -Ohio State basketball -Aaliyah -Patriots -Robert Mueller -Justin Timberlake -Football Playoffs 2018 -Grammys 2018 -Super Bowl score -Danielle Herrington -Lindsey Vonn -Bitcoin Price -Super Bowl 2018 -Larry Nassar -Terrell Owens -Black Panther -Super blue blood Moon -Patriots -Government Shutdown Meaning -Virginia Woolf -Rodney Hood -Wilder Penfield -Josh McDaniels -Wilder Penfield -Chinese New Year 2018 -Carter G. Woodson -Paula Modersohn-Becker -John Mahoney -State of the Union -Isaiah Thomas -Elon Musk -Super Bowl 2018 -Elizabeth Blackwell -Justin Timberlake -Tesla in space -Mark Salling -Sea Of Thieves -John Mahoney -NBA Trades -Government Shutdown -Carter G. Woodson -Chicago West -Florida shooting -NBA Trades -Scott Baio -SpaceX -Caroline Wozniacki -Isaiah Thomas -Shiffrin -Virginia Woolf -Super Bowl Commercials 2018 -Florida shooting -Super Bowl Commercials 2018 -Sergei Eisenstein -Vanessa Marcil -Sergei Eisenstein -Florida shooting -Sergei Eisenstein -Cloverfield Paradox -Kim Kardashian -Super Bowl score -XFL -CNN -Nathan Chen -Timor Leste -Super Bowl score -Kylie Jenner -Winter Olympics -Super Bowl score -Elizabeth Blackwell -Florida shooting -Patriots -Amazon Stock -What Time Is The Super Bowl -Patriots -Groundhog Day 2018 -Super Bowl score -Josh McDaniels -Florida shooting -Kesha -Grammys 2018 -calculator -Mark Salling -Robert Mueller -Super Bowl Commercials 2018 -Florida shooting -Paula Modersohn-Becker -Carter G. Woodson -Paula Modersohn-Becker -Carter G. Woodson -Reg E Cathey -Once Upon a Time -Winter Olympics -The Home Depot -Carter G. Woodson -Johnny Manziel -Florida shooting -Sergei Eisenstein -Dow Jones -Paula Modersohn-Becker -The Home Depot -Winter Olympics -Virginia Woolf -Derrick Rose -Paula Modersohn-Becker -Cavs -Super Bowl 2018 -The 15:17 to Paris -Kevin Love -Sergei Eisenstein -school closings -Celtics -Super Bowl 2018 -Shaun White -Super Bowl score -Government Shutdown -Larry Nassar -Vince McMahon -SpaceX -State of the Union -Mardi Gras 2018 -Sergei Eisenstein -Government Shutdown -Carter G. Woodson -Sergei Eisenstein -Joseph Haynes -Bob Dole -Carter G. Woodson -What Time Is The Super Bowl -Carter G. Woodson -Carter G. Woodson -Sandy Hook -Florida shooting -Oscar Nominations 2018 -Virginia Woolf -Rasual Butler -Blake Griffin -Wilder Penfield -Government Shutdown -SpaceX -What Time Is The Super Bowl -SpaceX -Super Bowl score -Carter G. Woodson -Government shutdown 2018 -Monster Hunter World -UFC 220 -Super Bowl score -Julie Ertz -Mueller -Carter G. Woodson -Winter Olympics -Sergei Eisenstein -Vikings Vs Eagles -This Is Us -Dwyane Wade -Yahoo Finance -Grammys 2018 -Winter Olympics -Happy Valentines Day -Super Bowl 2018 -Carter G. Woodson -Super Bowl score -Super Bowl score -Tyler Hilinski -Vikings Vs Eagles -Patriots -Paula Modersohn-Becker -Super Bowl score -UFC 220 -Super Blue Blood Moon -Oscar Nominations 2018 -Earthquake Today -AR-15 -Virginia Woolf -Den of Thieves -NBA Trades -Elizabeth Blackwell -Trey Gowdy -Super Bowl score -Patriots -Valentines Day -Chinese New Year 2018 -Dow Jones -Winter Olympics -Royal Rumble 2018 -Oscar Nominations 2018 -Altered Carbon -Vikings Vs Eagles -Super Bowl score -Patriots -SpaceX -Ash Wednesday -Vanessa Marcil -Memo -Elizabeth Blackwell -Jennifer Aniston -Winter Olympics -Mark Salling -NBA Trades -Jason Momoa -Solo Trailer -Olive Garden -Sea Of Thieves -Elizabeth Blackwell -Winter Olympics -Wilder Penfield -NBA Trades -Super Bowl 2018 -Tom Brady daughter -Joy Villa -Carter G. Woodson -Patriots -Patriots -Wilder Penfield -AR-15 -Mardi Gras 2018 -Carter G. Woodson -Carter G. Woodson -Lauren Davis -Happy Valentines Day -Trump State of the Union -Jennifer Aniston -Brynn Cameron -Gregory Salcido -Sergei Eisenstein -Trey Gowdy -Super Bowl 2018 -New England Patriots owner -Winter Olympics -Sergei Eisenstein -Cavs -Early Man -Grammys 2018 -Patriots -Winchester -Patriots -Sergei Eisenstein -This Is Us -Alaska earthquake -Den of Thieves -Yahoo Finance -Groundhog Day 2018 -Kentucky shooting -Lunar eclipse -Wilder Penfield -Elizabeth Blackwell -CNN -Shaun White -Wilder Penfield -Winter Olympics -Patriots -Carrie Underwood -Justin Timberlake -stock market -Patriots -Super Bowl 2018 halftime show -Elizabeth Blackwell -Elizabeth Blackwell -Super Bowl score -Bitcoin Price -Grey's Anatomy -Wilder Penfield -Kylie Jenner -Ncaa Basketball Top 25 -Kylie Jenner -Google docs -Sergei Eisenstein -Wilder Penfield -Maze Runner: The Death Cure -Carter G. Woodson -LeBron James -Wilder Penfield -SpaceX -Virginia Woolf -Super Bowl score -Government Shutdown -Scott Baio -Alaska earthquake -United States Of America Winter Olympics -Sting -Amazon stock -Carter G. Woodson -SAG Awards 2018 -Vanessa Marcil -Edgar Martinez -Kylie Jenner -Super Bowl score -Super Bowl score -Super Bowl score -Government Shutdown Meaning -Lindsey Vonn -Lunar eclipse -Cavs -Sergei Eisenstein -Florida shooting -Bruno Mars -Paul Ryan -State of the Union -Kevin Love -SpaceX -Shaun White -Government Shutdown -Wilder Penfield -Justin Timberlake -Andrew Cunanan -Kylie Jenner -Wilder Penfield -Government Shutdown -Fredo Santana -Chloe Kim -Patriots -Sergei Eisenstein -Florida shooting -Wilder Penfield -Paula Modersohn-Becker -Paula Modersohn-Becker -Virginia Woolf -Wilder Penfield -Did the Groundhog See His Shadow -Dua Lipa -Winter Olympics -Paula Modersohn-Becker -Sergei Eisenstein -Korea -Carter G. Woodson -Winter Olympics -Rodney Hood -New England Patriots owner -Carter G. Woodson -NBA Trades -Government Shutdown Meaning -Florida shooting -Patriots -Super Bowl score -Elizabeth Blackwell -Shaun White -Sergei Eisenstein -Kylie Jenner -Super Bowl score -Wilder Penfield -Patriots -Carter G. Woodson -Mardi Gras 2018 -CNN -Government Shutdown -Kentucky shooting -Sergei Eisenstein -SAG Awards 2018 -Patriots -Super Bowl 2018 -Duke Basketball -LeBron James -Super Bowl score -Florida shooting -Black Lightning -Super Bowl score -Groundhog Day 2018 -Chloe Kim -Tammy Duckworth -Maze Runner: The Death Cure -Sergei Eisenstein -Super Bowl score -Wilder Penfield -Super Bowl 2018 -Sergei Eisenstein -Obama portrait -Winter Olympics -James Harden -earthquake today -What Time Is The Super Bowl -Eli Manning -Cedi Osman -Government Shutdown -National Pizza Day -Black Panther -Government Shutdown Meaning -Government Shutdown Meaning -blue alert -Adam Rippon -Paula Modersohn-Becker -Patriots -Mikaela Shiffrin -Solo Trailer -Mark Salling -Virginia Woolf -Patti LuPone -Super Bowl 2018 -Sergei Eisenstein -Vikings Vs Eagles -Wilder Penfield -Rasual Butler -Florida shooting -Super Bowl score -Dwyane Wade -Forever My Girl -When We First Met -Apolo Ohno -Florida shooting -Florida shooting -Winter Olympics -Alexa Commercial -Super blue blood Moon -New England Patriots owner -Groundhog Day 2018 -Sergei Eisenstein -Paula Modersohn-Becker -Super Bowl 2018 -Black Panther -Government Shutdown 2018 -Homeland -Mardi Gras 2018 -SAG Awards 2018 -Virginia Woolf -Virginia Woolf -Solo Trailer -Sergei Eisenstein -Carter G. Woodson -Stormi -Sergei Eisenstein -Paula Modersohn-Becker -Shaun White -Super Bowl 2018 -Kim Kardashian -Matt Czuchry -UFC 220 -Sal Castro Middle School -Black Panther -Carter G. Woodson -Carter G. Woodson -Paula Modersohn-Becker -Amy Schumer -All Star Weekend 2018 -United States Postal Service -Vikings vs Eagles -Carrie Underwood -Andrew Cunanan -Super Bowl 2018 -12 Strong -Carter G. Woodson -Carter G. Woodson -Florida shooting -Super Bowl score -Alessia Cara -Sea Of Thieves -Kesha -Grammys 2018 -Super Bowl 2018 -Carter G. Woodson -Super Bowl score -Super Blue Blood Moon -Super Bowl score -Sergei Eisenstein -Friends movie -Super Bowl score -Sergei Eisenstein -Grammys 2018 -Kesha -Kylie Jenner -Patti LuPone -Homeland -Winter Olympics -Government shutdown -Sergei Eisenstein -Florida shooting -Mitt Romney -Winchester -Alessia Cara -New England Patriots owner -Friends The Movie 2018 -Fredo Santana -SpaceX -Memo -Houston Rockets -Kesha Grammy -Paul Ryan -Winter Olympics -Paula Modersohn-Becker -Quincy Jones -Winter Olympics -Groundhog Day 2018 -Black Panther -Paula Modersohn-Becker -Rasual Butler -Super Bowl 2018 halftime show -What Time Is The Super Bowl -Paula Modersohn-Becker -Terrell Owens -Paula Modersohn-Becker -Virginia Woolf -Vikings Vs Eagles -slides -Joe Kennedy -Forever My Girl -calculator -Kelsey Grammer -Paula Modersohn-Becker -Patriots -Chinese New Year 2018 -Justin Timberlake -Childish Gambino -Super Bowl 2018 -Roger Federer -Winter Olympics -Florida shooting -Rob Porter -Super blue blood Moon -Government Shutdown -Carter G. Woodson -Florida shooting -Alex Smith -Chloe Kim -SpaceX -SpaceX -Virginia Woolf -Alex Smith -Virginia Woolf -Jamie Anderson -Grammys 2018 -Justin Timberlake -Super Bowl Winners -Megan Barry -Oar Olympics -Super Bowl score -Elizabeth Blackwell -NBA Trades -Jennifer Aniston -Lunar eclipse -Shaun White -Super Bowl score -Carter G. Woodson -Sergei Eisenstein -Government Shutdown 2018 -Fidel Castro -Virginia Woolf -Virginia Woolf -Wilder Penfield -Alex Smith -Elizabeth Blackwell -Super Bowl score -Get Out -Wing Bowl 2018 -Solo Trailer -Reg E Cathey -Larry Nassar -Wilder Penfield -Nintendo Labo -What Time Is The Super Bowl -Memo -Trey Gowdy -Florida shooting -NASA -Elizabeth Blackwell -What Time Is The Super Bowl -Black Panther -Russell Wilson -Evgenia Medvedeva -Paula Modersohn-Becker -Amy Schumer -Did the Groundhog See His Shadow -Josh McDaniels -Patriots -Valentines Day -Jennifer Aniston -Tomi Lahren -Blood Moon -FC Barcelona -Winter Olympics -happy new year in Chinese -Mikaela Shiffrin -National Pizza Day -SpaceX -Google Classroom -Winter Olympics -Virginia Woolf -Black Panther -Kylie Jenner -Tom Brady -Google Drive -Elizabeth Blackwell -Memo -Chinese New Year 2018 -calculator -Winter Olympics -LeBron James -Happy Valentines Day -What Time Is The Super Bowl -Super Bowl score -Patriots -Chinese New Year 2018 -Justin Timberlake -Rose McGowan -Patriots -luge -Winter Olympics -Government Shutdown -Government Shutdown -Carter G. Woodson -Florida shooting -Elizabeth Blackwell -12 Strong -Super Bowl 2018 -Florida shooting -Outback Steakhouse -Valentines Day -Elizabeth Blackwell -Montreal Cognitive Assessment -Winter Olympics -Larry Nassar -stock market -SpaceX -Kylie Jenner -NBA Trades -Carter G. Woodson -Government Shutdown -Grammys 2018 -Paula Modersohn-Becker -Winter Olympics -SpaceX -Super Bowl 2018 -Paula Modersohn-Becker -What Time Is The Super Bowl -Patriots -Winter Olympics -Super Bowl score -Virginia Woolf -MS13 -Chinese New Year 2018 -Dow Jones -Larry Nassar -Super Bowl score -Winter Olympics -Super Bowl 2018 -Virginia Woolf -SpaceX -Patti LuPone -Winter Olympics -SpaceX -Carter G. Woodson -Patriots -Rodney Hood -Kylie Jenner -Grammys 2018 -What Time Is The Super Bowl -NBA Trades -Vince McMahon -Grammys 2018 -State of the Union -Celebrity Big Brother cast -State of the Union -The 15:17 to Paris -Wilder Penfield -Nintendo Labo -Elton John -Google docs -Olympic Medal Count -Patriots -Monster Hunter World -SAG Awards 2018 -Mikaela Shiffrin -What Time Is The Super Bowl -Elizabeth Blackwell -Carter G. Woodson -Government Shutdown -Super Bowl 2018 -Super Bowl score -Happy Valentines Day -UFC 220 -Florida shooting -Florida shooting -Super Bowl 2018 -Super Blue Blood Moon -NBA Trades -Hope Hicks -Pyeongchang 2018 Olympic Winter Games -Quincy Jones -Super Bowl 2018 -Black Panther -Carter G. Woodson -This is Us -Government Shutdown 2018 -Scandal -Patriots -Paula Modersohn-Becker -Bob Dole -Carter G. Woodson -SpaceX -Kim Kardashian -Dow Jones -Wilder Penfield -This Is Us -Google Classroom -Wilder Penfield -Enzo Amore -Vikings Vs Eagles -Steven Tyler -CNN -Jennifer Aniston -Kristaps Porzingis -Johnny Weir -Sergei Eisenstein -Bitcoin Price -Jason Kelce -SpaceX -Winter Olympics -New England Patriots owner -Super Bowl score -Larry Nassar -Walter Payton -CNN -Winter Olympics -Super Blue Blood Moon -Rodney Hood -Sergei Eisenstein -Valentines Day -Justin Timberlake -Pink -Lil Pump -Elizabeth Blackwell -NBA Trades -Carter G. Woodson -Wilder Penfield -Super Bowl 2018 -Valentines Day -Virginia Woolf -Tyler Hilinski -Kim Kardashian -Elizabeth Blackwell -Virginia Woolf -Super Bowl 2018 halftime show -Government Shutdown -calculator -Elizabeth Blackwell -Chicago West -Bitcoin Price -All Star Weekend 2018 -SpaceX -Jamie Dornan -Lunar eclipse -Reg E Cathey -calculator -Grey's Anatomy -Andrew McCabe -Kylie Jenner -Super Bowl score -Lakers -Kentucky shooting -Sergei Eisenstein -Super Bowl 2018 -Riverdale -Terrell Owens -school closings -Best Superbowl Commercials 2018 -Virginia Woolf -Dow Jones industrial average -Blake Griffin -Elizabeth Blackwell -Virginia Woolf -Sergei Eisenstein -NBA Trades -Ash Wednesday -Kylie Jenner Baby Girl -Sergei Eisenstein -Justin Timberlake -Blake Griffin -SpaceX -Winter Olympics -Ash Wednesday -Celtics -Winter Olympics -Kylie Jenner -Carter G. Woodson -SpaceX -NBA Trades -NBA Trades -Zion Williamson -Trump State of the Union -Florida shooting -Virginia Woolf -Government Shutdown -Florida shooting -What Time Is The Super Bowl -Wilder Penfield -Carter G. Woodson -NBA Trades -Virginia Woolf -Sergei Eisenstein -Royal Rumble 2018 -Government shutdown -Elizabeth Blackwell -Super blue blood Moon -Larry Nassar -Government shutdown 2018 -Manchester United -Justin Timberlake -NBA Trades -Larry Nassar -Evgenia Medvedeva -Government Shutdown -Justin Timberlake -Sergei Eisenstein -Super blue blood Moon -Virginia Woolf -Patriots -Patriots -Justin Timberlake -Winter Olympics -Memo -Did the Groundhog See His Shadow -Florida shooting -Anna Kournikova -What Time Is The Super Bowl -Larry Nassar -Bitcoin Price -Valentines Day -Paula Modersohn-Becker -Andrew McCabe -Wilder Penfield -Chicago West -Larry Nassar -Gianni Versace -Black Panther -Camila Cabello -Solo Trailer -Florida shooting -Ant Man and the Wasp -Sergei Eisenstein -Mexico Vs Bosnia -Black Panther -Wilder Penfield -This Is Us -Carter G. Woodson -Paula Modersohn-Becker -Black Panther -Gianni Versace -Sergei Eisenstein -Robert Wagner -Florida shooting -Vikings Vs Eagles -Super Bowl 2018 -Carter G. Woodson -Chinese New Year 2018 -Alex Smith -Wilder Penfield -Altered Carbon -Sergei Eisenstein -Montgomery County Public Schools -What Time Is The Super Bowl -United States Of America Winter Olympics -Chris Long -Black Panther -James Harden -Government Shutdown -Vikings vs Eagles -Wilder Penfield -Florida shooting -Government Shutdown -Nba All Star Draft -Virginia Woolf -Fifty Shades Freed -Elizabeth Blackwell -Roger Federer -Patriots -Government Shutdown Meaning -Winter Olympics -Peter Rabbit -Government shutdown -Super Bowl score -Winter Olympics -Super Bowl score -Kylie Jenner -Justin Timberlake -Florida shooting -Super Bowl score -SpaceX -Kylie Jenner -Cavs -Patriots -Patriots -Virginia Woolf -Justin Timberlake -Oscar Nominations 2018 -Joe Kennedy -February -Mark Salling -curling -Patriots -John Mahoney -Kim Kardashian -Winter Olympics -Robby Anderson -Florida shooting -UFC 220 -Tom Petty -National Pizza Day -Sergei Eisenstein -Virginia Woolf -Patriots -Alex Smith -Winter Olympics -Super Bowl score -Elton John -Blue Ivy -Wilder Penfield -Josh Allen -Kylie Jenner -Presidents Day 2018 -Olympic Medal Count -Paula Modersohn-Becker -Super Bowl score -Sergei Eisenstein -Did the Groundhog See His Shadow -Elizabeth Blackwell -Winter Olympics -Bradie Tennell -Wilder Penfield -Ant Man and the Wasp -Columbine -Virginia Woolf -Eli Manning -Terrell Owens -Dow Jones -Wilder Penfield -Winter Olympics -Patriots -Kylie Jenner -United States Of America Winter Olympics -SpaceX -Paula Modersohn-Becker -Groundhog Day 2018 -Florida shooting -Virginia Woolf -Justin Timberlake -Paula Modersohn-Becker -NBA Trades -Sabrina Dhowre -Happy Valentines Day -Fredo Santana -Super Bowl score -Grammys 2018 -Red Gerard -Carter G. Woodson -Virginia Woolf -Dennis Edwards -School Closings -Oscar Nominations 2018 -Super Bowl 2018 -Lonzo Ball -Carter G. Woodson -What Time Is The Super Bowl -What Time Is The Super Bowl -Virginia Woolf -Government Shutdown -Patriots -Obama portrait -Patriots -Yu Darvish -What Time Is The Super Bowl -Blake Griffin -Patriots -Wilder Penfield -Kesha Grammy -Larry Nassar -Elton John -NBA Trades -Mark Salling -Paula Modersohn-Becker -Winter Olympics -Wilder Penfield -Fredo Santana -Childish Gambino -Winter Olympics -Sergei Eisenstein -Google docs -Florida shooting -Sergei Eisenstein -Red Gerard -Carter G. Woodson -Elizabeth Blackwell -United States Of America Winter Olympics -The 15:17 to Paris -Winter Olympics -national signing day 2018 -SpaceX -Mark Salling -Winter Olympics -Patriots -Elizabeth Blackwell -Sergei Eisenstein -Wilder Penfield -XIV -Government shutdown 2018 -SpaceX -Grammys 2018 -Matt Patricia -Carter G. Woodson -Pro Bowl 2018 -Super Bowl 2018 -Florida shooting -Paula Modersohn-Becker -Larry Nassar -Winter Olympics -Super Bowl score -Black Panther -Josh McDaniels -National Pizza Day -SpaceX -Esteban Loaiza -Super Bowl Commercials -Yoel Romero -Virginia Woolf -Terrell Owens -New England Patriots owner -Elizabeth Blackwell -Winter Olympics -Peter Rabbit -Once Upon a Time -Michigan State -XFL -Sarah Barthel -Robert Mueller -Elizabeth Blackwell -Taiwan Earthquake Today -Gianni Versace -Wilder Penfield -SpaceX -Johnny Weir -Mr Rogers -Jamie Dornan -Bitcoin Price -Paula Modersohn-Becker -NBA Trades -Wilder Penfield -Wilder Penfield -SpaceX -Grammys 2018 -CNN -Jennifer Aniston -Nikki Haley -Winter Olympics -Obama portrait -Wilder Penfield -Carter G. Woodson -Wing Bowl 2018 -Trump State of the Union -Wilder Penfield -Cavs -Government Shutdown -State of the Union -Paula Modersohn-Becker -Sergei Eisenstein -Carter G. Woodson -Elizabeth Blackwell -Rachel Brand -Mexico earthquake -Mark Salling -Google Classroom -Super Bowl 2018 -Elizabeth Blackwell -Super Bowl score -Katie Couric -Larry Nassar -Government Shutdown 2018 -Wilder Penfield -Super Bowl 2018 -Grammys 2018 -Paula Modersohn-Becker -Logan Paul -Paula Modersohn-Becker -Carter G. Woodson -NBA Trades -Elizabeth Blackwell -Evgenia Medvedeva -Ash Wednesday -Rasual Butler -Larry Nassar -Larry Nassar -Government Shutdown -Super Bowl 2018 -What Time Is The Super Bowl -UFC 220 -Winter Olympics -SpaceX -Wilder Penfield -Patriots -Patriots -What Time Is The Super Bowl -Super Bowl 2018 -Elizabeth Blackwell -Royal Rumble 2018 -Grammys 2018 -Mark Salling -Wilder Penfield -Virginia Woolf -Groundhog Day 2018 -SpaceX -Larry Nassar -Super Bowl 2018 -Elizabeth Blackwell -Super Bowl 2018 -Alex Reimer -Winter Olympics -Carter G. Woodson -Esteban Loaiza -Jimmy Garoppolo -Super Bowl 2018 -Super Bowl 2018 -Florida shooting -NBA Trades -Black Panther -Pegasus World Cup -Super Bowl Winners -Wilder Penfield -Dow Jones -Justin Timberlake -Carter G. Woodson -Kylie Jenner -Sergei Eisenstein -Johnny Weir -Black Panther -Sergei Eisenstein -Hostiles -Ellen Pompeo -Paula Modersohn-Becker -Wilder Penfield -Carter G. Woodson -Cavs -Valentines Day -Super Blue Blood Moon -SpaceX -Wilder Penfield -Groundhog Day 2018 -Yu Darvish -Sergei Eisenstein -SpaceX -Sergei Eisenstein -Florida shooting -Trump State of the Union -Government Shutdown -Ann Curry -Sergei Eisenstein -Super Bowl 2018 -Justin Timberlake -Kesha Grammy -Government Shutdown Meaning -Puppy Bowl 2018 -Carter G. Woodson -Sergei Eisenstein -Elizabeth Blackwell -Winter Olympics -Carter G. Woodson -Paula Modersohn-Becker -Bob Marley -Blue Moon -Kim Kardashian -Obama portrait -Carter G. Woodson -Florida shooting -Carter G. Woodson -Florida shooting -Senior Bowl -Megan Barry -Super Bowl 2018 -Paula Modersohn-Becker -Aaron Feis -Carter G. Woodson -Florida shooting -What Time Is The Super Bowl -Winter Olympics -Government Shutdown -Carter G. Woodson -UFC 220 -Jennifer Aniston -Super Bowl Commercials 2018 -Virginia Woolf -Paula Modersohn-Becker -Chicago West -This Is Us -Oscar Nominations 2018 -Paula Modersohn-Becker -Florida shooting -SpaceX -What Time Is The Super Bowl -Highline College -Pro Bowl 2018 -Dow Jones -Super Bowl 2018 -Kylie Jenner -Elton John -Blood Moon -Winter Olympics -Sergei Eisenstein -Justin Timberlake -Carter G. Woodson -Government Shutdown -Sergei Eisenstein -Larry Nassar -SpaceX -Justin Timberlake -This Is Us -Paula Modersohn-Becker -Wilder Penfield -Dwyane Wade -Jason Kelce -Shaun White -Elizabeth Blackwell -Super Bowl score -Michigan State -Chicago West -Paula Modersohn-Becker -Tiger Woods -Paula Modersohn-Becker -Elizabeth Blackwell -Mark Salling -Valentines Day -Kylie Jenner -NBA Trades -Elizabeth Blackwell -Wilder Penfield -Dow Jones -Jeff Flake -Sergei Eisenstein -What Time Is The Super Bowl -Elizabeth Blackwell -Kodak Black -Carter G. Woodson -Royal Rumble 2018 -Wilder Penfield -Jennifer Aniston -Super Bowl score -Elizabeth Blackwell -Patriots -Super Bowl 2018 -Sergei Eisenstein -Florida shooting -Florida shooting -Joe Kennedy -Mark Salling -Carter G. Woodson -Did the Groundhog See His Shadow -Larry Nassar -SAG Awards 2018 -Grammys 2018 -Kentucky shooting -Patriots -Florida shooting -NBA Trades -Sergei Eisenstein -Jalen Ramsey -school closings -Tom Petty -SpaceX -Alessia Cara -CNN -Justin Timberlake -Winter Olympics -Virginia Woolf -Blake Griffin -Kentucky shooting -Virginia Woolf -Waco -Cloverfield Paradox -Chloe Kim -Elton John -National Pizza Day -Yahoo Finance -Florida shooting -Super Bowl 2018 -Elizabeth Blackwell -Justin Timberlake -Winter Olympics -AFC Championship Game 2018 -Jennifer Aniston -Government Shutdown -SpaceX -Paula Modersohn-Becker -Paula Modersohn-Becker -Government shutdown 2018 -Patriots -Sergei Eisenstein -SpaceX -Patriots -Paula Modersohn-Becker -Super Bowl 2018 -Sergei Eisenstein -Patriots -Kim Kardashian -UFC 220 -Hillary Clinton -Cloverfield Paradox -Mueller -Virginia Woolf -SpaceX -Grammys 2018 -Doomsday Clock -Justin Timberlake -Patriots -Florida shooting -Google Classroom -Larry Nassar -Virginia Woolf -Mardi Gras 2018 -Vanessa Marcil -Patriots -Vikings Vs Eagles -Steven Tyler -Florida shooting -Paula Modersohn-Becker -Wilder Penfield -Cloverfield Paradox -Winter Olympics -United States Of America Winter Olympics -Bill Paxton -Grammys 2018 -Arsenal -Florida shooting -school closings -Winter Olympics -Government shutdown 2018 -Paula Modersohn-Becker -Justin Timberlake -Super Bowl score -Kim Kardashian -Joe Kennedy -Kylie Jenner -Memo -Vikings Vs Eagles -Chris Stapleton -Sergei Eisenstein -United States Of America Winter Olympics -Elizabeth Blackwell -Super Bowl 2018 -Wilder Penfield -Larry Nassar -Matt Patricia -Paula Modersohn-Becker -Paula Modersohn-Becker -Kesha -Kylie Jenner -Oscar Nominations 2018 -Nba All Star 2018 -The Home Depot -Chloe Kim Snowboarder -Super Bowl 2018 -Patriots -Sammy Sosa -What Time Is The Super Bowl -Winter Olympics -National Pizza Day -Terrell Owens -What Time Is The Super Bowl -Winter Olympics -Peter Rabbit -Sal Castro Middle School -Paula Modersohn-Becker -Paula Modersohn-Becker -Happy Valentines Day -Elizabeth Blackwell -Cavs -Government shutdown 2018 -Patriots -Jo Jo White -New England Patriots owner -Super Bowl 2018 -Tyler Hilinski -Government Shutdown Meaning -Patti LuPone -Kentucky shooting -Grammys 2018 -Patriots -Sergei Eisenstein -Lil Pump -Happy Valentines Day -NBA Trades -Virginia Woolf -Memo -Josh Allen -Terrell Owens -Paula Modersohn-Becker -Grammys 2018 -Virginia Woolf -Camila Cabello -Florida shooting -Larry Nassar -Fifty Shades Freed -What Time Is The Super Bowl -Carter G. Woodson -NFL Honors -Super Bowl score -Terrell Owens -Hostiles -SpaceX -Tom Petty -Joe Kennedy -Super Bowl 2018 -Johnny Weir -Virginia Woolf -Wilder Penfield -Winter Olympics -Virginia Woolf -Carter G. Woodson -Fifty Shades Freed -Steve Mcnair -Florida shooting -Carter G. Woodson -Black Panther -Super Bowl score -Carrie Underwood -Virginia Woolf -Virginia Woolf -Virginia Woolf -Wilder Penfield -calculator -Super blue blood Moon -Lena Zawaideh -Olivia Culpo -Wilder Penfield -Elizabeth Blackwell -Winter Olympics -Peter Rabbit -Quincy Jones -Once Upon a Time -Cavs -Wilder Penfield -Joe Kennedy -Carter G. Woodson -Sergei Eisenstein -CNN -Sergei Eisenstein -Super Bowl 2018 -Grammys 2018 -Blake Griffin -Amy Schumer -Rob Delaney -Oscar Nominations 2018 -Groundhog Day 2018 -NBA Trades -Super Bowl 2018 -Mark Salling -Shaun White -Sergei Eisenstein -Super blue blood Moon -Senior Bowl -Black Panther -Alessia Cara -Elizabeth Blackwell -Johnny Weir -Did the Groundhog See His Shadow -Super Bowl score -NHL All Star Game -Andre Roberson -Super Bowl 2018 -Winter Olympics -Patriots -Costco Wholesale -Royal Rumble 2018 -Super Bowl 2018 -Patriots -12 Strong -Winter Olympics -Government Shutdown Meaning -Langston Hughes -Carter G. Woodson -Carter G. Woodson -State of the Union -Eli Manning -Super Bowl 2018 -Happy Valentines Day -Shaun White -SpaceX -Evgenia Medvedeva -Virginia Woolf -Wilder Penfield -Winter Olympics -Carter G. Woodson -Larry Nassar -Larry Nassar -Kylie Jenner -Patriots -Sergei Eisenstein -Wing Bowl 2018 -Jason Kelce -Oscar Nominations 2018 -Super Bowl score -Manchester United -What Time Is The Super Bowl -The Resident -Ash Wednesday -Elizabeth Blackwell -Winter Olympics -Alaska earthquake -Tesla in space -Super Bowl score -Devin Nunes -Winter Olympics -Kentucky shooting -Ann Curry -Super Bowl 2018 -Shaun White -Government Shutdown -What Time Is The Super Bowl -Government shutdown 2018 -Florida shooting -Winter Olympics -Virginia Woolf -Kylie Jenner -SAG Awards 2018 -Larry Nassar -Winter Olympics -Virginia Woolf -Super Bowl score -Kylie Jenner -Solo Trailer -Women's March 2018 -Shaun White -Super blue blood Moon -Shaun White -Devin Nunes -Winter Olympics -This Is Us -State of the Union -Grammys 2018 -Winter Olympics -Wilder Penfield -Danielle Herrington -Sea Of Thieves -Kim Kardashian -Harley Barber -Super Bowl Commercials 2018 -Blood Moon -Carter G. Woodson -Sergei Eisenstein -Super Bowl 2018 -Paul Ryan -Earthquake Today -Terrell Owens -Carter G. Woodson -Sergei Eisenstein -Groundhog Day 2018 -Dwyane Wade -Grammys 2018 -Terrell Owens -Chloe Kim -Wilder Penfield -Sergei Eisenstein -Grammys 2018 -United States Of America Winter Olympics -Sergei Eisenstein -Super Bowl score -Rasual Butler -Grammys 2018 -Johnny Weir -Blake Griffin -Red Gerard -Wilder Penfield -Google Classroom -Blake Griffin -What Time Is The Super Bowl -Bruno Mars -Childish Gambino -Lee Miglin -Winter Olympics -Royal Rumble 2018 -Sergei Eisenstein -Super Bowl score -Super Bowl score -Rodney Hood -Den of Thieves -Sergei Eisenstein -Super Bowl score -Kylie Jenner -Steve Mcnair -Winter Olympics -Blue Moon -Sergei Eisenstein -SpaceX -Winter Olympics -Wilder Penfield -Patriots -Manchester United -Dwyane Wade -United States Postal Service -Obama portrait -Shaun White -Elizabeth Blackwell -Super Bowl score -Chloe Kim -Elizabeth Blackwell -Rasual Butler -Paula Modersohn-Becker -Ash Wednesday -Super Bowl 2018 -Jeff Flake -Wilder Penfield -Mardi Gras 2018 -Kratom -Josh McDaniels -Riverdale -Isaiah Canaan -Elizabeth Blackwell -Carter G. Woodson -Patriots -Josh McDaniels -Isaiah Thomas -Florida shooting -Patriots -Kristaps Porzingis -Oar Olympics -Mark Salling -Grammys 2018 -SpaceX -Bitcoin Price -Cherry Seaborn -NBA Trades -Florida shooting -Altered Carbon -Kesha Grammy -Cavs -earthquake -Black Panther -FC Barcelona -Wilder Penfield -Government Shutdown -Carter G. Woodson -Super Bowl score -Elizabeth Blackwell -Elizabeth Blackwell -Winter Olympics -Elizabeth Blackwell -Oscar Nominations 2018 -Sergei Eisenstein -Florida shooting -State of the Union -Winter Olympics -Super Bowl score -Carter G. Woodson -Sergei Eisenstein -Super blue blood Moon -Stan Lee -Grammys 2018 -Edwin Jackson -Cloverfield Paradox -Google docs -Real Madrid -Super Bowl 2018 halftime show -Cherry Seaborn -SAG Awards 2018 -Oscar Nominations 2018 -Super Bowl 2018 -SpaceX -Winter Olympics -Super Bowl 2018 -Jessica Chastain -Carter G. Woodson -Dwyane Wade -Vikings Vs Eagles -Sergei Eisenstein -Sergei Eisenstein -Patriots -Alex Smith -Venom -Winter Olympics -Carter G. Woodson -Lil Pump -Walter Payton -Quincy Jones -Ted Bundy -Winter Olympics -Amazon HQ2 -Elizabeth Blackwell -SpaceX -Vikings Vs Eagles -Woody Allen -Elizabeth Blackwell -Adam Rippon -Paula Modersohn-Becker -Mark Salling -Shaun White -Julie Ertz -Purdue Basketball -Bitcoin Price -Super Bowl score -Government Shutdown -Florida shooting -DeMarcus Cousins -Larry Nassar -Trump State of the Union -Edwin Jackson -Camila Cabello -Winter Olympics -Paula Modersohn-Becker -Hope Hicks -Super Bowl score -Virginia Woolf -Virginia Woolf -CNN -Call Me by Your Name -Trump State of the Union -Scandal -Johnny Weir -Elizabeth Blackwell -Government Shutdown -Paula Modersohn-Becker -Winter Olympics -New England Patriots owner -Josh McDaniels -Ohio State basketball -Mardi Gras 2018 -Classroom -Florida shooting -Paula Modersohn-Becker -What Time Is The Super Bowl -Monster Hunter World -happy new year in Chinese -Bitcoin Price -Super Bowl score -Patriots -Black Panther -Omarosa -Megan Barry -Justin Timberlake -Wilder Penfield -Virginia Woolf -Valentines Day -Tiger Woods -Super Bowl 2018 -Wilder Penfield -Florida shooting -Elizabeth Blackwell -Paula Modersohn-Becker -Alessia Cara -Florida shooting -Walter Payton -Larry Nassar -Morgan Freeman -Rob Gronkowski -Ash Wednesday -slides -Paula Modersohn-Becker -Jalen Ramsey -Super Bowl score -Winter Olympics -Elton John -Blake Griffin -Mark Salling -Patriots -Patriots -Elizabeth Blackwell -Elizabeth Blackwell -Winter Olympics -Super Bowl score -Virginia Woolf -Carter G. Woodson -Carter G. Woodson -Olympic medal count -Sergei Eisenstein -The Home Depot -Vikings vs Eagles -Lunar eclipse -Joe Kennedy -Kylie Jenner -Elizabeth Blackwell -SpaceX -Royal Rumble 2018 -Super Bowl 2018 -Jason Kelce -SpaceX -Trump State of the Union -SpaceX -Alessia Cara -Patriots -Edible Arrangements -Super Bowl Commercials 2018 -Ellen Pompeo -Puppy Bowl 2018 -Will Ferrell -Elizabeth Blackwell -Edgar Martinez -Government Shutdown -Grammys 2018 -Kentucky shooting -Grammys 2018 -Elizabeth Blackwell -Sergei Eisenstein -Super Bowl 2018 -Netflix Stock -Larry Nassar -Sergei Eisenstein -Virginia Woolf -Mardi Gras 2018 -Tom Brady -Shaun White -Elizabeth Blackwell -Grammys 2018 -Obama portrait -Bode Miller -Toys R Us -Hostiles -Government Shutdown -Virginia Woolf -Chipper Jones -Caitlin McHugh -Elizabeth Blackwell -Camila Cabello -Andrew Cunanan -Winter Olympics -Patriots -Wilder Penfield -Grammys 2018 -Real Madrid -Government shutdown -Kylie Jenner -Groundhog Day 2018 -Ash Wednesday -Kim Kardashian -Virginia Woolf -NBA Trades -Portia de Rossi -Olivia Culpo -Super Bowl score -SpaceX -What Time Is The Super Bowl -Steve Wynn -Paula Modersohn-Becker -Winter Olympics -Happy Valentines Day -Jamie Anderson -Winter Olympics -Virginia Woolf -Mark Salling -Wilder Penfield -curling -Vikings Vs Eagles -Omarosa -Florida shooting -Grammys 2018 -Duke Basketball -Justin Timberlake -SZA -Government shutdown -Duke Basketball -Nba All Star Draft -Malcom Butler -Paula Modersohn-Becker -Super Bowl score -Vikings Vs Eagles -Jennifer Aniston -Johnny Weir -Super Bowl Commercials 2018 -NBA Trades -United States Of America Winter Olympics -Super Bowl 2018 -NBA Trades -Mark Salling -Super Bowl score -Carter G. Woodson -Columbine -Kylie Jenner -Black Panther -Blake Griffin -Government shutdown -12 Strong -Google Classroom -Korea -Patriots -NBA Trades -Gianni Versace -Super Bowl score -Oscar Nominations 2018 -Virginia Woolf -Carter G. Woodson -Omarosa -Alex Reimer -Jason Kelce -Government shutdown -Carter G. Woodson -Snapchat Update -Cnbc -Blood Moon -Olympic medal count -Monster Hunter World -Rasual Butler -Otto Warmbier -Super Blue Blood Moon -Rachel Brand -Snake -Virginia Woolf -Super Bowl Commercials 2018 -Winter Olympics -Trey Gowdy -Russell Wilson -Patriots -Government shutdown 2018 -Cloverfield Paradox -Super Bowl score -National Pizza Day -State of the Union -Hillary Clinton -Wilder Penfield -Kylie Jenner -Wilder Penfield -Patriots -State of the Union -Super Bowl score -Carter G. Woodson -United States Postal Service -Isaiah Thomas -Winter Olympics -Super Bowl score -State of the Union -Sergei Eisenstein -Hostiles -Cavs -calculator -Carter G. Woodson -Nba All Star Draft -Paula Modersohn-Becker -Virginia Woolf -Grammys 2018 -Elizabeth Blackwell -Grammys 2018 -What Time Is The Super Bowl -Virginia Woolf -Carter G. Woodson -Super Bowl score -Winter Olympics -Rihanna -Groundhog Day 2018 -Melania Trump -New England Patriots owner -SpaceX -Steve Wynn -Carter G. Woodson -Charissa Thompson -Did the Groundhog See His Shadow -Solo Trailer -Paula Modersohn-Becker -Sergei Eisenstein -NBA Trades -Robert Mueller -Sergei Eisenstein -Groundhog Day 2018 -NBA Trades -Patriots -Super Bowl 2018 -Disneyland tickets -Patriots -Sergei Eisenstein -SAG Awards 2018 -Grammys 2018 -Johnny Weir -Wilder Penfield -earthquake -Pro Bowl 2018 -Sergei Eisenstein -Champions League -Bitcoin Price -Sergei Eisenstein -Alison Brie -Johnny Weir -Paula Modersohn-Becker -Wilder Penfield -Super Bowl 2018 -Solo Trailer -Champions League -Super Bowl 2018 -Elizabeth Blackwell -Sergei Eisenstein -Nathan Chen -Patriots -Patriots -Super Bowl 2018 -Kylie Jenner -Paula Modersohn-Becker -United States Postal Service -Winter Olympics -Super Bowl 2018 -Lindsey Vonn -Rasual Butler -Virginia Woolf -Winter Olympics -Cryptocurrency News -Kylie Jenner -Florida shooting -Maze Runner: The Death Cure -Korea -Elizabeth Blackwell -Super Bowl 2018 -Justin Timberlake -Florida shooting -Super Bowl 2018 -Florida shooting -Kentucky shooting -Patriots -Mark Salling -Kentucky shooting -Government shutdown -SpaceX -Government Shutdown -Paula Modersohn-Becker -Bitcoin Price -Valentines Day Memes -Super Bowl score -Carter G. Woodson -Florida shooting -Happy Valentines Day -Jennifer Aniston -Elizabeth Blackwell -Winter Olympics -Daryle Singletary -Patriots -Sergei Eisenstein -Super Bowl score -Memo -Den of Thieves -Paula Modersohn-Becker -Kylie Jenner -Once Upon a Time -Winter Olympics -Florida shooting -Shaun White -Winter Olympics -Blake Griffin -Kylie Jenner -Paula Modersohn-Becker -Paula Modersohn-Becker -CNN -Michigan State -UFC 220 -Florida shooting -fake news awards -Justin Timberlake -Super Blue Blood Moon -Florida shooting -Patriots -Shaun White -Google docs -pissant -Trump State of the Union -Winter Olympics -Chloe Kim -Bradie Tennell -12 Strong -Elizabeth Blackwell -Wilder Penfield -Patriots -Government Shutdown Meaning -Brynn Cameron -Paula Modersohn-Becker -Doomsday Clock -Earthquake Today -Bitcoin Price -Tomi Lahren -Patriots -NBA Trades -Black Panther -Mardi Gras 2018 -Paula Modersohn-Becker -Jacob Copeland -State of the Union -Patriots -Wilder Penfield -Super Bowl score -Virginia Woolf -Government Shutdown -Dow Jones -Patriots -OKC Thunder -Aliona Savchenko -Florida shooting -Vanity Fair Cover -Virginia Woolf -Kim Kardashian -Fifty Shades Freed -Elizabeth Blackwell -Alaska earthquake -Marlon Brando -Elizabeth Blackwell -NBC Sports -Chipper Jones -Patriots -Black Panther -Grey's Anatomy -Carter G. Woodson -NFC Championship Game 2018 -Simona Halep -Sergei Eisenstein -Carter G. Woodson -Winter Olympics -Sal Castro Middle School -Wilder Penfield -Carter G. Woodson -Alessia Cara -Olympic medal count -Sergei Eisenstein -Google Classroom -Shaun White -Sergei Eisenstein -PlayStation Network -Stan Lee -Winter Olympics -Patriots -Government Shutdown -Amtrak -AR-15 -Super blue blood Moon -Rasual Butler -pissant -Carter G. Woodson -What Time Is The Super Bowl -NFL Honors -Lil Pump -Chris Mazdzer -Trump State of the Union -stock market -Amy Schumer -Government Shutdown -Elizabeth Blackwell -12 Strong -Carter G. Woodson -Florida shooting -Meteor -Alex Smith -Snake -Grammys 2018 -Lonzo Ball -Adam Schiff -This Is Us -Justin Timberlake -Bob Dole -Florida shooting -Super Bowl score -Carter G. Woodson -Sergei Eisenstein -Winter Olympics -Elizabeth Blackwell -Childish Gambino -CNN -Portia de Rossi -Elizabeth Blackwell -Elizabeth Blackwell -Government Shutdown -Sea Of Thieves -Kylie Jenner -Paula Modersohn-Becker -Emily Sweeney -Super Bowl score -Isaiah Thomas -Did the Groundhog See His Shadow -Kylie Jenner -Scandal -Oscar Nominations 2018 -Winter Olympics -Elizabeth Blackwell -Lorenzo Cain -Pegasus World Cup -Elizabeth Blackwell -Bitcoin Price -Paula Modersohn-Becker -NBA Trades -Paula Modersohn-Becker -Super Bowl score -Oscar Nominations 2018 -Carter G. Woodson -Solo Trailer -Olympic medal count -Mark Salling -Patriots -Virginia Woolf -Groundhog Day 2018 -SpaceX -Sergei Eisenstein -Florida shooting -Virginia Woolf -Neil Diamond -Super Bowl 2018 -Wilder Penfield -Kylie Jenner -School Closings -Vikings Vs Eagles -Bitcoin Price -Kodak Black -Kylie Jenner -Dow Jones -Super Bowl score -Paula Modersohn-Becker -Mark Salling -Super Bowl 2018 -Kylie Jenner -Florida shooting -Wilder Penfield -Mark Salling -Edwin Jackson -Super Bowl Commercials 2018 -Blake Griffin -Super Bowl 2018 -Justin Timberlake -Carter G. Woodson -What Time Is The Super Bowl -Kentucky shooting -Elizabeth Blackwell -Super Bowl 2018 -Virginia Woolf -Florida shooting -Super Bowl 2018 -Carter G. Woodson -Fredo Santana -Wilder Penfield -Sergei Eisenstein -Paula Modersohn-Becker -Patriots -Patriots -Shaun White -Sergei Eisenstein -Edible Arrangements -government shutdown -Florida shooting -stock market -Government Shutdown -Super Bowl score -Mark Salling -Patriots -Virginia Woolf -Black Panther -What Time Is The Super Bowl -Justin Timberlake -Bitcoin Price -Andrew Cunanan -Solo Trailer -Chris Paul -Patriots -Lil Pump -Venom -Wilder Penfield -Zion Williamson -Kylie Jenner -Sergei Eisenstein -Paula Modersohn-Becker -Jeff Flake -Super Bowl 2018 -Dwyane Wade -Champions League -Maze Runner: The Death Cure -Winter Olympics -Trump State of the Union -Sandy Hook -Florida shooting -Wilder Penfield -Super Bowl 2018 -Snapchat Update -Grammys 2018 -Rob Porter -Florida shooting -Winter Olympics -Google docs -Justin Timberlake -New England Patriots owner -Wilder Penfield -Shaun White -Virginia Woolf -Isaiah Thomas -Tomi Lahren -Sergei Eisenstein -Justin Timberlake -Justin Timberlake -Super Bowl 2018 -Happy Valentines Day -New England Patriots owner -Paula Modersohn-Becker -Sabrina Dhowre -Dow Jones -Alex Smith -Dow Jones -Kylie Jenner -Virginia Woolf -Russell Wilson -This Is Us -Paula Modersohn-Becker -Sergei Eisenstein -Paula Modersohn-Becker -Fredo Santana -Paula Modersohn-Becker -Wilder Penfield -Trump State of the Union -Virginia Woolf -Classroom -Russell Wilson -earthquake today -Sergei Eisenstein -Government Shutdown -Justin Timberlake -Super Bowl 2018 -Groundhog Day 2018 -Kim Kardashian -XFL -Kylie Jenner -Den of Thieves -Red Gerard -SpaceX -Paula Modersohn-Becker -Super Bowl 2018 -Super Bowl 2018 -Trump State of the Union -AR-15 -Blake Griffin -Valentines Day Memes -Wilder Penfield -Government Shutdown -Black Lightning -Eli Manning -Elizabeth Blackwell -Sal Castro Middle School -Meteor -Bruno Mars -Justin Timberlake -Chris Paul -Government Shutdown -Heath Ledger -Patriots -Florida shooting -Super Bowl score -UFC 220 -Super Bowl 2018 -Caroline Wozniacki -Florida shooting -Paula Modersohn-Becker -SpaceX -Winter Olympics -Government Shutdown -Patriots -What Time Is The Super Bowl -Google Classroom -Morgan Freeman -Elizabeth Blackwell -Groundhog Day 2018 -Kim Kardashian -Elizabeth Blackwell -Rodney Hood -Kim Kardashian -Anthony Davis -Elizabeth Blackwell -Wilder Penfield -Sergei Eisenstein -SpaceX -Justin Timberlake -Royal Rumble 2018 -Justin Timberlake -Elizabeth Blackwell -Kylie Jenner -Carter G. Woodson -Florida shooting -Aaliyah -Government Shutdown -Virginia Woolf -Larry Nassar -Joshua Cooper Ramo -SpaceX -Super Bowl 2018 -United States Of America Winter Olympics -Mexico Vs Bosnia -Oscar Nominations 2018 -Bob Dole -The Alienist -Super Bowl score -Tesla in space -Groundhog Day 2018 -SpaceX -Puppy Bowl 2018 -Justin Timberlake -State of the Union -Matt Czuchry -Casey Affleck -Wilder Penfield -SpaceX -Government Shutdown -Shaun White -Justin Timberlake -JUUL -Kim Kardashian -Elizabeth Blackwell -Women's March 2018 -Sergei Eisenstein -Winter Olympics -Paula Modersohn-Becker -Childish Gambino -SpaceX -Super Bowl score -Sergei Eisenstein -Florida shooting -Super Bowl 2018 -Winter Olympics -Carter G. Woodson -Lindsey Vonn -Shaun White -Lauren Davis -Solo Trailer -Lil Xan -Patriots -Mikaela Shiffrin -Despacito -Amy Schumer -Brie Larson -Paula Modersohn-Becker -Super Bowl 2018 -Carter G. Woodson -Florida shooting -Paula Modersohn-Becker -Mark E Smith -Quincy Jones -Virginia Woolf -Super Bowl score -Blue Moon -Grammys 2018 -New England Patriots owner -Deadpool 2 -Fredo Santana -Rasual Butler -Elizabeth Blackwell -Did the Groundhog See His Shadow -Carter G. Woodson -Dwyane Wade -Emily Sweeney -Johnny Weir -Super Bowl 2018 -Rodney Hood -Virginia Woolf -Joy Villa -Super Bowl 2018 -Super Bowl 2018 -Nba All Star Draft -Super blue blood Moon -State of the Union -Adam Rippon -Super Bowl score -Wilder Penfield -Patriots -Florida shooting -Wilder Penfield -Virginia Woolf -Kylie Jenner -Utah Jazz -Winter Olympics -Elizabeth Blackwell -Duke basketball -Sergei Eisenstein -What Time Is The Super Bowl -Kylie Jenner -Eli Manning -Ash Wednesday -Kim Cattrall -Super Bowl 2018 -Shaun White -Elizabeth Blackwell -Government Shutdown -Happy Valentines Day -Chris Long -Carter G. Woodson -Super Bowl score -Sergei Eisenstein -Virginia Woolf -Happy Valentines Day -Super Bowl 2018 -Winter Olympics -Elizabeth Blackwell -NBA Trades -Florida shooting -Alaska earthquake -Black Lightning -Happy Valentines Day -Oscar Nominations 2018 -Super Bowl 2018 -Groundhog Day 2018 -Shiffrin -XFL -Oar Olympics -Cloverfield Paradox -Black Panther -Cloverfield Paradox -Elizabeth Blackwell -Government Shutdown -Larry Nassar -Happy Valentines Day -SpaceX -Larry Nassar -Valentines Day -Paula Modersohn-Becker -Jessica Chastain -Happy Valentines Day -Bitcoin Price -Virginia Woolf -Elizabeth Blackwell -Happy Valentines Day -Senior Bowl -Wilder Penfield -Grammys 2018 -Enzo Amore -Jessica Chastain -Ronaldinho -Carter G. Woodson -Patriots -Dennis Edwards -Adam Rippon -Winter Olympics -Florida shooting -New England Patriots owner -Paula Modersohn-Becker -Paula Modersohn-Becker -Florida shooting -Grammys 2018 -Will Ferrell -Solo Trailer -Kylie Jenner -Rasual Butler -Kylie Jenner -All Star Weekend 2018 -State of the Union -Paula Modersohn-Becker -Grammys 2018 -Florida shooting -Lonzo Ball -Kylie Jenner -Wilder Penfield -Shaun White -Super Bowl score -Winter Olympics -Happy Valentines Day -UFC 220 -Carter G. Woodson -Reg E Cathey -Carter G. Woodson -Women's March 2018 -Paula Modersohn-Becker -Virginia Woolf -Justin Timberlake -Sergei Eisenstein -Florida shooting -Johnny Weir -Obama portrait -FC Barcelona -Patriots -What Time Is The Super Bowl -Elizabeth Blackwell -Joy Villa -Super Bowl 2018 -Government shutdown 2018 -Hope Hicks -Wilder Penfield -Virginia Woolf -Grammys 2018 -Olive Garden -Google Drive -Oscar Nominations 2018 -Sharon Stone -Winter Olympics -Justin Timberlake -earthquake today -This Is Us -Google Drive -Rasual Butler -Grammys 2018 -New England Patriots owner -Carter G. Woodson -Carter G. Woodson -Montreal Cognitive Assessment -Winter Olympics -Kylie Jenner -Florida shooting -Bitcoin Price -Super Bowl score -Cherry Seaborn -Grammys 2018 -Patriots -Johnny Weir -tsunami -Winter Olympics -Lunar eclipse -Sergei Eisenstein -Florida shooting -The 15:17 to Paris -Super Bowl score -Sergei Eisenstein -Mark Salling -Patriots -School Closings -Montreal Cognitive Assessment -Elizabeth Blackwell -Patriots -Sergei Eisenstein -Paula Modersohn-Becker -Winter Olympics -Josh McDaniels -Solo Trailer -Larry Nassar -XFL -Justin Timberlake -government shutdown -Florida shooting -Groundhog Day 2018 -Larry Nassar -Peter Rabbit -Super Bowl 2018 -Paula Modersohn-Becker -NBA Trades -Drive -Patriots -Nancy Pelosi -Elizabeth Blackwell -Winter Olympics -Super Bowl Commercials 2018 -Pro Bowl 2018 -Aaron Feis -Super Bowl score -Super Bowl 2018 -Paul Ryan -Aaron Feis -Super Bowl 2018 -State of the Union -Kim Kardashian -Women's March 2018 -Happy Valentines Day -Super Bowl score -Paula Modersohn-Becker -Virginia Woolf -Meteor -Kylie Jenner -Royal Rumble 2018 -SpaceX -Paula Modersohn-Becker -Vikings Vs Eagles -XFL -Carter G. Woodson -Virginia Woolf -Fifty Shades Freed -What Time Is The Super Bowl -Super Bowl Commercials 2018 -Patriots -Alexander Polinsky -Rachel Brand -Kylie Jenner -Super Bowl 2018 -Robby Anderson -Paula Modersohn-Becker -Caitlin McHugh -Sergei Eisenstein -Rasual Butler -Florida shooting -Jason Kelce -Florida shooting -Super Bowl score -Blake Griffin -Slender Man -Blake Griffin -Super Bowl 2018 -Virginia Woolf -Kylie Jenner -Patriots -Government Shutdown -Winter Olympics -SpaceX -SpaceX -What Time Is The Super Bowl -Patriots -Luke Wilson -DeMarcus Cousins -Elizabeth Blackwell -SpaceX -Blake Griffin -Sergei Eisenstein -Sergei Eisenstein -Winter Olympics -Forever My Girl -Elon Musk -Sergei Eisenstein -Winter Olympics -Super Bowl Commercials -Super Bowl 2018 -Super Bowl 2018 -Paula Modersohn-Becker -Amtrak -Super Bowl 2018 -Royal Rumble 2018 -Winter Olympics -Super Bowl score -Dow Jones -Larry Nassar -Columbine -Florida shooting -Elizabeth Blackwell -Patriots -SAG Awards 2018 -Super Bowl 2018 -Tom Petty -Gods Plan -Vikings Vs Eagles -Dwyane Wade -Justin Timberlake -NBA Trades -Jen Selter -Red Gerard -Patriots -Chipper Jones -Justin Timberlake -Pro Bowl 2018 -Robert Mueller -UFC 220 -Derrick Rose -Halsey -Alaska earthquake -Super Bowl 2018 -Happy Valentines Day -Wilder Penfield -Sergei Eisenstein -Black Panther -Highline College -Shaun White -Super Bowl 2018 -Alaska earthquake -What Time Is The Super Bowl -Jenna Morasca -SpaceX -Carter G. Woodson -What Time Is The Super Bowl -Terrell Owens -Red Gerard -Childish Gambino -Paula Modersohn-Becker -Paula Modersohn-Becker -Jennifer Aniston -Alex Smith -Super Bowl score -Vikings Vs Eagles -Forever My Girl -Taiwan Earthquake Today -Wilder Penfield -This Is Us -Virginia Woolf -Paula Modersohn-Becker -Quincy Jones -Justin Timberlake -Justin Timberlake -Virginia Woolf -Women's March 2018 -Wilder Penfield -Carter G. Woodson -Super Bowl Winners -Valentines Day -Trump State of the Union -Tom Brady -Dennis Edwards -Paula Modersohn-Becker -Scott Baio -Florida shooting -Winter Olympics -Super Bowl score -State of the Union -Super Bowl 2018 -Winter Olympics -Winter Olympics -Super Bowl score -Portia de Rossi -Paula Modersohn-Becker -Carter G. Woodson -Vikings Vs Eagles -Government shutdown 2018 -What Time Is The Super Bowl -What Time Is The Super Bowl -Chicago West -Vikings Vs Eagles -Lorenzo Cain -Grammys 2018 -Carter G. Woodson -CNN -Super blue blood Moon -Arsenal -Florida shooting -Google Drive -Dwyane Wade -Johnny Weir -Government Shutdown Meaning -SpaceX -Tesla in space -Dow Jones -Dow Jones -Montreal Cognitive Assessment -Google docs -SpaceX -Paula Modersohn-Becker -Super Bowl 2018 -Wilder Penfield -Eli Manning -Lonzo Ball -Florida shooting -State of the Union -Wilder Penfield -Super Bowl 2018 -Super Bowl score -Malcom Butler -Meteor -Florida shooting -Florida shooting -Kylie Jenner -Super Bowl score -Government shutdown 2018 -Super blue blood Moon -Super Bowl 2018 -Grammys 2018 -Alessia Cara -Super Bowl score -Fredo Santana -Winter Olympics -Alex Smith -stock market -Royal Rumble 2018 -Florida shooting -Grammys 2018 -Solo Trailer -Obama portrait -Sergei Eisenstein -Virginia Woolf -Solo Trailer -Grammys 2018 -Dow Jones -Super Bowl 2018 -SpaceX -Virginia Woolf -Carter G. Woodson -Elizabeth Blackwell -Aliona Savchenko -Chinese New Year 2018 -Virginia Woolf -Caitlin McHugh -Vikings Vs Eagles -Government Shutdown -What Time Is The Super Bowl -Winter Olympics -Patriots -Ellen DeGeneres -Super blue blood Moon -What Time Is The Super Bowl -Winter Olympics -fake news awards -SpaceX -Ash Wednesday -Alex Smith -Snapchat Update -SpaceX -Carter G. Woodson -Virginia Woolf -weather tomorrow -Bitcoin Price -Carter G. Woodson -Wilder Penfield -Florida shooting -12 Strong -Kylie Jenner Baby Girl -Lady Bird -Wilder Penfield -The 15:17 to Paris -Super Bowl score -Grammys 2018 -Super Bowl 2018 -Kratom -Mr Rogers -Nathan Chen -Grammys 2018 -Carter G. Woodson -Valentines Day -Virginia Woolf -Robert Wagner -What Time Is The Super Bowl -Virginia Woolf -Bitcoin Price -12 Strong -Dwyane Wade -Tiger Woods -Patriots -State of the Union -This Is Us -Super Bowl 2018 halftime show -CNN -Carter G. Woodson -Carter G. Woodson -Elizabeth Blackwell -Red Gerard -Grammys 2018 -Rampage -Snake -Elizabeth Blackwell -Fredo Santana -Cavs -Black Panther -Cavs -Government Shutdown 2018 -Mikaela Shiffrin -Mark Salling -Paula Modersohn-Becker -Virginia Woolf -Google docs -Elizabeth Blackwell -Kylie Jenner -Peter Rabbit -Trump Hair -Elton John tickets -Celtics -Russell Wilson -Super Bowl 2018 -Florida shooting -Happy Valentines Day -Super Bowl 2018 -What Time Is The Super Bowl -Eli Manning -Rasual Butler -Groundhog Day 2018 -Joel Taylor -Carter G. Woodson -What Time Is The Super Bowl -Grammys 2018 -Princess Eugenie -Terry Bradshaw -Lindsey Vonn -Get Out -Bitcoin Price -Elizabeth Blackwell -Super Bowl score -Cavs -Super Bowl score -Women's March 2018 -Super Bowl score -Pro Bowl 2018 -Hope Hicks -NBA Trades -SpaceX -Kylie Jenner -Virginia Woolf -The Resident -Virginia Woolf -Super Bowl score -Florida shooting -Florida shooting -Winchester -NBA Trades -Laura Ingraham -Super Bowl 2018 -Super Bowl 2018 -Champions League -Kesha Grammy -Super blue blood Moon -Larry Nassar -Elton John -Virginia Woolf -Government Shutdown -Daryle Singletary -Winter Olympics -Elizabeth Blackwell -Patriots -Tiger Woods -Houston Rockets -Oscar Nominations 2018 -Wilder Penfield -Obama portrait -Chloe Kim -Altered Carbon -Carter G. Woodson -Justin Timberlake -Sergei Eisenstein -Derrick Rose -Super Bowl Winners -Paula Modersohn-Becker -Shaun White -Carter G. Woodson -Fb Stock -Stormi -Groundhog Day 2018 -calculator -Sergei Eisenstein -Paula Modersohn-Becker -OKC Thunder -Patriots -Super Bowl score -Shaun White -Doomsday Clock -Aaliyah -Florida shooting -Justin Timberlake -Olive Garden -Chris Mazdzer -Winter Olympics -Bruno Mars -Devin Nunes -Sea Of Thieves -Atlanta Weather -Royal Rumble 2018 -Florida shooting -Chris Paul -Virginia Woolf -Virginia Woolf -Mark Salling -Pink -Chicago West -Jacob Copeland -Wilder Penfield -Alex Smith -Super Bowl 2018 -Betty White -Wilder Penfield -CNN -Nintendo Labo -Carter G. Woodson -Elizabeth Blackwell -Chinese New Year 2018 -Stock Market Crash Today -Betty White -Zion Williamson -School closings -Carter G. Woodson -Patriots -Jennifer Aniston -Trump State of the Union -Royal Rumble 2018 -Den of Thieves -UFC 220 -Patriots -Florida shooting -Virginia Woolf -Wilder Penfield -Winter Olympics -Harley Barber -Hillary Clinton -Super blue blood Moon -Sergei Eisenstein -Paula Modersohn-Becker -Isaiah Thomas -Trump Hair -Patti LuPone -Anna Kournikova -Elizabeth Blackwell -UFC 220 -SpaceX -Patriots -Solo Trailer -Kristaps Porzingis -Rose McGowan -Winter Olympics -SpaceX -Patriots -Florida shooting -SpaceX -Kylie Jenner -Government Shutdown 2018 -Evgenia Medvedeva -New England Patriots owner -Sergei Eisenstein -Ann Curry -Shaun White -Carter G. Woodson -Super Bowl score -Super Bowl 2018 -Super Bowl score -Black Lightning -SpaceX -earthquake -Dwyane Wade -Kylie Jenner -Paula Modersohn-Becker -Real Madrid -Florida shooting -Sergei Eisenstein -Super Bowl Commercials 2018 -Mark Salling -This Is Us -Virginia Woolf -Joshua Cooper Ramo -Rose McGowan -Classroom -Lindsey Vonn -Montreal Cognitive Assessment -Government Shutdown -Florida shooting -H&r Block -Paula Modersohn-Becker -Groundhog Day 2018 -Dane Cook -Chloe Kim -Den of Thieves -Alessia Cara -Alex Smith -stock market -Patriots -Larry Nassar -Virginia Woolf -Wilder Penfield -Super Bowl 2018 -Florida shooting -Super Bowl 2018 -Patti LuPone -Roger Federer -Government Shutdown -Larry Nassar -Virginia Woolf -Groundhog Day 2018 -Carter G. Woodson -Wilder Penfield -Rodney Hood -Paula Modersohn-Becker -Sarah Barthel -Winter Olympics -Google Classroom -Cherry Seaborn -What Time Is The Super Bowl -Government Shutdown -Vikings vs Eagles -OKC Thunder -Memo -calculator -Johnny Weir -Norovirus -Kentucky shooting -Government Shutdown -Paula Modersohn-Becker -Blake Griffin -Houston Rockets -Winter Olympics -Super Bowl score -Bitcoin Price -Ellen Pompeo -Paula Modersohn-Becker -Kratom -Florida shooting -Super Bowl score -What Time Is The Super Bowl -Virginia Woolf -Winter Olympics -Sergei Eisenstein -Super Bowl score -Mark Salling -Patriots -Jessica Chastain -Malcom Butler -Super Bowl score -Ncaa Basketball Top 25 -Korea -Kylie Jenner -Paula Modersohn-Becker -Sergei Eisenstein -Winter Olympics -Government Shutdown -SpaceX -Bitcoin Price -Kentucky shooting -Paula Modersohn-Becker -Meteor -Sergei Eisenstein -Carter G. Woodson -Patriots -Kesha Grammy -Peter Rabbit -Super Bowl score -Luke Wilson -Larry Nassar -Groundhog Day 2018 -Jimmy Garoppolo -Justin Timberlake -Wilder Penfield -Mark Salling -Super Bowl score -Super Bowl 2018 -Vikings Vs Eagles -Patriots -Government shutdown 2018 -Larry Nassar -Shaun White -Google docs -Women's March 2018 -Grammys 2018 -What Time Is The Super Bowl -Paula Modersohn-Becker -Super Bowl 2018 -What Time Is The Super Bowl -Sergei Eisenstein -Grammys 2018 -Blake Griffin -Patriots -Mark E Smith -Patriots -Government Shutdown -Once Upon a Time -Super Bowl 2018 -Sergei Eisenstein -Justin Timberlake -Fredo Santana -Pro Bowl 2018 -Solo Trailer -Jason Momoa -Virginia Woolf -Groundhog Day 2018 -SpaceX -Elizabeth Blackwell -Memo -SAG Awards 2018 -Jason Kelce -Celtics -Sergei Eisenstein -What Time Is The Super Bowl -Government Shutdown -Wilder Penfield -Google Drive -State of the Union -Elizabeth Blackwell -Super Bowl Commercials 2018 -Super Bowl score -Jason Kelce -Cavs -Dow Jones -What Time Is The Super Bowl -Edwin Jackson -Memo -Grammys 2018 -Oscar Nominations 2018 -Winter Olympics -Wilder Penfield -Virginia Woolf -Jon Huntsman -SAG Awards 2018 -Google docs -Trump State of the Union -Sergei Eisenstein -Larry Nassar -Government shutdown 2018 -Cavs -Puppy Bowl 2018 -Mardi Gras 2018 -Scott Baio -Lorenzo Cain -Carter G. Woodson -State of the Union -Cavs -Virginia Woolf -Enzo Amore -SpaceX -Patriots -Rasual Butler -Lakers -Luke Wilson -Altered Carbon -Justin Timberlake -Trump State of the Union -Grammys 2018 -Pro Bowl 2018 -Virginia Woolf -Paula Modersohn-Becker -Bitcoin Price -Alex Smith -Bitcoin Price -Dow Jones -Adam Rippon -SAG Awards 2018 -Winter Olympics -Grammys 2018 -Winter Olympics -Justin Timberlake -Elizabeth Blackwell -Government shutdown -stock market -Carter G. Woodson -Memo -Football Playoffs 2018 -12 Strong -Amy Schumer -Childish Gambino -Jason Kelce -Carter G. Woodson -Super Bowl 2018 -Winter Olympics -Paula Modersohn-Becker -Robert Mueller -Patriots -Blake Griffin -State of the Union -Danielle Herrington -Wilder Penfield -Super Bowl score -Super Bowl score -Super Bowl 2018 -Joe Kennedy -Wilder Penfield -Virginia Woolf -Terrell Owens -Winter Olympics -Altered Carbon -Alex Smith -Super Bowl score -Virginia Woolf -Super Bowl 2018 -Super Blue Blood Moon -Super Bowl score -Joy Villa -Cnbc -Florida shooting -Virginia Woolf -Mardi Gras 2018 -Carter G. Woodson -Justin Timberlake -Jacob Copeland -Vikings Vs Eagles -SpaceX -Jessica Chastain -Costco Wholesale -Bitcoin Price -Virginia Woolf -Joy Villa -Google Drive -Paula Modersohn-Becker -Happy Valentines Day -Mardi Gras 2018 -Mary And The Witch's Flower -Mikaela Shiffrin -Sergei Eisenstein -Justin Timberlake -Winter Olympics -Virginia Woolf -Justin Timberlake -Wilder Penfield -Sergei Eisenstein -Florida shooting -Florida shooting -Puppy Bowl 2018 -Winter Olympics -Virginia Woolf -Ash Wednesday -Luke Wilson -Paula Modersohn-Becker -Bitcoin Price -Patriots -Edwin Jackson -Blue Moon -Florida shooting -Oscar Nominations 2018 -Vikings Vs Eagles -Kylie Jenner -Super Bowl score -Elizabeth Blackwell -Winter Olympics -Super Bowl score -Chloe Kim -Tom Petty -Super Bowl Winners -What Time Is The Super Bowl -Super Bowl 2018 -Bruno Mars -Super Bowl score -Johnny Weir -Alessia Cara -Larry Nassar -Amy Schumer -Virginia Woolf -Government Shutdown -Omarosa -Dow Jones -Super Bowl score -What Time Is The Super Bowl -Larry Nassar -Ash Wednesday -IXL -Mark Salling -Carter G. Woodson -Florida shooting -Winter Olympics -Mardi Gras 2018 -Larry Nassar -UFC 220 -Elizabeth Blackwell -Bitcoin Price -Paula Modersohn-Becker -Patriots -Virginia Woolf -Sergei Eisenstein -Johnny Weir -Justin Timberlake -Wilder Penfield -Portia de Rossi -Virginia Woolf -Harley Barber -Scott Baio -Brynn Cameron -Fredo Santana -Shaun White -Solo Trailer -Patriots -Shaun White -Wilder Penfield -Fredo Santana -Florida shooting -Virginia Woolf -Winchester -Government shutdown 2018 -Patriots -Camila Cabello -Wilder Penfield -Government Shutdown -Jennifer Aniston -Wing Bowl 2018 -Montreal Cognitive Assessment -Chinese New Year 2018 -Dwyane Wade -Government Shutdown Meaning -Rodney Hood -School closings -Mary And The Witch's Flower -Carter G. Woodson -SpaceX -stock market -Virginia Woolf -Presidents Day 2018 -Wilder Penfield -Rihanna -Steve Wynn -Carter G. Woodson -Paula Modersohn-Becker -Drive -Sting -Virginia Woolf -Cnbc -Florida shooting -Solo Trailer -National Pizza Day -What Time Is The Super Bowl -Grammys 2018 -Alaska earthquake -Wilder Penfield -Mardi Gras 2018 -Oscar Nominations 2018 -Florida shooting -Rasual Butler -Carter G. Woodson -Virginia Woolf -Yu Darvish -Patriots -Happy Valentines Day -Government Shutdown Meaning -Winter Olympics -Altered Carbon -Gianni Versace -Vikings Vs Eagles -Mark Salling -Mikaela Shiffrin -Amy Schumer -Valentines Day -Super Bowl score -Vikings Vs Eagles -Paul Ryan -Chrissy Teigen -Virginia Woolf -Super Bowl score -Groundhog Day 2018 -Winter Olympics -Florida shooting -Paula Modersohn-Becker -Vikings Vs Eagles -Wilder Penfield -Elizabeth Blackwell -Paula Modersohn-Becker -Super Bowl 2018 -United States Of America Winter Olympics -Shaun White -Super Bowl score -Valentines Day -Ash Wednesday -Patriots -John Mahoney -Sergei Eisenstein -Super blue blood Moon -Dow Jones industrial average -Rasual Butler -Shaun White -Winter Olympics -Monster Hunter World -National Pizza Day -Oscar Nominations 2018 -Winter Olympics -Real Madrid -The First Purge -Larry Nassar -Winter Olympics -NBA Trades -Ar 15 -Virginia Woolf -Obama portrait -Olivia Munn -Andrew McCabe -What Time Is The Super Bowl -Shaun White -James Baldwin -Grammys 2018 -What Time Is The Super Bowl -What Time Is The Super Bowl -What Time Is The Super Bowl -Grammys 2018 -Did the Groundhog See His Shadow -What Time Is The Super Bowl -Government Shutdown -Patriots -Otto Warmbier -Kodak Black -SpaceX -Government Shutdown -Dow Jones -What Time Is The Super Bowl -Super Bowl Commercials 2018 -Andrew Cunanan -Adam Rippon -Super Bowl 2018 -CNN -Super Bowl 2018 -Chinese New Year 2018 -Black Panther -What Time Is The Super Bowl -SAG Awards 2018 -What Time Is The Super Bowl -Despacito -Oar Olympics -Dow Jones -Super Bowl 2018 -Winter Olympics -Memo -Ash Wednesday -NBA Trades -Lorenzo Cain -Sergei Eisenstein -Joshua Cooper Ramo -Chinese New Year 2018 -Wilder Penfield -Kylie Jenner -Super Bowl score -Monster Hunter World -Patriots -Grammys 2018 -Government shutdown 2018 -Dragon Ball Super -Alessia Cara -Elizabeth Blackwell -Den of Thieves -Larry Nassar -UFC 220 -State of the Union -Wilder Penfield -Patriots -Florida shooting -Lil Pump -Patriots -Justin Timberlake -Patti LuPone -Houston Rockets -Paula Modersohn-Becker -Jamie Anderson -Oscar Nominations 2018 -Fifty Shades Freed -Earthquake Today -Winter Olympics -Carter G. Woodson -Carter G. Woodson -Adam Rippon -Bitcoin Price -Super Bowl score -Conor McGregor -Ohio State basketball -Government Shutdown -Sergei Eisenstein -Ash Wednesday -CNN -Paula Modersohn-Becker -Johnny Weir -Winter Olympics -Monster Hunter World -Black Panther -Florida shooting -Government Shutdown -Virginia Woolf -Government Shutdown -Grammys 2018 -Olympics 2018 -SAG Awards 2018 -Caroline Wozniacki -Carter G. Woodson -Winter Olympics -Elton John -Super Bowl 2018 -Dow Jones -Winter Olympics -Paula Modersohn-Becker -Fb Stock -Paragon -Eli Manning -Disneyland tickets -Government shutdown 2018 -NFL Honors -Florida shooting -Royal Rumble 2018 -One Day At A Time -Fifty Shades Freed -Kesha -Oar Olympics -Culture 2 -Jason Kelce -Patriots -Patriots -This Is Us -Super Bowl score -Yahoo Finance -Evgenia Medvedeva -NFC Championship Game 2018 -Lauren Davis -Vikings vs Eagles -Groundhog Day 2018 -Virginia Woolf -Carter G. Woodson -Super blue blood Moon -Wilder Penfield -State of the Union -Neil Diamond -Winter Olympics -Wilder Penfield -Derrick Rose -Sergei Eisenstein -Wilder Penfield -Winter Olympics -Kylie Jenner -Virginia Woolf -Virginia Woolf -Carter G. Woodson -Real Madrid -Groundhog Day 2018 -Eli Manning -Justin Timberlake -Sergei Eisenstein -Spice Girls -Groundhog Day 2018 -Happy Valentines Day -Andrew Cunanan -Memo -Carter G. Woodson -Andre Roberson -Champions League -Fifty Shades Freed -Happy Valentines Day -Rodney Hood -Wilder Penfield -NFL Honors -Sergei Eisenstein -Elon Musk -Google Drive -Wonder Woman -State of the Union -Grammys 2018 -Lonzo Ball -Kris Dunn -Paula Modersohn-Becker -What Time Is The Super Bowl -Patriots -Super Bowl score -Florida shooting -Winter Olympics -Justin Timberlake -Bob Dole -SpaceX -Sergei Eisenstein -Oscar Nominations 2018 -Black Panther -Virginia Woolf -Shaun White -Larry Nassar -Valentines Day -Wilder Penfield -What Time Is The Super Bowl -Kentucky shooting -Meteor -Emily Sweeney -Wilder Penfield -Florida shooting -Super Bowl 2018 -Carter G. Woodson -Sergei Eisenstein -UFC 220 -Jessica Chastain -NFL Honors -Paula Modersohn-Becker -Juegos Olímpicos de Invierno 2018 -Did the Groundhog See His Shadow -Paula Modersohn-Becker -calculator -XFL -Sergei Eisenstein -Simona Halep -Red Gerard -Kesha Grammy -Carter G. Woodson -Government shutdown 2018 -Maria Menounos -Vikings Vs Eagles -Florida shooting -Grammys 2018 -Winter Olympics -Robert Mueller -Duke basketball -stock market -Sergei Eisenstein -Alexander Polinsky -Alex Smith -Patriots -Fredo Santana -Elizabeth Blackwell -Patriots -Tom Petty -Tesla in space -MS13 -Oscar Nominations 2018 -Grammys 2018 -Timor Leste -Super Bowl 2018 -12 Strong -What Time Is The Super Bowl -Did the Groundhog See His Shadow -Patriots -Chinese New Year 2018 -Zion Williamson -Elizabeth Blackwell -SZA -Culture 2 -Super Bowl score -Emily Sweeney -Paula Modersohn-Becker -Carter G. Woodson -Super Bowl score -Bill Paxton -Maze Runner: The Death Cure -stock market -Government Shutdown -Wilder Penfield -Super Bowl 2018 -Sergei Eisenstein -Wilder Penfield -Altered Carbon -Florida shooting -Dow Jones -Paula Modersohn-Becker -Ash Wednesday -Paula Modersohn-Becker -Meteor -Tammy Duckworth -Kylie Jenner -Dow Jones -Carter G. Woodson -UFC 220 -Shaun White -Brynn Cameron -SpaceX -Super Bowl 2018 -SZA -Justin Timberlake -Patriots -Kim Kardashian -Cavs -Frederick Douglass -Winter Olympics -Patriots -Elizabeth Blackwell -Aaliyah -Justin Timberlake -Quincy Jones -Paula Modersohn-Becker -Virginia Woolf -XFL -Kim Kardashian -Justin Timberlake -Pro Bowl 2018 -Wilder Penfield -Elton John -Winter Olympics -Carter G. Woodson -Did the Groundhog See His Shadow -Scott Baio -Shaun White -Drake -Winter Olympics -Bitcoin Price -Steve Mcnair -Meteor -Virginia Woolf -Super Bowl score -Paula Modersohn-Becker -Chris Paul -School Closings -Den of Thieves -Vikings Vs Eagles -Kim Kardashian -Blake Griffin -Sergei Eisenstein -Super Bowl score -New California -Larry Nassar -Florida shooting -Sergei Eisenstein -Kentucky shooting -Westerville Ohio -Matt Czuchry -Doomsday Clock -Lindsey Vonn -LeBron James -Sergei Eisenstein -Highline College -Patriots -Kylie Jenner -Walter Payton -Jennifer Aniston -Trump State of the Union -Elizabeth Blackwell -school closings -Elizabeth Blackwell -Florida shooting -Sting -New England Patriots owner -Super blue blood Moon -Steve Wynn -Patti LuPone -Michigan State -Paula Modersohn-Becker -Wilder Penfield -Kylie Jenner Baby Girl -Tiger Woods -SpaceX -Super Bowl 2018 -Dow Jones -Ohio State basketball -This Is Us -Sergei Eisenstein -LeBron James -Nba All Star Draft -Patriots -Virginia Woolf -Patriots -Kylie Jenner -Virginia Woolf -Super Bowl Commercials 2018 -Robert Wagner -XFL -Wilder Penfield -12 Strong -Pro Bowl 2018 -Carter G. Woodson -Government Shutdown -Elizabeth Blackwell -Justin Timberlake -School Closings -Tiger Woods -Andre the Giant -Elizabeth Blackwell -Elizabeth Blackwell -Super blue blood Moon -Patty Hearst -Grammys 2018 -Winter Olympics -Elizabeth Blackwell -All Star Weekend 2018 -Ash Wednesday -XFL -Mardi Gras 2018 -Government Shutdown -Super Bowl score -Classroom -Carter G. Woodson -Florida shooting -Fifty Shades Freed -Childish Gambino -Kylie Jenner -Elizabeth Blackwell -Patriots -Valentines Day -Super Bowl score -Mexico Vs Bosnia -Kylie Jenner -stock market -Carter G. Woodson -Dow Jones -Patriots -Super Bowl score -CNN -Paula Modersohn-Becker -Grammys 2018 -Paula Modersohn-Becker -Joe Kennedy -Virginia Woolf -Florida shooting -Vince McMahon -Super Bowl score -Timor Leste -Justin Timberlake -Wilder Penfield -Patriots -Super Blue Blood Moon -Rasual Butler -Government Shutdown 2018 -Devin Nunes -SpaceX -NBA Trades -Super Bowl Commercials 2018 -Super Bowl 2018 -Super Bowl score -Florida shooting -Josh McDaniels -Andrew Cunanan -Chinese New Year 2018 -Kylie Jenner -Virginia Woolf -Robert Wagner -Mark Salling -Yu Darvish -Mark Salling -Carter G. Woodson -Super Bowl 2018 -Wilder Penfield -Ncaa Basketball Top 25 -Florida shooting -CNN -Patriots -NFC Championship Game 2018 -Eli Manning -Neil Diamond -Johnny Weir -Kim Kardashian -Johnny Weir -Paula Modersohn-Becker -Rasual Butler -Super Bowl 2018 -Tammy Duckworth -Justin Timberlake -Champions League -Grey's Anatomy -Joe Kennedy -Florida shooting -Vikings Vs Eagles -Carter G. Woodson -Kylie Jenner -Valentine's Day -CNN -Carter G. Woodson -Lauren Davis -NBA Trades -Pro Bowl 2018 -Valentines Day -Carter G. Woodson -Patriots -Winter Olympics -Elon Musk -State of the Union -Virginia Woolf -Groundhog Day 2018 -Super Bowl 2018 -Paula Modersohn-Becker -Winter Olympics -Chloe Kim -Rihanna -Anastasia Bryzgalova -Olympic Medal Count -Kylie Jenner -Fredo Santana -school closings -Rasual Butler -Phantom Thread -Omarosa -Government shutdown 2018 -Daryle Singletary -Government shutdown -Paula Modersohn-Becker -Uma Thurman -Super Bowl 2018 -Sergei Eisenstein -Happy Valentines Day -Lakers -FC Barcelona -Patti LuPone -Terrell Owens -NBA Trades -Elizabeth Blackwell -Elizabeth Blackwell -pissant -Bitcoin Price -Elizabeth Blackwell -Carter G. Woodson -calculator -Kylie Jenner -Florida shooting -Royal Rumble 2018 -Mikaela Shiffrin -Nadal -Vikings Vs Eagles -Paula Modersohn-Becker -Google Classroom -Olympic medal count -Paula Modersohn-Becker -XFL -Government Shutdown -Uma Thurman -Justin Timberlake -Carter G. Woodson -Paula Modersohn-Becker -Sergei Eisenstein -Memo -Government Shutdown -Rolling Loud -Paula Modersohn-Becker -Sergei Eisenstein -Chinese New Year 2018 -Winter Olympics -Camila Cabello -Sergei Eisenstein -Hostiles Movie -Josh McDaniels -Patriots -Super Bowl score -Elizabeth Blackwell -Samson -Google Drive -Elizabeth Blackwell -Super Bowl score -Patriots -Elizabeth Blackwell -Kylie Jenner Baby Girl -New England Patriots owner -This Is Us -Kesha -Florida shooting -Cloverfield Paradox -Did the Groundhog See His Shadow -Super Bowl score -Patriots -Florida shooting -Winter Olympics -Sergei Eisenstein -Evgenia Medvedeva -Super Blue Blood Moon -Justin Timberlake -Virginia Woolf -Super Bowl score -Dolly Parton -Super Blue Blood Moon -Carter G. Woodson -Jason Kelce -Virginia Woolf -Grammys 2018 -Wilder Penfield -Wilder Penfield -Wilder Penfield -Kesha -Grammys 2018 -Luke Wilson -Elizabeth Blackwell -Chloe Kim -Super Bowl 2018 -SpaceX -Alaska earthquake -Culture 2 -SAG Awards 2018 -Government Shutdown -Kylie Jenner Baby Girl -Olympic medal count -Wilder Penfield -Alex Reimer -Groundhog Day 2018 -Kylie Jenner -CNN -Kim Cattrall -Virginia Woolf -Kylie Jenner -Farmers Insurance Open 2018 -Elizabeth Blackwell -Kylie Jenner -Vince McMahon -Football Playoffs 2018 -Jason Kidd -Dua Lipa -Patriots -Sergei Eisenstein -Super Bowl 2018 -Laura Ingraham -Cedi Osman -Elizabeth Blackwell -Virginia Woolf -Danielle Herrington -Carter G. Woodson -Scott Baio -Winter Olympics -Larry Nassar -Red Gerard -Winter Olympics -Dragon Ball Super -Edible Arrangements -Winter Olympics -Wilder Penfield -Groundhog Day 2018 -Childish Gambino -Super Bowl score -Sergei Eisenstein -AFC Championship Game 2018 -Florida shooting -Snapchat Update -Winter Olympics -John Mahoney -State of the Union -Purdue basketball -Betty White -What Time Is The Super Bowl -Chris Paul -Mardi Gras 2018 -Super Bowl score -Sergei Eisenstein -Lady Doritos -Sergei Eisenstein -Dow Jones -Did the Groundhog See His Shadow -Blood Moon -Government shutdown 2018 -Winter Olympics -Super Bowl Commercials 2018 -Tom Brady -Phantom Thread -Paula Modersohn-Becker -Wilder Penfield -Winter Olympics -Sergei Eisenstein -Florida shooting -Harley Barber -Florida shooting -Sergei Eisenstein -Paula Modersohn-Becker -IXL -Wilder Penfield -Nba All Star Draft -Kentucky shooting -Florida shooting -Solo Trailer -Patriots -FC Barcelona -Andrew Cunanan -Super Bowl score -Patriots -Grammys 2018 -Super Bowl 2018 -Outback Steakhouse -Super Bowl 2018 -Rasual Butler -All Star Weekend 2018 -Eric Wood -Winter Olympics -Oscar Nominations 2018 -Jennifer Aniston -Florida shooting -Rob Porter -Montreal Cognitive Assessment -Super Bowl 2018 -Champions League -Super Bowl score -Did the Groundhog See His Shadow -Wilder Penfield -This Is Us -Michigan State -Shaun White -Government Shutdown -Fifty Shades Freed -Ohio State basketball -Blake Griffin Trade -Winter Olympics -Virginia Woolf -Vanessa Marcil -Carter G. Woodson -Dow Jones -Oscar Nominations 2018 -Winter Olympics -Florida shooting -Mark Salling -Greg Monroe -Carrie Underwood -NBA Trades -Kylie Jenner -Wilder Penfield -Trayvon Martin -Jason Kidd -Valentines Day -Paula Modersohn-Becker -Did the Groundhog See His Shadow -Fredo Santana -Bitcoin Price -Winter Olympics -NBA Trades -Paula Modersohn-Becker -Super Bowl score -Snapchat Update -Danielle Herrington -SAG Awards 2018 -This Is Us -Dow Jones -Florida shooting -Alex Smith -Oscar Nominations 2018 -Florida shooting -Chrissy Teigen -Florida shooting -Winter Olympics -Kratom -Super blue blood Moon -National Pizza Day -Super Bowl score -Scott Baio -Valentines Day -Super Bowl score -Government shutdown -Betty White -Groundhog Day 2018 -Happy Valentines Day -Carter G. Woodson -Super Bowl 2018 -Virginia Woolf -Paula Modersohn-Becker -Patriots -Michigan State -Wilder Penfield -Florida shooting -Elizabeth Blackwell -Google Classroom -Meteor -Super Bowl 2018 -Vikings vs Eagles -Happy Valentines Day -Wilder Penfield -Paula Modersohn-Becker -Eli Manning -Sergei Eisenstein -Grammys 2018 -Patriots -Shaun White -Government Shutdown -Super Bowl 2018 -Super Bowl score -Amazon Stock -Super Bowl score -Kylie Jenner -Quincy Jones -Red Gerard -Esteban Loaiza -Winter Olympics -Bitcoin Price -State of the Union -Kylie Jenner -Sergei Eisenstein -Carter G. Woodson -IXL -calculator -Paula Modersohn-Becker -Wilder Penfield -calculator -Winter Olympics -Groundhog Day 2018 -Larry Nassar -Ash Wednesday -Kylie Jenner -Rasual Butler -Government shutdown -Kylie Jenner Baby Girl -Super Bowl score -Rodney Hood -State of the Union -Carter G. Woodson -Chipper Jones -Andre Roberson -Winter Olympics -Trump State of the Union -Patriots -Elizabeth Blackwell -Virginia Woolf -Paula Modersohn-Becker -school closings -Florida shooting -Super Bowl score -Elizabeth Blackwell -Valentines Day Memes -Pro Bowl 2018 -Paula Modersohn-Becker -Vanessa Trump -Paula Modersohn-Becker -Kylie Jenner -Hope Hicks -Cory Booker -Alex Smith -Virginia Woolf -Super Bowl 2018 -Elizabeth Blackwell -Patty Hearst -Kylie Jenner -Wilder Penfield -Paula Modersohn-Becker -Grammys 2018 -Super Bowl 2018 -Mikaela Shiffrin -Winter Olympics -Paula Modersohn-Becker -Patriots -Happy Valentines Day -Eli Manning -What Time Is The Super Bowl -Super Bowl 2018 -Google docs -Bitcoin Price -Alaska earthquake -Will Ferrell -Patriots -Patriots -Larry Nassar -Justin Timberlake -Happy Valentines Day -Carter G. Woodson -Government Shutdown -Steven Tyler -Caroline Wozniacki -Florida shooting -Paula Modersohn-Becker -Sergei Eisenstein -Vikings Vs Eagles -Dow Jones -Cavs -Carter G. Woodson -Larry Nassar -UFC 220 -Carter G. Woodson -Kylie Jenner -Valentines Day -Super Bowl 2018 -National Pizza Day -Winchester -This Is Us -Sergei Eisenstein -Wilder Penfield -Florida shooting -Wilder Penfield -Elizabeth Blackwell -Virginia Woolf -Carter G. Woodson -Black Panther -Super Bowl 2018 -Wilder Penfield -Meteor -Government Shutdown -Elizabeth Blackwell -Utah Jazz -Kylie Jenner -Dow Jones -Super Bowl score -Government shutdown -Josh McDaniels -Sergei Eisenstein -Black Panther -Alison Brie -Government shutdown 2018 -Virginia Woolf -NBA Trades -Kim Kardashian -Justin Timberlake -XFL -Winter Olympics -Fifty Shades Freed -Patriots -Government Shutdown -Super Bowl score -Mikaela Shiffrin -Patriots -Paula Modersohn-Becker -Google Drive -Wonder Woman -CNN -Shaun White -Kristaps Porzingis -Grammys 2018 -Super Bowl 2018 -SpaceX -Google Classroom -Drive -Lena Zawaideh -Dow Jones -Wilder Penfield -NHL All Star Game -Super Bowl 2018 -Rob Porter -Carter G. Woodson -Florida shooting -Sergei Eisenstein -Oscar Nominations 2018 -Farmers Insurance Open 2018 -Nathan Chen -Grammys 2018 -Paula Modersohn-Becker -Paula Modersohn-Becker -Sergei Eisenstein -Elizabeth Blackwell -Super Bowl 2018 -Sergei Eisenstein -Hope Hicks -Cavs -Memo -Winter Olympics -The Alienist -Sergei Eisenstein -Justin Timberlake -State of the Union -XIV -Winter Olympics -Puppy Bowl 2018 -school closings -Joshua Cooper Ramo -Shaun White -Patriots -Google Classroom -Larry Nassar -Super Blue Blood Moon -Peter Rabbit -Virginia Woolf -Elizabeth Blackwell -Forever My Girl -Happy Valentines Day -earthquake -Super Bowl 2018 -Elizabeth Blackwell -Super Bowl score -Did the Groundhog See His Shadow -Winter Olympics -SpaceX -Super Bowl score -Paula Modersohn-Becker -Duke Basketball -Super Bowl score -Government Shutdown -Super Bowl score -Hillary Clinton -Virginia Woolf -Chloe Kim -Snapchat Update -Sergei Eisenstein -Groundhog Day 2018 -Sergei Eisenstein -SZA -Super Bowl score -What Time Is The Super Bowl -Joy Villa -Johnny Weir -Justin Timberlake -Cherry Seaborn -Cherry Seaborn -calculator -Paula Modersohn-Becker -Virginia Woolf -Virginia Woolf -Adam Rippon -Winter Olympics -LeBron James -Women's March 2018 -calculator -Elizabeth Blackwell -Grammys 2018 -Sergei Eisenstein -Kim Cattrall -Oscar Nominations 2018 -Bruno Mars -Olympic medal count -Sergei Eisenstein -State of the Union -Florida shooting -Larry Nassar -Elizabeth Blackwell -Trump State of the Union -Paula Modersohn-Becker -Maria Menounos -Wilder Penfield -Luke Wilson -Groundhog Day 2018 -Wilder Penfield -Walter Payton -Riverdale -Taiwan Earthquake Today -Kristaps Porzingis -Florida shooting -Virginia Woolf -Virginia Woolf -Julie Ertz -Josh McDaniels -Alaska earthquake -Winter Olympics -Tesla in space -Patriots -SAG Awards 2018 -Wilder Penfield -Super Bowl score -Olympics 2018 -SpaceX -Gigi Hadid -UFC 220 -Florida shooting -Obama portrait -Ash Wednesday -Wilder Penfield -Paula Modersohn-Becker -Cavs -Chloe Kim -Super Bowl score -Patriots -Virginia Woolf -Joe Kennedy -Blake Griffin -Vanity Fair Cover -Mark Salling -Paula Modersohn-Becker -Vikings Vs Eagles -Government Shutdown Meaning -Bitcoin Price -Super Bowl 2018 -Justin Timberlake -Memo -Winter Olympics -Super Bowl 2018 -SpaceX -Trey Gowdy -Kesha -Super Bowl 2018 -BitConnect -Alaska earthquake -Jessica Biel -Bill Paxton -Patriots -Oscar Nominations 2018 -Winter Olympics -Andre the Giant -Rasual Butler -Google docs -Timor Leste -Mark Salling -SpaceX -Carter G. Woodson -Carter G. Woodson -Groundhog Day 2018 -Black Panther -Super blue blood Moon -Virginia Woolf -Winchester -Google Drive -Wilder Penfield -Super Bowl score -XFL -The Home Depot -Elizabeth Blackwell -Super Bowl score -Super Bowl 2018 -Paula Modersohn-Becker -SpaceX -Memo -Shani Davis -Paula Modersohn-Becker -Paula Modersohn-Becker -Rob Delaney -Presidents Day 2018 -Simona Halep -Winter Olympics -Winter Olympics -Hostiles -Super Bowl score -Shaun White -Patriots -Venom -Andrew McCabe -Ash Wednesday -Super Bowl score -Wilder Penfield -Carter G. Woodson -Sergei Eisenstein -Black Panther -Patriots -Robby Anderson -Carter G. Woodson -Lady Doritos -Valentines Day -Wilder Penfield -Dennis Edwards -New California -Valentines Day Memes -Groundhog Day 2018 -Florida shooting -Grammys 2018 -Kesha Grammy -AR-15 -Yahoo Finance -Black Panther -Josh McDaniels -Groundhog Day 2018 -Jemele Hill -This Is Us -Virginia Woolf -Trump State of the Union -Virginia Woolf -Omarosa -SZA -Super Bowl Winners -Winter Olympics -United States Of America Winter Olympics -Super Bowl 2018 -Wilder Penfield -Wilder Penfield -Wilder Penfield -Super Bowl 2018 -Altered Carbon -Elizabeth Blackwell -Emily Sweeney -Patriots -Winter Olympics -Super Bowl 2018 -Meteor -Super Bowl 2018 -Shaun White -Trump State of the Union -Dow Jones -Kylie Jenner -Laura Ingraham -Cavs -Elizabeth Blackwell -Sammy Sosa -Black Panther -Alex Smith -Super Bowl 2017 -Pro Bowl 2018 -Super Bowl score -Lady Bird -Carter G. Woodson -Oar Olympics -School Closings -Government Shutdown -Elizabeth Blackwell -Kim Kardashian -Rasual Butler -Justin Timberlake -Florida shooting -Elizabeth Blackwell -Hostiles -Happy Valentines Day -Wilder Penfield -Carter G. Woodson -Kylie Jenner Baby Girl -State of the Union -Super Bowl score -Rasual Butler -Grammys 2018 -Kylie Jenner -Sergei Eisenstein -Royal Rumble 2018 -Wilder Penfield -Paula Modersohn-Becker -Google docs -Sergei Eisenstein -Olympic medal count -Ash Wednesday -Tsunami Warning -School closings -Winchester -SAG Awards 2018 -Vikings Vs Eagles -Vikings Vs Eagles -government shutdown -Winter Olympics -Elizabeth Blackwell -12 Strong -Isaiah Thomas -Cnbc -Vikings Vs Eagles -Winter Olympics -Harley Barber -Black Panther -Sergei Eisenstein -Portia de Rossi -Sergei Eisenstein -Did the Groundhog See His Shadow -Paula Modersohn-Becker -Carter G. Woodson -Jessica Chastain -Paula Modersohn-Becker -Chinese New Year 2018 -Joe Kennedy -Patriots -Patriots -What Time Is The Super Bowl -United States Of America Winter Olympics -Josh McDaniels -What Time Is The Super Bowl -Joe Kennedy -Alex Smith -Lindsey Vonn -Super Bowl score -Mardi Gras 2018 -Vikings vs Eagles -Oscar Nominations 2018 -Justin Timberlake -Paula Modersohn-Becker -What Time Is The Super Bowl -Alex Smith -Tiger Woods -Cloverfield Paradox -Paula Modersohn-Becker -Elizabeth Blackwell -Turpin -Super Bowl score -Florida shooting -Tom Petty -Alexa Commercial -Black Panther -Kim Kardashian -Paula Modersohn-Becker -calculator -Elizabeth Blackwell -Winter Olympics -Super Bowl Winners -Maria Menounos -Super blue blood Moon -Rob Porter -Shaun White -Memo -Virginia Woolf -Paula Modersohn-Becker -government shutdown -Virginia Woolf -Kim Kardashian -Grammys 2018 -Justin Timberlake -Heath Ledger -Elizabeth Blackwell -What Time Is The Super Bowl -Rasual Butler -SpaceX -Winter Olympics -Dow Jones -Olivia Culpo -Vic Damone -Super Bowl score -Joe Kennedy -Groundhog Day 2018 -Super Bowl 2018 -Elizabeth Blackwell -Florida shooting -Paula Modersohn-Becker -Patriots -Devin Nunes -Florida shooting -Quincy Jones -Justin Timberlake -Adam Rippon -Elizabeth Blackwell -Amy Schumer -Paula Modersohn-Becker -SpaceX -Sergei Eisenstein -Dow Jones -The 15:17 to Paris -Kylie Jenner Baby Girl -Friends movie -Den of Thieves -Super Bowl score -Government Shutdown -calculator -Sergei Eisenstein -Blake Griffin -Justin Timberlake -Paula Modersohn-Becker -Tesla in space -Alaska earthquake -Wilder Penfield -Virginia Woolf -Patriots -Vince McMahon -NBA Trades -Oscar Nominations 2018 -Women's March 2018 -Carter G. Woodson -Chinese New Year 2018 -Virginia Woolf -Florida shooting -Patriots -Camila Cabello -Dow Jones -What Time Is The Super Bowl -Valentines Day -Florida shooting -Florida shooting -Government Shutdown -Groundhog Day 2018 -NBA Trades -Chicago West -Rasual Butler -What Time Is The Super Bowl -Black Panther -Paula Modersohn-Becker -Florida shooting -Government Shutdown Meaning -Elizabeth Blackwell -UFC 220 -Virginia Woolf -Elizabeth Blackwell -Steve Mcnair -Grammys 2018 -Kylie Jenner -Justin Timberlake -New England Patriots owner -Sea Of Thieves -Paula Modersohn-Becker -Memo -Super Blue Blood Moon -Carter G. Woodson -Larry Nassar -SpaceX -Reg E Cathey -Florida shooting -Super Bowl 2018 -Super Bowl score -Paula Modersohn-Becker -Cloverfield Paradox -Vikings Vs Eagles -Sergei Eisenstein -Harley Barber -This Is Us -Gods Plan -Super blue blood Moon -School Closings -This Is Us -Fredo Santana -Elizabeth Blackwell -Virginia Woolf -Virginia Woolf -Daryle Singletary -Sergei Eisenstein -Super Bowl 2018 -Winter Olympics -Carter G. Woodson -Duke Basketball -XFL -Montgomery County Public Schools -Isaiah Thomas -Jen Selter -Jamie Anderson -Gigi Hadid -Eli Manning -Elizabeth Blackwell -Wilder Penfield -Wilder Penfield -Elizabeth Blackwell -Robinhood -New England Patriots owner -Kylie Jenner -Government shutdown -Super Bowl 2018 -Happy Valentines Day -Red Gerard -Andrew Cunanan -Nathan Chen -Shaun White -Wilder Penfield -What Time Is The Super Bowl -tsunami -Super Bowl score -Super Bowl 2018 -Elizabeth Blackwell -Elizabeth Blackwell -Super Bowl score -Patriots -Larry Nassar -Fredo Santana -Virginia Woolf -What Time Is The Super Bowl -Super Bowl Commercials 2018 -Justin Timberlake -Jason Momoa -Justin Timberlake -Paula Modersohn-Becker -Kylie Jenner -Justin Timberlake -Jennifer Aniston -Kylie Jenner -Shaun White -Mark Salling -Government Shutdown -Bitcoin Price -Adam Rippon -Winchester -Elizabeth Blackwell -Caroline Wozniacki -SpaceX -Sergei Eisenstein -Mardi Gras 2018 -Kelsey Grammer -Super Bowl 2018 -12 Strong -Justin Timberlake -Virginia Woolf -Florida shooting -XFL -Despacito -Sergei Eisenstein -Florida shooting -Elizabeth Blackwell -Kylie Jenner -Government Shutdown -Government Shutdown -Release The Memo -Carter G. Woodson -Super Bowl score -Mardi Gras 2018 -Josh Allen -Shaun White -Government Shutdown -Wilder Penfield -Trump State of the Union -Wilder Penfield -Florida shooting -Forever My Girl -Rasual Butler -Mark Salling -Best Superbowl Commercials 2018 -Florida shooting -Winter Olympics -Patriots -James Harden -Vikings Vs Eagles -Adam Hicks -What Time Is The Super Bowl -Vikings Vs Eagles -Drive -Elizabeth Blackwell -Justin Timberlake -Kesha Grammy -Natalie Wood -Edwin Jackson -Sergei Eisenstein -Hillary Clinton -Chloe Kim -Sabrina Dhowre -Wilder Penfield -Gianni Versace -Sal Castro Middle School -Government shutdown -Super Bowl 2018 -Alex Smith -Kevin Love -Patriots -Super Bowl 2018 -calculator -Sammy Sosa -Elizabeth Blackwell -Adam Rippon -Adam Rippon -Government shutdown -Kylie Jenner -Florida shooting -Atlanta Weather -Dwyane Wade -Kim Kardashian -Doomsday Clock -Did the Groundhog See His Shadow -Jason Momoa -Florida shooting -Classroom -Hailee Steinfeld -Reg E Cathey -Kelly Clark -United States Of America Winter Olympics -Elizabeth Blackwell -Trump State of the Union -Fredo Santana -Black Panther -UFC 220 -Jennifer Aniston -Yahoo Finance -Florida shooting -Florida shooting -SpaceX -Super Bowl 2018 -Patriots -Alex Smith -Did the Groundhog See His Shadow -Lakers -Sergei Eisenstein -Vikings Vs Eagles -Virginia Woolf -Sergei Eisenstein -Elizabeth Blackwell -Lady Bird -Edgar Martinez -Vikings vs Eagles -Super blue blood Moon -Memo -Chris Mazdzer -Sergei Eisenstein -Olympics 2018 -What Time Is The Super Bowl -Fifty Shades Freed -John Mahoney -Carter G. Woodson -Elizabeth Blackwell -Doomsday Clock -What Time Is The Super Bowl -SpaceX -Carter G. Woodson -Super blue blood Moon -Patriots -Fredo Santana -Super Bowl 2018 -Jimmy Garoppolo -Justin Timberlake -XFL -Elizabeth Blackwell -Altered Carbon -Winter Olympics -Florida shooting -Oscar Nominations 2018 -Emily Sweeney -Daytona 500 -Florida shooting -Winter Olympics -Trump State of the Union -Grammys 2018 -Government Shutdown -Paula Modersohn-Becker -Carter G. Woodson -Florida shooting -Ted Bundy -Sal Castro Middle School -Sergei Eisenstein -Virginia Woolf -Steve Wynn -Black Panther -Paula Modersohn-Becker -Winter Olympics -Florida shooting -Johnny Weir -Stan Lee -Kentucky shooting -Duke Basketball -Memo -CNN -Patriots -Sal Castro Middle School -Scott Baio -Kylie Jenner -Grammys 2018 -Johnny Weir -Paula Modersohn-Becker -Blake Griffin Trade -Andrew Cunanan -Den of Thieves -DeMarcus Cousins -Super Bowl 2018 -Super Bowl 2018 -Florida shooting -Paula Modersohn-Becker -Tom Petty -Jeremy London -Florida shooting -NBA Trades -Mark Salling -Grammys 2018 -United States Of America Winter Olympics -Oscar Nominations 2018 -Joe Kennedy -Virginia Woolf -stock market -Solo Trailer -Florida shooting -Super Bowl Winners -Vikings Vs Eagles -What Time Is The Super Bowl -Monster Hunter World -Paula Modersohn-Becker -Sergei Eisenstein -Terrell Owens -Friends movie -Larry Nassar -Government Shutdown -Nadal -Justin Timberlake -Super blue blood Moon -Super Bowl 2018 -Wilder Penfield -Super Bowl score -Kylie Jenner -Royal Rumble 2018 -earthquake today -Elizabeth Blackwell -Carrie Underwood -Carter G. Woodson -Super Bowl 2018 -Florida shooting -Bode Miller -Super Bowl 2018 -Mark Salling -Sergei Eisenstein -Elizabeth Blackwell -Omarosa -Elizabeth Blackwell -Josh McDaniels -Carter G. Woodson -Venom -Elizabeth Blackwell -Super Bowl score -Elizabeth Blackwell -Super Bowl score -Florida shooting -Super Bowl Winners -Patriots -Super Bowl Commercials 2018 -Oscar Nominations 2018 -Super Bowl score -Super Bowl 2018 -Carter G. Woodson -Elizabeth Blackwell -State of the Union -Patriots -Google Drive -Super Bowl score -Adam Rippon -Harley Barber -Groundhog Day 2018 -Memo -Dolly Parton -Sabrina Dhowre -Super Bowl 2018 -Winter Olympics -Andrew Cunanan -Patriots -Super blue blood Moon -Rodney Hood -Andre Roberson -Virginia Woolf -Jamie Anderson -Grammys 2018 -Tara Lipinski -Emily Sweeney -Carter G. Woodson -Purdue Basketball -Super Bowl score -Dow Jones -What Time Is The Super Bowl -Kylie Jenner -Fifty Shades Freed -John Mahoney -Josh McDaniels -Obama portrait -Lindsey Vonn -Kim Kardashian -Virginia Woolf -Justin Timberlake -Obama portrait -Dwyane Wade -Scott Baio -This Is Us -Steven Tyler -Kylie Jenner -Montreal Cognitive Assessment -Dow Jones -Paula Modersohn-Becker -Winter Olympics -Sergei Eisenstein -Super Bowl 2018 -What Time Is The Super Bowl -Sergei Eisenstein -Scott Baio -Wilder Penfield -Tara Lipinski -Grammys 2018 -Chief Wahoo -Paula Modersohn-Becker -Sergei Eisenstein -Patriots -SAG Awards 2018 -Government Shutdown -Paula Modersohn-Becker -Patriots -Kingdom Come Deliverance -Happy Valentines Day -Blake Griffin Trade -State of the Union -Paula Modersohn-Becker -Super Bowl 2018 -Kylie Jenner -Carter G. Woodson -Super Bowl 2018 -SpaceX -Paula Modersohn-Becker -Patti LuPone -Kevin Love -Reg E Cathey -Florida shooting -Vikings Vs Eagles -Sergei Eisenstein -Carter G. Woodson -Super Bowl 2018 -Real Madrid -Mardi Gras 2018 -Sergei Eisenstein -Fredo Santana -Grammys 2018 -Kelsey Grammer -Justin Timberlake -Larry Nassar -Wilder Penfield -Sergei Eisenstein -Justin Timberlake -Natalie Wood -Carter G. Woodson -Kentucky shooting -Paula Modersohn-Becker -Chris Fischer -Scott Baio -Jennifer Aniston -Morgan Freeman -Virginia Woolf -Winter Olympics -Cory Booker -All Star Weekend 2018 -Paula Modersohn-Becker -Google Drive -Super Bowl 2018 -Earthquake Today -Lorenzo Cain -Harley Barber -Super Bowl score -Quincy Jones -Paula Modersohn-Becker -Government shutdown 2018 -Did the Groundhog See His Shadow -Sharon Stone -Wilder Penfield -State of the Union -Alessia Cara -Super Bowl score -Adam Hicks -Cavs -Kylie Jenner -NBA Trades -Vikings Vs Eagles -Paula Modersohn-Becker -Elizabeth Blackwell -Dow Jones -Monster Hunter World -stock market -Patriots -Dow Jones -Ash Wednesday -Cavs -SAG Awards 2018 -Paula Modersohn-Becker -Shaun White -Paula Modersohn-Becker -Fredo Santana -New England Patriots owner -Black Panther -Mardi Gras 2018 -Jimmy Garoppolo -Super Bowl score -Carter G. Woodson -Otto Warmbier -Super Bowl Commercials -Virginia Woolf -Super Bowl 2018 -Shaun White -What Time Is The Super Bowl -Paula Modersohn-Becker -Luke Wilson -Mark E Smith -Happy Valentines Day -Trey Gowdy -Super Blue Blood Moon -Elon Musk -Super blue blood Moon -Rasual Butler -Winter Olympics -Post Malone -Carter G. Woodson -Dwyane Wade -Dow Jones -Virginia Woolf -Conor McGregor -Korea -Katie Couric -Virginia Woolf -Wing Bowl 2018 -Wilder Penfield -Super Bowl 2018 -Football Playoffs 2018 -Happy Valentines Day -Chris Long -Wilder Penfield -Black Panther -Camila Cabello -What Time Is The Super Bowl -Vikings Vs Eagles -Alex Reimer -tsunami -Virginia Woolf -Sergei Eisenstein -Lunar eclipse -Friends movie -NFC Championship Game 2018 -Carter G. Woodson -Super blue blood Moon -Elizabeth Blackwell -Paula Modersohn-Becker -Elizabeth Blackwell -Winter Olympics -Happy Valentines Day -Cherry Seaborn -Mavic Air -Chris Stapleton -Rachel Brand -Kylie Jenner -Nintendo Labo -New England Patriots owner -What Time Is The Super Bowl -Patriots -Elizabeth Blackwell -Alex Smith -Florida shooting -Justin Timberlake -NFC Championship Game 2018 -Patriots -Super Bowl Commercials 2018 -School Closings -Aaron Fies -Shaun White -Black Panther -Super Blue Blood Moon -Sergei Eisenstein -Google docs -Paula Modersohn-Becker -Patriots -Kentucky shooting -Enzo Amore -Solo Trailer -Winter Olympics -Patti LuPone -Arsenal -Yahoo Finance -Shaun White -Virginia Woolf -Taiwan -New California -CNN -Edwin Jackson -Blake Griffin -Winter Olympics -Super Bowl score -Elizabeth Blackwell -Elizabeth Blackwell -Alex Smith -Stock Market Crash Today -Deadpool 2 -Groundhog Day 2018 -Black Panther -Patriots -Virginia Woolf -Vikings Vs Eagles -Dwyane Wade -Cherry Seaborn -Elizabeth Blackwell -Solo Trailer -Venom -Wilder Penfield -Dow Jones -Zion Williamson -Florida shooting -Super Bowl 2018 -calculator -Cavs -Paula Modersohn-Becker -Super Bowl score -What Time Is The Super Bowl -SAG Awards 2018 -Groundhog Day 2018 -Solo Trailer -Kim Kardashian -Adam Rippon -UFC 220 -Carter G. Woodson -Luke Wilson -Kesha Grammy -Scott Baio -Sergei Eisenstein -Daryle Singletary -Government Shutdown 2018 -SpaceX -Winter Olympics -Elton John -Wilder Penfield -Wilder Penfield -Google Classroom -Carter G. Woodson -Carter G. Woodson -SpaceX -Florida shooting -Patriots -XFL -Brie Larson -Virginia Woolf -Memo -Black Panther -Government shutdown 2018 -Carter G. Woodson -SpaceX -NBA Trades -Super Bowl 2018 -Memo -12 Strong -Aaron Fies -Paula Modersohn-Becker -Patriots -Justin Timberlake -Kesha Grammy -Snapchat Update -Super Bowl 2018 -Dow Jones -Shaun White -Super Bowl 2018 -Elizabeth Blackwell -Jason Momoa -Super Bowl score -Google Classroom -Omarosa -Winter Olympics -Nadal -SpaceX -Wilder Penfield -Super Bowl 2018 -Winter Olympics -Nintendo Labo -Wilder Penfield -Vanessa Trump -Wilder Penfield -Sergei Eisenstein -Elizabeth Blackwell -Wilder Penfield -This Is Us -Jalen Ramsey -Winter Olympics -Patriots -Florida shooting -Patriots -Joy Villa -Super Bowl 2018 -Alessia Cara -Hope Hicks -School closings -Paula Modersohn-Becker -Super Bowl 2018 -Virginia Woolf -Sergei Eisenstein -NBA Trades -United States Of America Winter Olympics -State of the Union -Super Bowl score -Virginia Woolf -Andrew Cunanan -Florida shooting -Super Bowl Commercials 2018 -school closings -Super Bowl score -Super Bowl score -Super Blue Blood Moon -Super Bowl score -Cloverfield Paradox -Virginia Woolf -Paula Modersohn-Becker -Super Bowl 2018 -Super Bowl score -Government Shutdown Meaning -Sergei Eisenstein -Elizabeth Blackwell -Carter G. Woodson -Release The Memo -Virginia Woolf -Super Bowl 2018 -Wilder Penfield -The Home Depot -Alex Smith -Lady Bird -Government Shutdown -Super Bowl score -Super Bowl score -Bitcoin Price -Winter Olympics -Grammys 2018 -Wilder Penfield -Florida shooting -Jimmy Garoppolo -Sergei Eisenstein -Paula Modersohn-Becker -Kylie Jenner -Carter G. Woodson -Patriots -Kim Kardashian -Ar 15 -Florida shooting -Sammy Sosa -Justin Timberlake -Josh McDaniels -Wilder Penfield -Paula Modersohn-Becker -Cedi Osman -Childish Gambino -Winter Olympics -Super Bowl score -Sabrina Dhowre -Paula Modersohn-Becker -Blake Griffin -Carter G. Woodson -Mark Salling -Sergei Eisenstein -Patriots -Dwyane Wade -Bitcoin Price -calculator -Florida shooting -Dow Jones -Virginia Woolf -calculator -Yura Min -Florida shooting -Wilder Penfield -Lindsey Vonn -Cloverfield Paradox -school closings -SpaceX -Kristaps Porzingis -Super Bowl 2018 -Did the Groundhog See His Shadow -Oar Olympics -Elizabeth Blackwell -Alessia Cara -Luke Wilson -Kentucky shooting -Danielle Herrington -Stan Lee -Wilder Penfield -Alaska earthquake -Jason Kelce -Sergei Eisenstein -Elizabeth Blackwell -Winter Olympics -Elizabeth Blackwell -Florida shooting -Cbs -Shaun White -Patriots -Jamie Anderson -Government Shutdown Meaning -Super Bowl score -Memo -Wilder Penfield -Tyler Hilinski -Andre Roberson -Rasual Butler -Grammys 2018 -Vikings Vs Eagles -Shaun White -Super Bowl 2018 -Lena Zawaideh -Wilder Penfield -Justin Timberlake -Royal Rumble 2018 -Sergei Eisenstein -Hope Hicks -Super Bowl score -Super Bowl score -Josh Allen -Gianni Versace -Government Shutdown -Florida shooting -Paula Modersohn-Becker -Shaun White -Florida shooting -Super blue blood Moon -Kevin Love -LL Bean -Alaska earthquake -Grammys 2018 -Shaun White -John Mahoney -Super Bowl Commercials 2018 -Sergei Eisenstein -Super Bowl score -Isaiah Thomas -Florida shooting -Get Out -Super Bowl 2018 -Presidents Day 2018 -Google docs -SAG Awards 2018 -Solo Trailer -Johnny Weir -Royal Rumble 2018 -Wilder Penfield -Sergei Eisenstein -Mike Fisher -Dow Jones -Dow Jones -Super blue blood Moon -SpaceX -Vikings vs Eagles -Virginia Woolf -Wilder Penfield -Cory Booker -Sergei Eisenstein -Bill Parcells -Dwyane Wade -Elizabeth Blackwell -Doomsday Clock -Super Bowl score -Paula Modersohn-Becker -Rodney Hood -Shaun White -Fredo Santana -Sergei Eisenstein -Kylie Jenner -Ash Wednesday -Government Shutdown Meaning -Google docs -Wilder Penfield -Tom Brady daughter -Tiger Woods -Winter Olympics -Lindsey Vonn -What Time Is The Super Bowl -Patriots -Wilder Penfield -Get Out -XFL -Nintendo Labo -John Mahoney -Carrie Underwood -Justin Timberlake -Super Bowl 2018 -Adam Rippon -Mavic Air -Patriots -Maddie Mastro -Real Madrid -Bode Miller -John Mahoney -Patriots -NBA Trades -national signing day 2018 -Don Lemon -Winter Olympics -Paula Modersohn-Becker -Winter Olympics -Super blue blood Moon -Cloverfield Paradox -slides -Super Bowl score -Jessica Chastain -SAG Awards 2018 -Winter Olympics -Super Bowl score -Virginia Woolf -Blood Moon -Chris Mazdzer -Women's March 2018 -Larry Nassar -Super Bowl 2018 -Trump State of the Union -Super Bowl score -Neil Diamond -Steve Wynn -Winter Olympics -Paula Modersohn-Becker -Super Bowl 2018 -What Time Is The Super Bowl -SpaceX -Government Shutdown Meaning -Omarosa -Black Panther -calculator -Paula Modersohn-Becker -Paula Modersohn-Becker -Obama portrait -Tiger Woods -Winter Olympics -Kylie Jenner -Patriots -Alex Smith -Super Bowl 2018 -Google docs -Virginia Woolf -Super Bowl 2018 -Rasual Butler -Quincy Jones -Dwyane Wade -Winter Olympics -Government shutdown -Wilder Penfield -Government Shutdown Meaning -Paula Modersohn-Becker -Daryle Singletary -SpaceX -Duke basketball -Florida shooting -Chloe Kim -Carter G. Woodson -Carter G. Woodson -Matt Patricia -Pro Bowl 2018 -Sergei Eisenstein -Dow Jones -Elizabeth Blackwell -Grammys 2018 -Government shutdown 2018 -Mark Salling -Yoel Romero -Happy Valentines Day -Florida shooting -Joy Villa -Peter Rabbit -State of the Union -Black Panther -Super Bowl 2018 -Winter Olympics -Super Bowl 2018 -calculator -Women's March 2018 -Blake Griffin -Winter Olympics -fake news awards -Carter G. Woodson -Larry Nassar -Fredo Santana -Paula Modersohn-Becker -Chinese New Year 2018 -Elizabeth Blackwell -Black Panther -Solo Trailer -Government Shutdown -Patriots -Virginia Woolf -SpaceX -Jennifer Aniston -Super Bowl 2018 -Andrew Cunanan -Wilder Penfield -Carter G. Woodson -XFL -Winter Olympics -Wilder Penfield -Super Bowl score -Maze Runner: The Death Cure -Korea -Ash Wednesday -Government Shutdown Meaning -Grammys 2018 -Justin Timberlake -Lauren Davis -Super Bowl score -Patti LuPone -State of the Union -Super blue blood Moon -Paula Modersohn-Becker -What Time Is The Super Bowl -Memo -Google docs -Justin Timberlake -Groundhog Day 2018 -Grammys 2018 -Google docs -Shaun White -Oscar Nominations 2018 -Happy Valentines Day -Oscar Gamble -Super Bowl score -Winter Olympics -Patriots -Florida shooting -Virginia Woolf -Paula Modersohn-Becker -Cherry Seaborn -Drive -Super Bowl 2018 -Carter G. Woodson -Warren Miller -Patriots -Virginia Woolf -Cryptocurrency News -Grammys 2018 -Wilder Penfield -Sandy Hook -Justin Timberlake -Luke Wilson -Virginia Woolf -Carter G. Woodson -Super Bowl 2018 -Shaun White -Florida shooting -Elizabeth Blackwell -Super Bowl 2018 halftime show -Vikings Vs Eagles -XFL -Sarah Barthel -This Is Us -SAG Awards 2018 -Super Bowl score -Super Bowl score -Dow Jones -Sandy Hook -Vikings Vs Eagles -Florida shooting -Super Bowl score -Wilder Penfield -Adam Rippon -Solo Trailer -Sergei Eisenstein -Kim Kardashian -Patriots -Kylie Jenner -Justin Timberlake -earthquake today -Carter G. Woodson -Jessica Chastain -Elizabeth Blackwell -Wilder Penfield -Chinese New Year 2018 -Google docs -Winter Olympics -Patriots -Google Classroom -Virginia Woolf -Elizabeth Blackwell -Tyler Hilinski -Kim Kardashian -SpaceX -Government Shutdown -Mikaela Shiffrin -Turpin -SpaceX -Sergei Eisenstein -CNN -Rodney Hood -Monster Hunter World -Daryle Singletary -Paula Modersohn-Becker -Josh McDaniels -Elizabeth Blackwell -Blake Griffin -United States Of America Winter Olympics -Sandy Hook -Super Bowl 2018 -Carter G. Woodson -NBA Trades -Vikings Vs Eagles -Chinese New Year 2018 -Blood Moon -Fredo Santana -Elizabeth Blackwell -Government Shutdown -Tonga -Groundhog Day 2018 -Super Blue Blood Moon -Yu Darvish -Cnbc -Greg Monroe -Kylie Jenner Baby Girl -Carter G. Woodson -Kim Kardashian -Groundhog Day 2018 -Larry Nassar -Maze Runner: The Death Cure -What Time Is The Super Bowl -Elizabeth Blackwell -Government Shutdown Meaning -Chicago West -Virginia Woolf -Elizabeth Blackwell -Virginia Woolf -Grammys 2018 -Carter G. Woodson -Justin Timberlake -Justin Timberlake -Florida shooting -Tara Lipinski -Florida shooting -Vikings Vs Eagles -Super Bowl 2018 -Winter Olympics -Waco -Turpin -UFC 220 -Edwin Jackson -Oscar Nominations 2018 -Kylie Jenner -Anthony Davis -Justin Timberlake -Patriots -Super Bowl Commercials 2018 -Patriots -Blue Ivy -Super Bowl Winners -Super Bowl 2018 -What Time Is The Super Bowl -Virginia Woolf -Paula Modersohn-Becker -Florida shooting -Elizabeth Blackwell -Kylie Jenner -Shaun White -Patriots -Dow Jones -Blood Moon -Patti LuPone -Kentucky shooting -Wilder Penfield -Andrew Cunanan -Paula Modersohn-Becker -Esteban Loaiza -Virginia Woolf -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl score -Trump State of the Union -New California -Andrew McCabe -Super Bowl Commercials 2018 -Pro Bowl 2018 -Oscar Nominations 2018 -Oscar Nominations 2018 -Carter G. Woodson -Black Panther -Tom Petty -Super Bowl 2018 -Google Drive -Valentines Day -Grammys 2018 -Black Panther -Memo -Winter Olympics -Kylie Jenner -Alaska earthquake -Virginia Woolf -Isaiah Thomas -Mardi Gras 2018 -Kylie Jenner -Government Shutdown Meaning -Florida shooting -Maze Runner: The Death Cure -Elizabeth Blackwell -Grammys 2018 -Happy Valentines Day -Daryle Singletary -Government Shutdown -Valentines Day -Larry Nassar -Olympic Medal Count -Elizabeth Blackwell -Patriots -Obama portrait -Justin Timberlake -Shani Davis -Carter G. Woodson -Dwyane Wade -Virginia Woolf -Winter Olympics -Grammys 2018 -Winter Olympics -Florida shooting -Zion Williamson -Logan Paul -Terry Bradshaw -Terrell Owens -Tom Petty -Super Bowl 2018 -Winter Olympics -Carter G. Woodson -Elizabeth Blackwell -Virginia Woolf -What Time Is The Super Bowl -Mark Salling -Super Bowl score -Black Panther -Patti LuPone -Carter G. Woodson -Kylie Jenner -Black Panther -Carter G. Woodson -Champions League -Sergei Eisenstein -Florida shooting -Reg E Cathey -Woody Allen -Blue Ivy -Patriots -Super Bowl score -Virginia Woolf -Wilder Penfield -Classroom -Virginia Woolf -Fifty Shades Freed -Sergei Eisenstein -State of the Union -Florida shooting -Carrie Underwood -Edwin Jackson -Florida shooting -Super Bowl 2018 -Alex Reimer -What Time Is The Super Bowl -Justin Timberlake -Adam Rippon -Bitcoin Price -Obama portrait -Rett Syndrome -State of the Union -Brie Larson -Celebrity Big Brother cast -Carter G. Woodson -Scott Baio -Adam Rippon -Ursula Le Guin -United States Of America Winter Olympics -Carter G. Woodson -This Is Us -Virginia Woolf -Patriots -Adam Rippon -Mike Fisher -Stormi -Florida shooting -Patriots -Alessia Cara -Super Bowl score -Black Panther -Blue Ivy -Sergei Eisenstein -This Is Us -Virginia Woolf -12 Strong -Carter G. Woodson -Cnbc -Paula Modersohn-Becker -Super Bowl 2018 -Super Bowl score -Michelle Obama -Carter G. Woodson -Super Bowl score -Groundhog Day 2018 -Friends The Movie 2018 -Patti LuPone -Florida shooting -Patriots -Patriots -Olympics 2018 -Women's March 2018 -Patriots -SpaceX -Andrew Cunanan -Trey Gowdy -Google docs -Tom Brady daughter -Chris Mazdzer -State of the Union -Jennifer Aniston -earthquake -One Day At A Time -Adam Rippon -Government Shutdown 2018 -Sergei Eisenstein -Happy Valentines Day -Winter Olympics -Sergei Eisenstein -Sergei Eisenstein -Patriots -Super blue blood Moon -Bitcoin Price -Immaculate Conception -Deadpool 2 -Groundhog Day 2018 -Justin Timberlake -NBA Trades -Rihanna -The Alienist -Elizabeth Blackwell -Westminster Dog Show 2018 -Winter Olympics -Super Bowl 2018 -Paula Modersohn-Becker -AR-15 -Zuleyka Rivera -Patriots -Edgar Martinez -Super Bowl 2018 -Kingdom Come Deliverance -Florida shooting -Paula Modersohn-Becker -Jacob Copeland -Elizabeth Blackwell -NBA Trades -Super Bowl 2018 -Carter G. Woodson -Patriots -Super Bowl score -Joe Kennedy -Carter G. Woodson -Florida shooting -Memo -SpaceX -Mark Salling -Pro Bowl 2018 -Chicago West -Winter Olympics -Florida shooting -Super Bowl score -Government Shutdown -Kylie Jenner -Groundhog Day 2018 -Cavs -Wilder Penfield -Deadpool 2 -Kylie Jenner -Wilder Penfield -Grammys 2018 -Larry Nassar -Aaliyah -Shiffrin -Super Bowl 2018 -Carter G. Woodson -Wilder Penfield -Super Blue Blood Moon -Carter G. Woodson -Elizabeth Blackwell -Elizabeth Blackwell -Patriots -Government Shutdown 2018 -Virginia Woolf -Jennifer Aniston -Olympic Medal Count -Virginia Woolf -LeBron James -Wilder Penfield -SpaceX -Forever My Girl -Google docs -Patriots -Wilder Penfield -Gianni Versace -Snapchat Update -Elizabeth Blackwell -The First Purge -Yoel Romero -Scott Baio -Lunar eclipse -Bitcoin Price -Government Shutdown Meaning -Super Bowl score -Super Bowl 2018 -Fredo Santana -Kim Kardashian -Kylie Jenner -Paula Modersohn-Becker -SpaceX -Blake Griffin -Super Bowl 2018 -LeBron James -Carter G. Woodson -Mr Rogers -Virginia Woolf -Larry Nassar -Super Bowl score -SAG Awards 2018 -Toys R Us -Patriots -CNN -Super Bowl score -Winter Olympics -Grammys 2018 -Olympic medal count -Super Bowl 2018 -What Time Is The Super Bowl -Winter Olympics -Scott Baio -Super Bowl 2018 -Juventus -Vikings Vs Eagles -Government Shutdown Meaning -Paula Modersohn-Becker -Florida shooting -United States Of America Winter Olympics -Walter Payton -What Time Is The Super Bowl -Winter Olympics -Patriots -Taiwan Earthquake Today -Elton John -Elizabeth Blackwell -Grammys 2018 -SpaceX -Super blue blood Moon -Tom Brady -Super Bowl 2018 -Florida shooting -Sergei Eisenstein -Sergei Eisenstein -Meteor -Paula Modersohn-Becker -Apple stock -Government shutdown 2018 -Winter Olympics -Vikings Vs Eagles -Justin Timberlake -Steven Tyler -Virginia Woolf -Pro Bowl 2018 -Mike Tomlin -Lindsey Vonn -Paula Modersohn-Becker -Carter G. Woodson -Gregory Salcido -Patriots -AR-15 -Super Bowl 2018 -Groundhog Day 2018 -Virginia Woolf -Super Bowl 2018 -Shaun White -Nadal -Amazon HQ2 -Sergei Eisenstein -Eli Manning -Super Bowl score -Rasual Butler -Elton John -Kesha -Larry Nassar -Despacito -Wilder Penfield -Mark Salling -Black Panther -Vikings vs Eagles -Super Bowl score -Adam Rippon -Yahoo Finance -Super Bowl score -Carrie Underwood -Happy Valentines Day -Virginia Woolf -Justin Timberlake -Waco -Greg Monroe -What Time Is The Super Bowl -Virginia Woolf -Memo -Virginia Woolf -Virginia Woolf -What Time Is The Super Bowl -Ash Wednesday -Patriots -Jason Kidd -Elizabeth Blackwell -Lil Xan -Sergei Eisenstein -Vikings Vs Eagles -Carter G. Woodson -Alaska earthquake -Chinese New Year 2018 -Grammys 2018 -Wilder Penfield -Bitcoin Price -Princess Eugenie -State of the Union -Kylie Jenner -Grammys 2018 -Sergei Eisenstein -Rasual Butler -Virginia Woolf -Alison Brie -Ash Wednesday -Sergei Eisenstein -Johnny Weir -Carter G. Woodson -NBA Trades -Megan Barry -Shaun White -Gods Plan -Amy Schumer -Sergei Eisenstein -Black Panther -Lunar eclipse -Government shutdown 2018 -Aaron Hernandez -Vikings Vs Eagles -Justin Timberlake -Super Bowl score -AFC Championship Game 2018 -Mike Vrabel -Super Bowl score -Shaun White -Kim Kardashian -Oscar Nominations 2018 -Winter Olympics -Sergei Eisenstein -Elizabeth Blackwell -Government Shutdown -stock market -Robert Wagner -Elton John -Joel Taylor -Wilder Penfield -Esteban Loaiza -Solo Trailer -Sergei Eisenstein -Did the Groundhog See His Shadow -Mikaela Shiffrin -Groundhog Day 2018 -Florida shooting -Wilder Penfield -Florida shooting -Sabrina Dhowre -This Is Us -Elizabeth Blackwell -Virginia Woolf -Cryptocurrency News -Happy Valentines Day -LeBron James -Google Drive -Larry Nassar -Virginia Woolf -Government shutdown 2018 -Happy Valentines Day -Winter Olympics -Bitcoin Price -Adam Rippon -Patriots -Elizabeth Blackwell -New England Patriots owner -Paula Modersohn-Becker -Lena Zawaideh -Vikings Vs Eagles -What Time Is The Super Bowl -Groundhog Day 2018 -Mitt Romney -Jennifer Aniston -Meteor -Shaun White -NBA Trades -calculator -Justin Timberlake -Mark Salling -Shiffrin -Danielle Herrington -Grammys 2018 -Elizabeth Blackwell -Carter G. Woodson -Grammys 2018 -Florida shooting -Kylie Jenner -Carter G. Woodson -Justin Timberlake -Eli Manning -SZA -Super Bowl 2018 -Super Bowl 2018 -Sergei Eisenstein -Alex Smith -Black Panther -Trey Gowdy -Vanessa Marcil -SpaceX -Carter G. Woodson -Dow Jones -Grammys 2018 -Wilder Penfield -Sergei Eisenstein -Enzo Amore -SpaceX -Patriots -UFC 220 -Florida shooting -Larry Nassar -SpaceX -Happy Valentines Day -Rodney Hood -Sergei Eisenstein -Winter Olympics -Justin Timberlake -Carter G. Woodson -Rasual Butler -Super Bowl score -Dow Jones -SpaceX -Super Bowl 2018 -Patriots -Valentines Day -Kylie Jenner -Super Bowl score -Sergei Eisenstein -Cloverfield Paradox -Did the Groundhog See His Shadow -Jessica Chastain -Grammys 2018 -Kawhi Leonard -Super Bowl 2018 -school closings -Vikings Vs Eagles -Zuleyka Rivera -Sal Castro Middle School -VIX -Jason Kelce -Wilder Penfield -Super Bowl 2018 -SpaceX -Montreal Cognitive Assessment -Fifty Shades Freed -Fred Savage -Solo Trailer -Carter G. Woodson -Florida shooting -Dwyane Wade -Super Bowl Commercials 2018 -Virginia Woolf -Vikings Vs Eagles -What Time Is The Super Bowl -Shibutani -Black Panther -Virginia Woolf -Elizabeth Blackwell -Chipper Jones -Tyler Hilinski -Solo Trailer -Florida shooting -Carter G. Woodson -Super Bowl 2018 -Paula Modersohn-Becker -Shaun White -Sandy Hook -Fredo Santana -Outback Steakhouse -Groundhog Day 2018 -Virginia Woolf -Google Classroom -Mikaela Shiffrin -Carter G. Woodson -Super Bowl score -Virginia Woolf -Winter Olympics -Patriots -Shaun White -Paula Modersohn-Becker -XFL -Grammys 2018 -Sergei Eisenstein -Carter G. Woodson -SAG Awards 2018 -SpaceX -Super Bowl score -Wilder Penfield -Amy Schumer -Super Bowl 2018 -Elizabeth Blackwell -Government Shutdown Meaning -Happy Valentines Day -Patriots -Florida shooting -Justin Timberlake -NBA Trades -Fredo Santana -Paula Modersohn-Becker -Paula Modersohn-Becker -Patriots -Winter Olympics -Jason Kelce -Wilder Penfield -Lena Zawaideh -Chrissy Teigen -Black Panther -Sergei Eisenstein -Nathan Chen -Winter Olympics -Johnny Weir -Terrell Owens -Kodak Black -Shaun White -Florida shooting -Olympics 2018 -Despacito -Trey Gowdy -CNN -Grammys 2018 -Elizabeth Blackwell -Sergei Eisenstein -Wilder Penfield -Carter G. Woodson -State of the Union -Mark Salling -Jennifer Aniston -Wilder Penfield -Happy Valentines Day -Alessia Cara -Eli Manning -Florida shooting -Sergei Eisenstein -Sal Castro Middle School -Kylie Jenner -Tom Brady -Elizabeth Blackwell -Tiger Woods -Virginia Woolf -Vikings Vs Eagles -Kylie Jenner -Government Shutdown -SpaceX -Winter Olympics -Derrick Rose -Bitcoin Price -Florida shooting -Black Panther -Super Bowl score -Carrie Underwood -Virginia Woolf -Winter Olympics -Ash Wednesday -Jamie Anderson -Government shutdown 2018 -Amy Schumer -Larry Nassar -Wilder Penfield -Puppy Bowl 2018 -Elizabeth Blackwell -Super Bowl score -Florida shooting -Elizabeth Blackwell -Patti LuPone -Florida shooting -Virginia Woolf -Bitcoin Price -Presidents Day 2018 -Super Bowl 2018 -What Time Is The Super Bowl -Super Bowl 2018 -Patriots -Carter G. Woodson -Omarosa -State of the Union -Super Bowl score -Virginia Woolf -Happy Valentines Day -Florida shooting -Andrew McCabe -national signing day 2018 -Bellator 192 -Ash Wednesday -Larry Nassar -Virginia Woolf -Robert Wagner -Elizabeth Blackwell -Elizabeth Blackwell -Elizabeth Blackwell -Tyler Hilinski -Andrew Cunanan -Sergei Eisenstein -Elizabeth Blackwell -National Pizza Day -Jennifer Aniston -CNN -UFC 220 -Winter Olympics -John Mahoney -Super Bowl score -Wilder Penfield -Paula Modersohn-Becker -Virginia Woolf -Patriots -Carter G. Woodson -Vikings Vs Eagles -Ted Bundy -Carter G. Woodson -Paula Modersohn-Becker -Valentines Day Cards -Dwyane Wade -Paula Modersohn-Becker -Virginia Woolf -Carter G. Woodson -Virginia Woolf -calculator -Winter Olympics -Shaun White -Nba All Star Draft -Government Shutdown -Paula Modersohn-Becker -Reg E Cathey -Virginia Woolf -Super Bowl 2018 -The Alienist -Government Shutdown -Grammys 2018 -Sergei Eisenstein -Wilder Penfield -Paula Modersohn-Becker -What Time Is The Super Bowl -Kentucky shooting -Virginia Woolf -Wilder Penfield -Trump State of the Union -Carter G. Woodson -Happy Valentines Day -Olivia Munn -Winter Olympics -Robinhood -CNN -CNN -Carter G. Woodson -Grammys 2018 -Super Bowl 2018 -Virginia Woolf -Sergei Eisenstein -Paula Modersohn-Becker -Google Classroom -Netflix Stock -Patriots -Altered Carbon -Elizabeth Blackwell -Earthquake -Florida shooting -Joe Kennedy -Isaiah Thomas -Government Shutdown -Did the Groundhog See His Shadow -SZA -NASCAR -Super Bowl score -Winter Olympics -Julie Ertz -Groundhog Day 2018 -Virginia Woolf -XFL -Super Bowl score -SAG Awards 2018 -James Baldwin -Puppy Bowl 2018 -Wilder Penfield -Super Bowl 2018 -Pro Bowl 2018 -Pro Bowl 2018 -Virginia Woolf -Kesha -Florida shooting -Johnny Weir -Markelle Fultz -Jessica Chastain -Vanessa Marcil -Grammys 2018 -Quincy Jones -Steve Mcnair -Sergei Eisenstein -Groundhog Day 2018 -Grammys 2018 -Carter G. Woodson -UFC 220 -Pink -SpaceX -Grammys 2018 -stock market -Early Man -Altered Carbon -Highline College -Virginia Woolf -Wilder Penfield -Florida shooting -Bitcoin Price -Super Bowl score -Elizabeth Blackwell -Virginia Woolf -Wilder Penfield -FA Cup -Super blue blood Moon -Kim Kardashian -Steve Mcnair -Super Bowl score -Snake -Super Bowl 2018 -Blood Moon -Isaiah Canaan -Daryle Singletary -United States Of America Winter Olympics -Winter Olympics -Shaun White -Dwyane Wade -Virginia Woolf -Kylie Jenner -Julie Ertz -Chris Stapleton -Elizabeth Blackwell -Wilder Penfield -Kylie Jenner -Kim Cattrall -Super Bowl 2018 -Patriots -What Time Is The Super Bowl -Lindsey Vonn -Josh McDaniels -Paula Modersohn-Becker -Grammys 2018 -Wilder Penfield -Elton John -What Time Is The Super Bowl -Larry Nassar -stock market -Paula Modersohn-Becker -Sergei Eisenstein -Justin Timberlake -Super Bowl 2018 -Justin Timberlake -Julie Ertz -Super Bowl score -Paula Modersohn-Becker -Rodney Hood -Patriots -Winter Olympics -Super Bowl 2018 halftime show -Justin Timberlake -Super Bowl 2018 -Cloverfield Paradox -Super blue blood Moon -Solo Trailer -Valentines Day -Adam Rippon -Winter Olympics -Elizabeth Blackwell -shutdown -Virginia Woolf -Pink -Sergei Eisenstein -Super Bowl score -Fredo Santana -Despacito -What Time Is The Super Bowl -DeMarcus Cousins -Chinese New Year 2018 -Super Bowl score -Florida shooting -Kim Kardashian -SpaceX -Blue Ivy -Get Out -SpaceX -Trey Gowdy -Winter Olympics -Florida shooting -Patriots -Groundhog Day 2018 -Valentines Day -Super Bowl 2018 -Shaun White -Memo -Matt Czuchry -Alison Brie -Groundhog Day 2018 -Florida shooting -Wilder Penfield -Shaun White -Alaska earthquake -Virginia Woolf -Steven Tyler -Winter Olympics -Sergei Eisenstein -Winter Olympics -Paula Modersohn-Becker -Black Panther -Wilder Penfield -Florida shooting -The 15:17 to Paris -Carter G. Woodson -Walter Payton -Florida shooting -Real Madrid -Paula Modersohn-Becker -Florida shooting -Pro Bowl 2018 -Virginia Woolf -NHL All Star Game -Florida shooting -Super Bowl score -Ash Wednesday -Cherry Seaborn -Virginia Woolf -What Time Is The Super Bowl -New England Patriots owner -Nba All Star Draft -Paula Modersohn-Becker -Wilder Penfield -Jason Kidd -Winter Olympics -State of the Union -Winter Olympics -Heath Ledger -SpaceX -Carter G. Woodson -Mikaela Shiffrin -Super Bowl 2018 -Sergei Eisenstein -Elizabeth Blackwell -Grammys 2018 -Virginia Woolf -Super Bowl score -Russell Wilson -Daytona 500 -Government Shutdown Meaning -Super blue blood Moon -Super Bowl 2018 -Super blue blood Moon -John Mahoney -Florida shooting -Carter G. Woodson -Super Bowl score -Google Classroom -Super Bowl score -Chloe Kim -Super blue blood Moon -Government Shutdown -Patriots -Sergei Eisenstein -Carter G. Woodson -Happy Valentines Day -Adam Rippon -Drive -Russell Wilson -What Time Is The Super Bowl -Adam Rippon -earthquake today -Super Bowl score -Florida shooting -Wilder Penfield -Kentucky shooting -Virginia Woolf -Sergei Eisenstein -Paula Modersohn-Becker -Sergei Eisenstein -Mickey Jones -Shaun White -Black Panther -Black Panther -Shaun White -What Time Is The Super Bowl -Sergei Eisenstein -Government Shutdown -Snap Stock -Bitcoin Price -Carter G. Woodson -Paula Modersohn-Becker -Government Shutdown -Den of Thieves -Elizabeth Blackwell -Obama portrait -Elizabeth Blackwell -Virginia Woolf -12 Strong -Jessica Biel -Derrick Rose -Sergei Eisenstein -Grammys 2018 -SpaceX -The 15:17 to Paris -Patriots -Turpin -Patriots -Earthquake Today -State of the Union -Winter Olympics -Lena Zawaideh -Super Bowl 2018 -Classroom -Lena Zawaideh -Paula Modersohn-Becker -Sandy Hook -Happy Valentines Day -Elizabeth Blackwell -Kim Kardashian -Super Bowl 2018 -Alessia Cara -Government Shutdown Meaning -Virginia Woolf -Paula Modersohn-Becker -Groundhog Day 2018 -Chloe Kim -Justin Timberlake -The 15:17 to Paris -Shaun White -Kylie Jenner -Paula Modersohn-Becker -Patriots -Early Man -Sergei Eisenstein -Patriots -Carter G. Woodson -Patriots -Pink -Grammys 2018 -Black Panther -Florida shooting -Super Bowl 2018 -Larry Nassar -Government shutdown -Groundhog Day 2018 -Wilder Penfield -Grammys 2018 -Carter G. Woodson -Kylie Jenner -Larry Nassar -Shaun White -Mark Salling -Jacob Copeland -Grammys 2018 -Government Shutdown -Elizabeth Blackwell -Sergei Eisenstein -Alaska earthquake -Super blue blood Moon -Rasual Butler -Elizabeth Blackwell -Government Shutdown -Super Bowl 2018 -SpaceX -SpaceX -Rob Porter -Tom Petty -Paula Modersohn-Becker -Elizabeth Blackwell -shutdown -Fredo Santana -Patriots -Kylie Jenner -Chloe Kim -Patriots -Larry Nassar -Virginia Woolf -Fredo Santana -Virginia Woolf -Brie Larson -Dwyane Wade -Joe Kennedy -Sergei Eisenstein -Winter Olympics -Peter Rabbit -SpaceX -Justin Timberlake -Google docs -Virginia Woolf -Oscar Nominations 2018 -Patriots -Wilder Penfield -Elizabeth Blackwell -Kylie Jenner -Chloe Kim -Bitcoin Price -Get Out -Justin Timberlake -Carter G. Woodson -Kesha -Wilder Penfield -Winter Olympics -Grammys 2018 -Super Bowl score -Super blue blood Moon -Elizabeth Blackwell -school closings -Patriots -Elton John -Joel Taylor -Winter Olympics -Super Bowl score -Super Bowl score -Rodney Hood -Government Shutdown -SpaceX -Carter G. Woodson -Paula Modersohn-Becker -Super Bowl score -Florida shooting -Government Shutdown -Winter Olympics -Wilder Penfield -Cavs -Paula Modersohn-Becker -Government shutdown -Sergei Eisenstein -What Time Is The Super Bowl -Elizabeth Blackwell -Tesla in space -Patriots -What Time Is The Super Bowl -Riverdale -Ash Wednesday -Sergei Eisenstein -Sergei Eisenstein -Tomi Lahren -Sergei Eisenstein -Kylie Jenner -Florida shooting -CNN -Justin Timberlake -Oscar Nominations 2018 -Elizabeth Blackwell -Paula Modersohn-Becker -Sergei Eisenstein -Florida shooting -Winter Olympics -Jenna Morasca -Black Panther -UFC 220 -Lunar eclipse -Florida shooting -Florida shooting -Obama portrait -New England Patriots owner -Walter Payton -Super Bowl score -Elizabeth Blackwell -Elizabeth Blackwell -Peter Rabbit -Omarosa -Abraham Lincoln -Kylie Jenner Baby Girl -Virginia Woolf -Kylie Jenner -Solo Trailer -Harley Barber -Dow Jones -Wilder Penfield -Carrie Underwood -Donald Trump Jr -Winter Olympics -Carter G. Woodson -Florida shooting -Sergei Eisenstein -Patriots -Megan Barry -Bitcoin Price -Carter G. Woodson -Kylie Jenner -Jemele Hill -Chris Long -Champions League -Carter G. Woodson -Royal Rumble 2018 -Justin Timberlake -What Time Is The Super Bowl -Valentines Day Cards -Alex Smith -Patriots -Jason Kelce -Paula Modersohn-Becker -Monster Hunter World -Tennys Sandgren -Vikings Vs Eagles -Super Bowl 2018 -Warren Miller -Did the Groundhog See His Shadow -XFL -Sergei Eisenstein -Carter G. Woodson -Rob Porter -CNN -JUUL -Patriots -Patti LuPone -Ursula Le Guin -Grammys 2018 -UFC 220 -Kylie Jenner -Cavs -Super Bowl score -Adam Rippon -Kylie Jenner -Government Shutdown -Kirstjen Nielsen -Happy Valentines Day -What Time Is The Super Bowl -Valentines Day -Kylie Jenner -Kylie Jenner -SAG Awards 2018 -What Time Is The Super Bowl -UFC 220 -Gods Plan -Alison Brie -Government Shutdown 2018 -Andrew McCabe -Super Bowl score -Super Bowl score -Patriots -Sergei Eisenstein -Super blue blood Moon -Stock Market Crash Today -Blood Moon -Sergei Eisenstein -Ash Wednesday -Winter Olympics -Florida shooting -SpaceX -Mikaela Shiffrin -Super Bowl 2018 -Amtrak -Meteor -Sergei Eisenstein -Sergei Eisenstein -Justin Timberlake -Super Bowl score -Altered Carbon -school closings -Elizabeth Blackwell -Paula Modersohn-Becker -Danielle Herrington -Google Classroom -Happy Valentines Day -Childish Gambino -Paula Modersohn-Becker -Bitcoin Price -Olympic medal count -SpaceX -SpaceX -Florida shooting -What Time Is The Super Bowl -Winter Olympics -Florida shooting -Vikings Vs Eagles -Winter Olympics -Vince McMahon -UFC 220 -Tammy Duckworth -Nathan Chen -Virginia Woolf -XFL -Alex Reimer -Virginia Woolf -Patriots -Carter G. Woodson -Solo Trailer -Chloe Kim -Patriots -Meteor -What Time Is The Super Bowl -Sergei Eisenstein -calculator -Kim Kardashian -Altered Carbon -Ash Wednesday -Government Shutdown 2018 -SpaceX -Justin Timberlake -Chinese New Year 2018 -Bitcoin Price -Bitcoin Price -calculator -Trump State of the Union -Winter Olympics -Kylie Jenner -Wilder Penfield -Tara Lipinski -Chinese New Year 2018 -Caroline Wozniacki -Black Lightning -What Time Is The Super Bowl -Larry Nassar -Zuleyka Rivera -Government Shutdown Meaning -Kim Kardashian -Winter Olympics -Winter Olympics -Drake -Super Bowl score -Florida shooting -Bitcoin Price -Grammys 2018 -Tom Petty -Sergei Eisenstein -Gods Plan -Paula Modersohn-Becker -Super Bowl score -Virginia Woolf -United States Postal Service -Lonzo Ball -Wilder Penfield -Super Bowl score -Nintendo Labo -What Time Is The Super Bowl -Shaun White -Kylie Jenner -Paula Modersohn-Becker -Groundhog Day 2018 -Elizabeth Blackwell -DeMarcus Cousins -Wilder Penfield -Winter Olympics -Super Bowl score -Florida shooting -Super Bowl 2018 -Elizabeth Blackwell -Carter G. Woodson -Chris Paul -Chloe Kim -Wilder Penfield -Justin Timberlake -Elizabeth Blackwell -Yahoo Finance -Kylie Jenner -Wilder Penfield -Isaiah Thomas -Elizabeth Blackwell -Andrew Cunanan -What Time Is The Super Bowl -Lunar eclipse -Amy Schumer -Stephanie Katelnikoff -Kylie Jenner -SpaceX -Meteor -Justin Timberlake -Groundhog Day 2018 -Joe Kennedy -Venom -Kesha Grammy -Lunar eclipse -Florida shooting -Super Bowl 2018 -Government Shutdown 2018 -Elizabeth Blackwell -Yu Darvish -Virginia Woolf -Kesha Grammy -Yu Darvish -Wilder Penfield -Government Shutdown -Carter G. Woodson -Paula Modersohn-Becker -Elizabeth Blackwell -Adam Rippon -This Is Us -Super Bowl Commercials 2018 -Happy Valentines Day -Elizabeth Blackwell -Johnny Weir -Florida shooting -Wilder Penfield -Winter Olympics -Cavs -Blake Griffin Trade -Virginia Woolf -Larry Nassar -Tom Brady daughter -Kentucky shooting -Super Bowl score -Lunar eclipse -Wilder Penfield -Winter Olympics -Virginia Woolf -Paula Modersohn-Becker -Wilder Penfield -Elizabeth Blackwell -The 15:17 to Paris -Dow Jones -Eli Manning -Super Bowl score -Elizabeth Blackwell -Happy Valentines Day -This Is Us -Elizabeth Blackwell -Montreal Cognitive Assessment -Peter Rabbit -Carter G. Woodson -Carter G. Woodson -Black Panther -Florida shooting -calculator -Winter Olympics -Paula Modersohn-Becker -Mardi Gras 2018 -Detroit Lions -Virginia Woolf -Larry Nassar -stock market -Sal Castro Middle School -IXL -Florida shooting -Super Bowl 2018 -NFC Championship Game 2018 -Stormi -Megan Barry -Elizabeth Blackwell -Black Panther -calculator -Super Blue Blood Moon -Black Panther -Government Shutdown Meaning -Carter G. Woodson -Winter Olympics -Black Panther -Patriots -Carter G. Woodson -Justin Timberlake -Apple stock -Carter G. Woodson -Carter G. Woodson -NFL Honors -Paula Modersohn-Becker -Elizabeth Blackwell -NFC Championship Game 2018 -Super blue blood Moon -Robert Wagner -Wilder Penfield -Bradie Tennell -Winter Olympics -NBC Sports -Get Out -Super Bowl score -Elizabeth Blackwell -Florida shooting -Paula Modersohn-Becker -Sergei Eisenstein -Patriots -SAG Awards 2018 -Larry Nassar -Sergei Eisenstein -Super Bowl score -Sergei Eisenstein -Super blue blood Moon -Florida shooting -Paula Modersohn-Becker -Florida shooting -Elizabeth Blackwell -Memo -Virginia Woolf -Mikaela Shiffrin -Megan Barry -Vanity Fair Cover -Den of Thieves -Halsey -Wilder Penfield -Carter G. Woodson -Florida shooting -This Is Us -Dow Jones -Super blue blood Moon -Super Bowl score -Wilder Penfield -Super Bowl score -Wilder Penfield -Super Bowl score -Kylie Jenner -Elizabeth Blackwell -Justin Timberlake -Lunar eclipse -SAG Awards 2018 -Paula Modersohn-Becker -Shaun White -Justin Timberlake -Super Bowl 2018 -Elizabeth Blackwell -Den of Thieves -Happy Valentines Day -Winter Olympics -Fredo Santana -Government Shutdown 2018 -Andrew Cunanan -Jason Momoa -Super Bowl 2018 -Dow Jones -SpaceX -Alison Brie -Rodney Hood -Kristaps Porzingis -Valentines Day -Patriots -Kylie Jenner -Super Bowl score -Royal Rumble 2018 -CNN -Super Bowl score -Grammys 2018 -Andrew Cunanan -NBA Trades -What Time Is The Super Bowl -Chinese New Year 2018 -Alex Smith -Carter G. Woodson -Jason Kelce -Florida shooting -Super Bowl 2018 -Carter G. Woodson -Groundhog Day 2018 -UFC 221 -Government shutdown 2018 -Obama portrait -Tammy Duckworth -Valentines Day -Super Bowl score -Florida shooting -What Time Is The Super Bowl -XFL -Wilder Penfield -Olivia Culpo -Florida shooting -Jamie Dornan -Paula Modersohn-Becker -Patriots -Paula Modersohn-Becker -Government Shutdown -Stock Market Crash Today -Dow Jones -Florida shooting -Government Shutdown -Blake Griffin -Sergei Eisenstein -Westerville Ohio -Carter G. Woodson -Justin Timberlake -Super Bowl score -Virginia Woolf -Natalie Portman -Jennifer Aniston -SpaceX -Paula Modersohn-Becker -Super Bowl score -Kim Kardashian -Mark Salling -Wilder Penfield -Super Bowl Commercials 2018 -Paula Modersohn-Becker -Phantom Thread -Wilder Penfield -Black Panther -Super Bowl 2018 -Lunar eclipse -Florida shooting -Wilder Penfield -Bill Parcells -Paula Modersohn-Becker -Scott Baio -Kodak Black -Berkshire Hathaway -Korea -Kristaps Porzingis -Dow Jones -Winter Olympics -Hailee Steinfeld -Gianni Versace -Winter Olympics -Kim Kardashian -Justin Timberlake -Real Madrid -Florida shooting -Carter G. Woodson -Virginia Woolf -Elizabeth Blackwell -curling -Shaun White -Patriots -Paula Modersohn-Becker -Winter Olympics -School closings -Patriots -Super Bowl Commercials 2018 -Black Panther -NBC Sports -12 Strong -CNN -SAG Awards 2018 -Government shutdown 2018 -Wilder Penfield -Lunar eclipse -School Closings -Carter G. Woodson -Taiwan Earthquake Today -Malcom Butler -SpaceX -Government shutdown 2018 -Kirstjen Nielsen -Virginia Woolf -Joshua Cooper Ramo -Paula Modersohn-Becker -Paula Modersohn-Becker -Vikings Vs Eagles -Patriots -Wilder Penfield -Groundhog Day 2018 -Monster Hunter World -Maze Runner: The Death Cure -Super Bowl score -Wilder Penfield -Carter G. Woodson -Super Bowl score -Winter Olympics -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl score -Kylie Jenner -NBA Trades -Super Bowl 2018 -Super Bowl 2018 -Elizabeth Blackwell -Solo Trailer -Mardi Gras 2018 -Florida shooting -Paula Modersohn-Becker -Sandy Hook -Florida shooting -Sergei Eisenstein -Sergei Eisenstein -Mark Salling -Virginia Woolf -Justin Timberlake -Virginia Woolf -Virginia Woolf -Early Man -Virginia Woolf -NBA Trades -Sergei Eisenstein -Pro Bowl 2018 -Super Bowl score -Government Shutdown -Peter Rabbit -Virginia Woolf -Super Bowl Commercials -Blake Griffin -Adam Rippon -Government Shutdown -Atlanta Weather -Michigan State -New England Patriots owner -Dow Jones -Justin Timberlake -Ash Wednesday -Winter Olympics -Real Madrid -Patriots -Eli Manning -Paula Modersohn-Becker -Super Bowl 2018 -Carter G. Woodson -Trey Gowdy -NBC Sports -Olympic Medal Count -Sergei Eisenstein -Rob Porter -Government Shutdown Meaning -Enzo Amore -SpaceX -Royal Rumble 2018 -Scott Baio -Andrew McCabe -State of the Union -earthquake today -NHL All Star Game -Black Panther -Elizabeth Blackwell -Tara Lipinski -Elizabeth Blackwell -Alaska earthquake -Carter G. Woodson -Mark Salling -Fredo Santana -Virginia Woolf -Olympic medal count -Chicago West -Charissa Thompson -Paula Modersohn-Becker -Elizabeth Blackwell -Obama portrait -Dow Jones -Grammys 2018 -Fredo Santana -Sergei Eisenstein -Larry Nassar -Kylie Jenner -Government Shutdown Meaning -Carter G. Woodson -Chinese New Year 2018 -Trump State of the Union -Super Bowl 2018 -Pro Bowl 2018 -Sergei Eisenstein -Mardi Gras 2018 -Black Panther -CNN -Paula Modersohn-Becker -Sal Castro Middle School -Super blue blood Moon -Steven Tyler -Virginia Woolf -Super Bowl score -Super Bowl score -Stan Lee -Elizabeth Blackwell -Dwyane Wade -Super Bowl 2018 -NHL All Star Game -Vikings vs Eagles -Patriots -Black Panther -Paula Modersohn-Becker -Virginia Woolf -This Is Us -Elizabeth Blackwell -The 15:17 to Paris -Houston Rockets -Adam Rippon -Ash Wednesday -Chicago Weather -Elizabeth Blackwell -Bill Belichick -Wilder Penfield -Grammys 2018 -Kristaps Porzingis -Kesha -Mikaela Shiffrin -Chloe Kim -Vikings vs Eagles -Grammys 2018 -Kylie Jenner -Sergei Eisenstein -UFC 220 -Alaska earthquake -Bitcoin Price -Kylie Jenner -Justin Timberlake -Grammys 2018 -Jacob Copeland -Chicago West -Patriots -What Time Is The Super Bowl -Patriots -The Home Depot -Betty White -Jessica Chastain -Elizabeth Blackwell -Rob Gronkowski -Oscar Nominations 2018 -Meteor -Super Blue Blood Moon -Patriots -Cloverfield Paradox -Florida shooting -Super Bowl 2018 -Super Bowl 2018 -Winter Olympics -Neil Diamond -Mark E Smith -Patriots -Mardi Gras 2018 -Super Bowl score -Elon Musk -SpaceX -Elizabeth Blackwell -NBA Trades -Shaun White -Dow Jones -Grammys 2018 -Winter Olympics -Super Bowl score -Bitcoin Price -Snapchat Update -Super blue blood Moon -Grammys 2018 -Adam Rippon -Carter G. Woodson -Dow Jones -Wilder Penfield -What Time Is The Super Bowl -Blake Griffin -calculator -Esteban Loaiza -Yahoo Finance -Black Panther -Katie Couric -Valentines Day -Super Bowl score -Chicago Weather -earthquake -Virginia Woolf -Patriots -Shaun White -Super Bowl 2018 -Oscar Nominations 2018 -Paula Modersohn-Becker -Chloe Kim -Super Bowl score -Paula Modersohn-Becker -Tara Lipinski -Super Bowl 2018 -Sergei Eisenstein -Super Bowl 2018 -Paula Modersohn-Becker -Wilder Penfield -Devin Nunes -Chris Long -Phantom Thread -Super Bowl Winners -Super Bowl score -Super Bowl 2018 -Sergei Eisenstein -Winter Olympics -NFC Championship Game 2018 -United States Of America Winter Olympics -Obama portrait -Zion Williamson -Paula Modersohn-Becker -Josh McDaniels -Paula Modersohn-Becker -Sergei Eisenstein -Super blue blood Moon -Elizabeth Blackwell -Justin Timberlake -Patriots -Lunar eclipse -Luke Wilson -Kylie Jenner -Carter G. Woodson -Patriots -Government Shutdown -calculator -Carter G. Woodson -Mark Salling -UFC 220 -Hostiles -Rasual Butler -Kristaps Porzingis -Natalie Wood -Johnny Weir -Elizabeth Blackwell -Kylie Jenner -slides -Kylie Jenner -Virginia Woolf -Super Bowl 2018 -Shaun White -Government shutdown 2018 -Duke Basketball -SpaceX -Happy Valentines Day -Paula Modersohn-Becker -Edible Arrangements -Sergei Eisenstein -Virginia Woolf -Winter Olympics -Wilder Penfield -Virginia Woolf -Super Bowl 2018 -Grammys 2018 -Fifty Shades Freed -Lauren Davis -Earthquake Today -Virginia Woolf -Dane Cook -Florida shooting -Super Bowl score -Women's March 2018 -Patriots -Justin Timberlake -Happy Valentines Day -Justin Timberlake -Best Superbowl Commercials 2018 -Sergei Eisenstein -Isaiah Thomas -Carter G. Woodson -Sergei Eisenstein -UFC 220 -Dow Jones -Carter G. Woodson -Patriots -Virginia Woolf -Hope Hicks -Wilder Penfield -Grammys 2018 -Virginia Woolf -National Pizza Day -Den of Thieves -Stan Lee -NBA Trades -Florida shooting -Esteban Loaiza -SpaceX -SpaceX -LeBron James -SpaceX -SpaceX -Sarah Barthel -Elizabeth Blackwell -Louise Linton -Childish Gambino -Tom Brady -XFL -Super Bowl 2018 halftime show -Super blue blood Moon -Omarosa -Aaliyah -Florida shooting -Virginia Woolf -Wilder Penfield -Patriots -Patriots -Pro Bowl 2018 -Andrew McCabe -Mardi Gras 2018 -CBS Sports -Winter Olympics -Venom -NHL All Star Game -Grey's Anatomy -Scott Baio -Super Bowl score -Virginia Woolf -Rasual Butler -Happy Valentines Day -State of the Union -Super Bowl score -Patriots -SAG Awards 2018 -Waco -Harry Styles -Super Bowl score -Justin Timberlake -Super Bowl score -Valentines Day -Elizabeth Blackwell -Paula Modersohn-Becker -Florida shooting -Olympics 2018 -Paula Modersohn-Becker -Bitcoin Price -Kim Cattrall -Super Bowl score -Costco Wholesale -Jennifer Aniston -Kesha Grammy -Wilder Penfield -Patriots -Carter G. Woodson -Elizabeth Blackwell -Daryle Singletary -Den of Thieves -Bitcoin Price -Dow Jones -Meteor -Shaun White -Wilder Penfield -Government shutdown -Elizabeth Blackwell -Paula Modersohn-Becker -NHL All Star Game -Super Bowl 2018 -Virginia Woolf -Classroom -Virginia Woolf -Mark Salling -Virginia Woolf -NFC Championship Game 2018 -Phantom Thread -Virginia Woolf -Elizabeth Blackwell -Kesha -Paula Modersohn-Becker -Winter Olympics -Super Bowl 2018 -Tyler Hilinski -Elizabeth Blackwell -Sergei Eisenstein -Government Shutdown -Valentines Day Images -Derrick Rose -Patriots -Winter Olympics -Scott Baio -Winter Olympics -Edible Arrangements -Lady Gaga -Sergei Eisenstein -Elizabeth Blackwell -Virginia Woolf -Altered Carbon -Patriots -Sergei Eisenstein -Alex Smith -Jennifer Aniston -Kirstjen Nielsen -Larry Nassar -Google Classroom -Peter Rabbit -Kylie Jenner -Mark Salling -CNN -State of the Union -Super Bowl 2018 -Alaska earthquake -Bitcoin Price -Black Panther -Virginia Woolf -Yu Darvish -Eli Manning -AFC Championship Game 2018 -Winter Olympics -Kylie Jenner -Yu Darvish -Wilder Penfield -Super Bowl Commercials -Vikings Vs Eagles -CNN -Friends movie -Kim Kardashian -Mark Salling -Paula Modersohn-Becker -Super Bowl score -What Time Is The Super Bowl -Super Blue Blood Moon -Florida shooting -Paula Modersohn-Becker -SpaceX -Trump State of the Union -Grammys 2018 -Greg Monroe -Kylie Jenner -Groundhog Day 2018 -Lunar eclipse -Sergei Eisenstein -Patriots -Super Bowl Commercials 2018 -Florida shooting -Bitcoin Price -Sal Castro Middle School -Sergei Eisenstein -Patriots -Paul Ryan -Patriots -Blake Griffin -Paula Modersohn-Becker -Doomsday Clock -Cloverfield Paradox -Fredo Santana -Winter Olympics -Blue Ivy -Kylie Jenner -Carter G. Woodson -Justin Timberlake -Did the Groundhog See His Shadow -Jessica Chastain -New California -Quincy Jones -Alex Reimer -Florida shooting -Super Bowl score -Adam Rippon -Virginia Woolf -Happy Valentines Day -Winter Olympics -Chicago West -What Time Is The Super Bowl -Mark Salling -Groundhog Day 2018 -Olympics 2018 -Blake Griffin -Kim Kardashian -Alessia Cara -Steve Wynn -Virginia Woolf -Virginia Woolf -Champions League -Dow Jones -Sergei Eisenstein -Elizabeth Blackwell -State of the Union -Walter Payton -Jemele Hill -Fifty Shades Freed -Dwyane Wade -NHL All Star Game -Super Bowl score -Super Bowl 2018 -Mardi Gras 2018 -Carter G. Woodson -Lakers -Patriots -What Time Is The Super Bowl -Wilder Penfield -Winter Olympics -Chief Wahoo -Anna Kournikova -Scott Baio -Patriots -Kylie Jenner -Elizabeth Blackwell -Paula Modersohn-Becker -Wilder Penfield -Patriots -Super Bowl score -Justin Timberlake -Carter G. Woodson -Solo Trailer -Zion Williamson -Justin Timberlake -Yahoo Finance -Mark Salling -Cavs -Winter Olympics -Justin Timberlake -Sergei Eisenstein -UFC 220 -Justin Timberlake -Winter Olympics -Josh McDaniels -Florida shooting -Paula Modersohn-Becker -What Time Is The Super Bowl -Black Panther -Paula Modersohn-Becker -Vikings Vs Eagles -New England Patriots owner -Virginia Woolf -Sergei Eisenstein -Super Blue Blood Moon -SpaceX -National Pizza Day -Government shutdown -Julie Ertz -Virginia Woolf -Cory Booker -Shaun White -Government Shutdown -Super Bowl score -Costco Wholesale -Elon Musk -Marlon Brando -12 Strong -SpaceX -Elizabeth Blackwell -Alex Smith -Super Bowl score -Vikings Vs Eagles -NBA Trades -Super Bowl score -Cavs -Dua Lipa -Elizabeth Blackwell -Carter G. Woodson -Government Shutdown -Erykah Badu -Carter G. Woodson -Kylie Jenner Baby Girl -SpaceX -Wilder Penfield -Jennifer Aniston -Groundhog Day 2018 -Ash Wednesday -Joe Kennedy -Cory Booker -Dwyane Wade -Paula Modersohn-Becker -Yahoo Finance -New England Patriots owner -Florida shooting -SpaceX -Carter G. Woodson -Kylie Jenner -Trump State of the Union -Solo Trailer -Elton John -Kylie Jenner Baby Girl -Winter Olympics -Jamie Anderson -Virginia Woolf -Wilder Penfield -Jamie Anderson -Elizabeth Blackwell -Virginia Woolf -Sergei Eisenstein -Portia de Rossi -Paula Modersohn-Becker -Wilder Penfield -slides -Florida shooting -Elizabeth Blackwell -This Is Us -Terrell Owens -Virginia Woolf -Shaun White -Omarosa -Lunar eclipse -Mardi Gras 2018 -Winter Olympics -Pro Bowl 2018 -Wilder Penfield -Vikings Vs Eagles -Justin Timberlake -school closings -Justin Timberlake -Grammys 2018 -Royal Rumble 2018 -Larry Nassar -Super Bowl score -SpaceX -Winter Olympics -Kylie Jenner -Julie Ertz -Wilder Penfield -Wilder Penfield -Sting -Larry Nassar -Shaun White -Larry Nassar -XFL -Winter Olympics -Sergei Eisenstein -Super Bowl score -Shaun White -SpaceX -SpaceX -Grammys 2018 -Paula Modersohn-Becker -Valentines Day -Paula Modersohn-Becker -NBA Trades -Lindsey Vonn -Rasual Butler -Uma Thurman -Vikings Vs Eagles -Larry Nassar -Sergei Eisenstein -Obama portrait -Carter G. Woodson -Aaron Feis -Virginia Woolf -SpaceX -Venom -Ar 15 -Super blue blood Moon -Kim Kardashian -Winter Olympics -calculator -What Time Is The Super Bowl -Government Shutdown -Florida shooting -Paula Modersohn-Becker -Paula Modersohn-Becker -Patriots -CNN -Culture 2 -SpaceX -Cloverfield Paradox -Virginia Woolf -Paula Modersohn-Becker -Oscar Nominations 2018 -Kim Kardashian -Google Drive -Josh McDaniels -Patriots -Winter Olympics -CNN -Wilder Penfield -Wilder Penfield -Virginia Woolf -Elizabeth Blackwell -Patriots -slides -Pegasus World Cup -Winter Olympics -Virginia Woolf -Fredo Santana -Patriots -Dow Jones -Winter Olympics -Cherry Seaborn -Virginia Woolf -Valentines Day -Yahoo Finance -Groundhog Day 2018 -Wilder Penfield -Super blue blood Moon -Trump State of the Union -Tara Lipinski -Winter Olympics -Super Bowl score -The 15:17 to Paris -Sergei Eisenstein -Elizabeth Blackwell -NBA Trades -Carter G. Woodson -Winter Olympics -Grammys 2018 -Patriots -Super blue blood Moon -Kylie Jenner -Winter Olympics -Pink -Sergei Eisenstein -Grammys 2018 -Larry Nassar -Sean McVay -Government Shutdown -Pink -Carter G. Woodson -Justin Timberlake -NBA Trades -NFC Championship Game 2018 -Government Shutdown -Julie Ertz -Maria Menounos -Elizabeth Blackwell -Kylie Jenner -Grammys 2018 -UFC 220 -Mark Salling -12 Strong -Super Bowl score -Andrew Cunanan -Paula Modersohn-Becker -Netflix Stock -Justin Timberlake -Super Bowl 2018 -Larry Nassar -Patriots -Wilder Penfield -Kevin Durant -Groundhog Day 2018 -Winter Olympics -Lunar eclipse -Super Bowl 2018 -Don Lemon -Walter Payton -Winter Olympics -Rasual Butler -Jason Kelce -Lady Gaga -Walter Payton -Government Shutdown Meaning -UFC 220 -Tyler Hilinski -Neil Diamond -Paula Modersohn-Becker -What Time Is The Super Bowl -Shaun White -Super Bowl 2018 -Olympic medal count -Bill Belichick -Winter Olympics -Memo -Patriots -Carter G. Woodson -Camila Cabello -Florida shooting -Patriots -Paula Modersohn-Becker -Fredo Santana -Justin Timberlake -Happy Valentines Day -Wilder Penfield -Super blue blood Moon -Wilder Penfield -Carter G. Woodson -Paula Modersohn-Becker -Meteor -Happy Valentines Day -Red Gerard -Matt Czuchry -Obama portrait -Mexico Vs Bosnia -Wilder Penfield -Florida shooting -Government Shutdown -Florida shooting -Memo -Paula Modersohn-Becker -Oscar Nominations 2018 -Wilder Penfield -Patriots -Drive -Gianni Versace -Virginia Woolf -Paula Modersohn-Becker -Pro Bowl 2018 -Logan Paul -Jimmy Garoppolo -Paula Modersohn-Becker -Obama portrait -Larry Nassar -Amazon Stock -VIX -Kylie Jenner -Carter G. Woodson -Altered Carbon -Rob Delaney -Florida shooting -Carter G. Woodson -Larry Nassar -Super Bowl 2018 -Edwin Jackson -Super Bowl score -Carter G. Woodson -UFC 220 -Despacito -Duke Basketball -Super Bowl score -Culture 2 -Amazon HQ2 -Winter Olympics -Winter Olympics -Celtics -Virginia Woolf -National Pizza Day -Florida shooting -Paula Modersohn-Becker -Justin Timberlake -Deadpool 2 -Rasual Butler -Peter Rabbit -Florida shooting -Valentines Day -CNN -Oscar Nominations 2018 -Elizabeth Blackwell -Kim Kardashian -Kelsey Grammer -Carter G. Woodson -Cavs -Elizabeth Blackwell -Elizabeth Blackwell -Groundhog Day 2018 -Chloe Kim -Dow Jones -Virginia Woolf -Rasual Butler -Mark Salling -Vikings Vs Eagles -Cloverfield Paradox -Solo Trailer -Happy Valentines Day -Alessia Cara -Super Bowl 2018 -Paula Modersohn-Becker -Adam Rippon -Winter Olympics -Justin Timberlake -This Is Us -Kim Kardashian -Florida shooting -Patti LuPone -Super Bowl score -Emily Sweeney -Super Bowl 2018 -Malcom Butler -Chris Long -Paula Modersohn-Becker -Jessica Chastain -Sergei Eisenstein -Kylie Jenner -Elizabeth Blackwell -Super Bowl score -Larry Nassar -Government shutdown -Super Bowl 2018 -Super Bowl score -Andrew Cunanan -Carter G. Woodson -Florida shooting -Brynn Cameron -Princess Eugenie -Kevin Love -Virginia Woolf -Oscar Nominations 2018 -Tyler Hilinski -Super Bowl score -Super Bowl score -Vikings Vs Eagles -Wilder Penfield -Betty White -Hope Hicks -Winter Olympics -NBA Trades -Elizabeth Blackwell -Jen Selter -CNN -Edwin Jackson -Kawhi Leonard -Winter Olympics -Edwin Jackson -Waco -Carter G. Woodson -Sergei Eisenstein -Kesha Grammy -Lil Xan -Rasual Butler -Winter Olympics -Jamie Anderson -Rasual Butler -Super Bowl 2018 -Wilder Penfield -Black Panther -Carter G. Woodson -Larry Nassar -Childish Gambino -Kim Kardashian -Altered Carbon -Jimmy Kimmel -Cavs -Larry Nassar -12 Strong -Virginia Woolf -Paul Ryan -Vikings Vs Eagles -Steve Mcnair -Carter G. Woodson -Oscar Nominations 2018 -Google Classroom -Grammys 2018 -Nintendo Labo -Justin Timberlake -Cloverfield Paradox -NBA Trades -NBA Trades -United States Postal Service -Matt Patricia -Memo -Zion Williamson -Kodak Black -Chief Wahoo -Super Bowl Commercials 2018 -Virginia Woolf -Scott Baio -Super Bowl score -Gianni Versace -Black Panther -Super Bowl score -NBA Trades -Shiffrin -pissant -NBA Trades -Black Panther -Fred Savage -Paula Modersohn-Becker -Super Bowl 2018 -Celtics -CNN -Florida shooting -Super Bowl 2018 -Florida shooting -Shaun White -Patriots -Carter G. Woodson -What Time Is The Super Bowl -Dow Jones -Paula Modersohn-Becker -Virginia Woolf -Joy Villa -Justin Timberlake -Shaun White -Winter Olympics -Matt Czuchry -Shiffrin -Betty White -Winter Olympics -Pro Bowl 2018 -Patriots -Joe Kennedy -Joel Taylor -NSA -Timor Leste -Caroline Wozniacki -Super Bowl score -NHL All Star Game -Justin Timberlake -Josh McDaniels -Blake Griffin -Carter G. Woodson -Vikings Vs Eagles -Rodney Hood -Florida shooting -Elizabeth Blackwell -Women's March 2018 -What Time Is The Super Bowl -Valentines Day -Government Shutdown -Virginia Woolf -Carter G. Woodson -Robert Wagner -Government shutdown -Tom Petty -Elizabeth Blackwell -Chris Stapleton -Winter Olympics -Gigi Hadid -Carter G. Woodson -Halsey -Toys R Us -Jessica Chastain -Earthquake Today -Mark Salling -Virginia Woolf -Rasual Butler -Super Bowl score -Paul Ryan -Justin Timberlake -This Is Us -XFL -Tonga -Winter Olympics -CNN -Pro Bowl 2018 -Justin Timberlake -Rasual Butler -Florida shooting -Robert Wagner -Super Bowl 2017 -Super Bowl 2018 -Florida shooting -Super Bowl Commercials 2018 -Super Bowl score -Blake Griffin -Hostiles Movie -Trey Gowdy -NFC Championship Game 2018 -Oscar Nominations 2018 -Patriots -Melania Trump -Florida shooting -Super Bowl 2018 -Adam Rippon -Langston Hughes -Terrell Owens -Elizabeth Blackwell -Elizabeth Blackwell -Super Bowl score -Sergei Eisenstein -Hostiles -Nintendo Labo -Fred Savage -Did the Groundhog See His Shadow -Virginia Woolf -Solo Trailer -Elizabeth Blackwell -Justin Timberlake -Paula Modersohn-Becker -Wilder Penfield -Omarosa -Solo Trailer -Gianni Versace -Black Panther -Government Shutdown -United States Of America Winter Olympics -Larry Nassar -Robert Wagner -Celtics -Shiffrin -Kim Kardashian -Virginia Woolf -Outback Steakhouse -Patriots -Winter Olympics -Stormi -Groundhog Day 2018 -Patriots -Cherry Seaborn -Justin Timberlake -Winter Olympics -Super Bowl score -Winter Olympics -Alaska earthquake -John Mahoney -Winter Olympics -Shaun White -Monster Hunter World -Dennis Edwards -Sergei Eisenstein -Elizabeth Blackwell -Valentines Day Cards -Sergei Eisenstein -Carter G. Woodson -Larry Nassar -Patriots -Super Bowl score -Kesha Grammy -Elizabeth Blackwell -Obama portrait -State of the Union -Super Bowl score -Betty White -Vanity Fair Cover -State of the Union -Elizabeth Blackwell -Michigan State -State of the Union -Florida shooting -Jessica Chastain -Paula Modersohn-Becker -Vikings vs Eagles -Virginia Woolf -Elizabeth Blackwell -Elizabeth Blackwell -weather tomorrow -Alex Smith -Government Shutdown -Super Bowl 2018 -Pro Bowl 2018 -Neil Diamond -Winter Olympics -New England Patriots owner -Elizabeth Blackwell -Virginia Woolf -Patriots -Virginia Woolf -Bitcoin Price -State of the Union -Wilder Penfield -Alaska earthquake -Tom Petty -Sergei Eisenstein -Government Shutdown -Government Shutdown -Grammys 2018 -Olympic Medal Count -Black Panther -Oscar Nominations 2018 -Reg E Cathey -Fb Stock -Sergei Eisenstein -Grammys 2018 -Carter G. Woodson -Oar Olympics -Edwin Jackson -Red Gerard -Carter G. Woodson -Edwin Jackson -Winter Olympics -Paula Modersohn-Becker -Ash Wednesday -Wilder Penfield -Carter G. Woodson -Elizabeth Blackwell -Women's March 2018 -Elton John -Sergei Eisenstein -Rasual Butler -Eli Manning -NBA Trades -Florida shooting -Paula Modersohn-Becker -Larry Nassar -Happy Valentines Day -tsunami -Virginia Woolf -Super Bowl 2018 -CNN -Super Bowl 2018 -Scott Baio -Government Shutdown Meaning -Lorenzo Cain -National Pizza Day -Andrew Cunanan -Adam Rippon -Paula Modersohn-Becker -Carter G. Woodson -NBA Trades -Kentucky shooting -Kylie Jenner -Paula Modersohn-Becker -Super Bowl 2018 -NHL All Star Game -Virginia Woolf -Andre Roberson -Patriots -What Time Is The Super Bowl -Sergei Eisenstein -Super Bowl 2018 -SAG Awards 2018 -Katie Couric -H&r Block -Groundhog Day 2018 -Jason Kelce -Jennifer Aniston -Dwyane Wade -Groundhog Day 2018 -Matt Patricia -Mueller -This Is Us -Peter Rabbit -Paula Modersohn-Becker -Lunar eclipse -SpaceX -Childish Gambino -Bitcoin Price -Florida shooting -Shaun White -Jason Kidd -Alaska earthquake -Justin Timberlake -Amy Schumer -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl score -Edwin Jackson -Bitcoin Price -What Time Is The Super Bowl -NFL Honors -Elizabeth Blackwell -Winter Olympics -Chipper Jones -Solo Trailer -Elizabeth Blackwell -Super Bowl score -Mardi Gras 2018 -Lady Bird -Jennifer Aniston -Daryle Singletary -Sabrina Dhowre -Aaron Feis -Grammys 2018 -Kawhi Leonard -Google docs -Memo -FC Barcelona -Cedi Osman -Oscar Nominations 2018 -Joe Kennedy -State of the Union -Florida shooting -Winter Olympics -Grammys 2018 -Super Bowl 2018 -Alexa Commercial -Florida shooting -Winter Olympics -Paula Modersohn-Becker -John Mahoney -Government Shutdown -Kim Kardashian -Winter Olympics -Larry Nassar -Megan Barry -Groundhog Day 2018 -Kylie Jenner -Florida shooting -Alex Smith -Super Blue Blood Moon -Stan Lee -Mickey Jones -Oscar Nominations 2018 -Super Bowl score -Elton John -Marlon Brando -Paula Modersohn-Becker -Super Blue Blood Moon -What Time Is The Super Bowl -Jessica Chastain -Edible Arrangements -Kylie Jenner -Elizabeth Blackwell -Virginia Woolf -Red Gerard -Wilder Penfield -Sergei Eisenstein -Joe Kennedy -Manchester United -Sergei Eisenstein -Alessia Cara -Winter Olympics -Florida shooting -Super Bowl 2018 -Pink -Super Bowl 2018 -Patriots -Winter Olympics -School Closings -Larry Nassar -Winter Olympics -United States Of America Winter Olympics -Government Shutdown -Tom Petty -Winter Olympics -Sergei Eisenstein -Groundhog Day 2018 -Government Shutdown -Sea Of Thieves -Carter G. Woodson -Black Panther -Carter G. Woodson -Elizabeth Blackwell -Taiwan -Super Bowl 2018 -State of the Union -Virginia Woolf -Sergei Eisenstein -Vikings Vs Eagles -Florida shooting -Tom Izzo -Elizabeth Blackwell -Florida shooting -Larry Nassar -Valentines Day -Bitcoin Price -Neil Diamond -Larry Nassar -SpaceX -Google Classroom -Elon Musk -Winter Olympics -Grammys 2018 -Super Bowl score -Super Bowl score -Wilder Penfield -Florida shooting -Sergei Eisenstein -Government Shutdown -Chloe Kim -Kentucky shooting -NBA Trades -Virginia Woolf -Tony Romo -Bill Belichick -Classroom -Paul Ryan -Elizabeth Blackwell -Sammy Sosa -Solo Trailer -Florida shooting -Super Bowl 2018 -Black Panther -Olympic medal count -Bitcoin Price -Alessia Cara -Dow Jones -Government Shutdown Meaning -Elizabeth Blackwell -Elizabeth Blackwell -stock market -Derrick Rose -Elizabeth Blackwell -John Mahoney -Dow Jones -Super Bowl 2018 -Patriots -Carter G. Woodson -Wilder Penfield -Childish Gambino -Super blue blood Moon -Tiger Woods -Elton John -Super Bowl 2018 -Vikings Vs Eagles -UFC 221 -What Time Is The Super Bowl -Paula Modersohn-Becker -Bitcoin Price -Ronaldinho -Elizabeth Blackwell -Kawhi Leonard -Super Bowl 2018 -Super Bowl score -Lari White -Winter Olympics -Super Bowl 2018 -Super Bowl score -State of the Union -Kodak Black -Daryle Singletary -Bitcoin Price -Wilder Penfield -Fredo Santana -Paula Modersohn-Becker -Julie Ertz -Kim Kardashian -Virginia Woolf -Carter G. Woodson -Paula Modersohn-Becker -Virginia Woolf -Paula Modersohn-Becker -Winter Olympics -Patriots -UFC 220 -Carter G. Woodson -Elizabeth Blackwell -Utah Jazz -Super Bowl 2018 -Elizabeth Blackwell -Elizabeth Blackwell -Super Bowl 2018 -Oar Olympics -Caroline Wozniacki -What Time Is The Super Bowl -SpaceX -Carter G. Woodson -This Is Us -Royal Rumble 2018 -Evgenia Medvedeva -Patriots -SAG Awards 2018 -Shibutani -Reg E Cathey -Winter Olympics -Wilder Penfield -Patriots -Florida shooting -Carter G. Woodson -John Mahoney -Patriots -Government Shutdown -Bitcoin Price -Trump State of the Union -Patriots -Kylie Jenner -Super blue blood Moon -Olive Garden -What Time Is The Super Bowl -Patriots -Grammys 2018 -Vikings Vs Eagles -Memo -Sergei Eisenstein -Daryle Singletary -Larry Nassar -Oscar Nominations 2018 -Larry Nassar -Florida shooting -Chicago Weather -Wilder Penfield -Edwin Jackson -Happy Valentines Day -Pro Bowl 2018 -Chipper Jones -Memo -Wilder Penfield -Vikings Vs Eagles -Robert Wagner -Florida shooting -United States Of America Winter Olympics -Edwin Jackson -Natalie Portman -calculator -Carter G. Woodson -SpaceX -Kentucky shooting -Elizabeth Blackwell -Grammys 2018 -Grammys 2018 -Sergei Eisenstein -Tiger Woods -Joe Kennedy -Sergei Eisenstein -Altered Carbon -Robert Mueller -Sergei Eisenstein -Isaiah Thomas -Conor McGregor -Terrell Owens -Jennifer Aniston -Solo Trailer -Bitcoin Price -Virginia Woolf -Kylie Jenner -Patriots -Mardi Gras 2018 -Paula Modersohn-Becker -Carter G. Woodson -Government shutdown -Sergei Eisenstein -Wilder Penfield -Mcdonald's -Carter G. Woodson -Virginia Woolf -Korea -Lindsey Vonn -Super Bowl score -Elizabeth Blackwell -Super Bowl score -Winter Olympics -NBA Trades -Super Bowl 2018 -Super Bowl score -Kylie Jenner -Stormi -Black Lightning -Virginia Woolf -Carter G. Woodson -Florida shooting -Patriots -Shaun White -Tom Brady daughter -Eli Manning -Wilder Penfield -Elizabeth Blackwell -Elizabeth Blackwell -John Mahoney -Dow Jones -Winter Olympics -Justin Timberlake -Government Shutdown -Carter G. Woodson -Justin Timberlake -Sergei Eisenstein -Florida shooting -Edwin Jackson -Winter Olympics -Wilder Penfield -Paula Modersohn-Becker -Super Bowl score -Paula Modersohn-Becker -Sergei Eisenstein -Oscar Nominations 2018 -Florida shooting -Mark Salling -Super Bowl 2018 -Lonzo Ball -NFC Championship Game 2018 -What Time Is The Super Bowl -Chris Paul -CNN -Wilder Penfield -Alex Smith -Super Bowl score -NBA Trades -Cavs -Blake Griffin -Winter Olympics -Woody Allen -Lorenzo Cain -Super Bowl 2018 -Carter G. Woodson -Cavs -Chipper Jones -New England Patriots owner -Wilder Penfield -Super Bowl 2018 -Justin Timberlake -Tonga -Wing Bowl 2018 -Hope Hicks -Vikings Vs Eagles -Chloe Kim -Government Shutdown -Google Drive -Costco Wholesale -Robert Wagner -Paula Modersohn-Becker -Den of Thieves -Carter G. Woodson -Paula Modersohn-Becker -IXL -Super Bowl score -Blue Moon -Black Panther -Government Shutdown -Super Bowl Commercials -Kesha Grammy -Government shutdown -Super Bowl 2018 -Paula Modersohn-Becker -Paula Modersohn-Becker -Bitcoin Price -Paula Modersohn-Becker -Fredo Santana -Government Shutdown -Bitcoin Price -Louise Linton -Blake Griffin -Blake Griffin -Paula Modersohn-Becker -Valentines Day -Tesla in space -Super blue blood Moon -Sergei Eisenstein -Elizabeth Blackwell -Wilder Penfield -Kentucky shooting -Sharon Stone -Kylie Jenner -The Home Depot -Florida shooting -Larry Nassar -Paula Modersohn-Becker -Rob Porter -Wilder Penfield -Royal Rumble 2018 -Patti LuPone -Den of Thieves -Patriots -Virginia Woolf -Alex Smith -Super Bowl 2018 -Winter Olympics -Elizabeth Blackwell -Peter Rabbit -Chicago West -Super Bowl score -Cloverfield Paradox -Forever My Girl -Winter Olympics -Super Bowl 2018 -Ronaldinho -Rob Delaney -Red Gerard -NBA Trades -Meteor -Cavs -Sergei Eisenstein -Peter Rabbit -Virginia Woolf -Winter Olympics -Carter G. Woodson -Florida shooting -Blake Griffin -Chinese New Year 2018 -Carter G. Woodson -Happy Valentines Day -Solo Trailer -Valentines Day Images -Nancy Pelosi -Black Panther -What Time Is The Super Bowl -CNN -Sergei Eisenstein -Isaiah Thomas -Super Bowl 2018 -Patriots -Roger Federer -earthquake today -Forever My Girl -Shaun White -Wilder Penfield -Super blue blood Moon -Patriots -Get Out -The 15:17 to Paris -Dwyane Wade -Elizabeth Blackwell -Carter G. Woodson -Olivia Munn -Shaun White -Florida shooting -Virginia Woolf -Larry Nassar -Patriots -Super Bowl 2018 -Danielle Herrington -Bitcoin Price -Kylie Jenner Baby Girl -Bitcoin Price -CNN -Kylie Jenner -Super Bowl 2018 -Winter Olympics -Patriots -Johnny Weir -Women's March 2018 -Sergei Eisenstein -Sandy Hook -Meteor -Virginia Woolf -Quincy Jones -Aaliyah -Rose McGowan -United States Of America Winter Olympics -Florida shooting -Dow Jones -Wilder Penfield -Did the Groundhog See His Shadow -Jane Fonda -Government Shutdown -Super Bowl 2018 -Wilder Penfield -Valentines Day -SpaceX -Mark Salling -SpaceX -Joe Kennedy -Super Bowl score -Wilder Penfield -Lindsey Vonn -Elizabeth Blackwell -Patriots -Princess Eugenie -Patriots -Bill Paxton -Grammys 2018 -Wilder Penfield -Deadpool 2 -Kylie Jenner -Patriots -The Home Depot -Grammys 2018 -Tesla in space -Carter G. Woodson -Jason Momoa -Paula Modersohn-Becker -Rasual Butler -Government shutdown 2018 -Elton John -Super Bowl score -Rachel Brand -Carter G. Woodson -Kylie Jenner -Wilder Penfield -Celebrity Big Brother cast -Sergei Eisenstein -Dow Jones -Paula Modersohn-Becker -Virginia Woolf -Mikaela Shiffrin -State of the Union -Kim Cattrall -Elizabeth Blackwell -Patriots -Friends movie -XFL -Sergei Eisenstein -Larry Nassar -What Time Is The Super Bowl -Valentines Day -Trump State of the Union -Super Bowl 2018 -Wilder Penfield -Elizabeth Blackwell -Winter Olympics -Patriots -Vince McMahon -Winter Olympics -Winter Olympics -Winter Olympics -Cloverfield Paradox -John Mahoney -Sergei Eisenstein -NFC Championship Game 2018 -Lonzo Ball -Larry Nassar -Winter Olympics -Justin Timberlake -Wilder Penfield -Larry Nassar -Trump State of the Union -Nikki Haley -Valentines Day -Virginia Woolf -Winter Olympics -Real Madrid -Justin Timberlake -Pro Bowl 2018 -Duke basketball -Elizabeth Blackwell -Grammys 2018 -Virginia Woolf -Tyler Hilinski -Duke basketball -Super Bowl 2018 -Sergei Eisenstein -Rodney Hood -Government Shutdown -Anna Kournikova -Elizabeth Blackwell -Pro Bowl 2018 -Government Shutdown -Paula Modersohn-Becker -Winter Olympics -Government Shutdown -Carter G. Woodson -Will Ferrell -Happy Valentines Day -Government Shutdown -Government Shutdown -Elizabeth Blackwell -State of the Union -Carrie Underwood -Chicago West -Black Panther -Olympics 2018 -Mattie Larson -Daryle Singletary -Betty White -Government Shutdown -Super Bowl score -Larry Nassar -Virginia Woolf -Johnny Weir -Blue Moon -Westminster Dog Show 2018 -Paula Modersohn-Becker -The 15:17 to Paris -Paula Modersohn-Becker -Grammys 2018 -UFC 221 -Super Bowl score -Super Bowl score -Larry Nassar -Mark Salling -Elizabeth Blackwell -Virginia Woolf -Winter Olympics -Quincy Jones -Elizabeth Blackwell -CNN -Florida shooting -Rasual Butler -Super Bowl score -Release The Memo -Alex Smith -Royal Rumble 2018 -Cloverfield Paradox -Super Bowl 2018 -Virginia Woolf -UFC 220 -Jo Jo White -Alessia Cara -Justin Timberlake -Paula Modersohn-Becker -Carter G. Woodson -Kim Kardashian -Florida shooting -Elizabeth Blackwell -Super Bowl score -Virginia Woolf -Stock Market Crash Today -Trump State of the Union -Fredo Santana -Jamie Anderson -Paula Modersohn-Becker -Patriots -Red Gerard -Larry Nassar -Andrew Cunanan -What Time Is The Super Bowl -Grammys 2018 -Patriots -Government Shutdown -Sergei Eisenstein -Rachel Brand -Patriots -Adam Rippon -Neil Diamond -Maze Runner: The Death Cure -Paula Modersohn-Becker -Florida shooting -Winter Olympics -Dow Jones -Super Blue Blood Moon -Friends movie -Sergei Eisenstein -Shaun White -CNN -Wilder Penfield -Wilder Penfield -Government shutdown 2018 -Cavs -What Time Is The Super Bowl -Johnny Weir -Elizabeth Blackwell -State of the Union -Government Shutdown 2018 -Wilder Penfield -Kentucky shooting -Carrie Underwood -Waco -Kevin Love -Dow Jones -Carter G. Woodson -Super blue blood Moon -Google docs -Oscar Nominations 2018 -Super Bowl 2018 -Kim Kardashian -Childish Gambino -Carter G. Woodson -Super Bowl score -SpaceX -Justin Timberlake -UFC 220 -Aaron Fies -Royal Rumble 2018 -Alex Smith -Winter Olympics -Patriots -Patriots -Groundhog Day 2018 -Johnny Weir -Florida shooting -Adam Rippon -Justin Timberlake -Halsey -Justin Timberlake -Florida shooting -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl score -Derrick Rose -SpaceX -Super Bowl score -Wilder Penfield -Super Bowl score -Altered Carbon -Kim Kardashian -What Time Is The Super Bowl -Quincy Jones -Nathan Chen -Cavs -Nba All Star Draft -Alaska earthquake -SpaceX -Chicago Weather -Super blue blood Moon -Outback Steakhouse -Sergei Eisenstein -Super blue blood Moon -Paula Modersohn-Becker -Florida shooting -Super Bowl score -Childish Gambino -Grammys 2018 -State of the Union -Justin Timberlake -Mcdonald's -Kylie Jenner Baby Girl -Jessica Chastain -Government shutdown 2018 -Elizabeth Blackwell -Wilder Penfield -XIV -Scandal -NBA Trades -Elizabeth Blackwell -Den of Thieves -Patty Hearst -SpaceX -NASCAR -Winter Olympics -Virginia Woolf -Luke Wilson -Super Bowl score -Super Bowl score -Wilder Penfield -Bill Paxton -Groundhog Day 2018 -Patriots -Josh McDaniels -Jennifer Aniston -NASA -SpaceX -Wilder Penfield -Omarosa -Google Drive -Winter Olympics -Florida shooting -Kim Kardashian -Nancy Pelosi -Amy Schumer -Virginia Woolf -Virginia Woolf -Sergei Eisenstein -Sergei Eisenstein -Elizabeth Blackwell -Kim Kardashian -The Resident -Phantom Thread -CNN -Carter G. Woodson -NBA Trades -Nadal -What Time Is The Super Bowl -MS13 -Sergei Eisenstein -Larry Nassar -Den of Thieves -Sergei Eisenstein -Kylie Jenner -Virginia Woolf -Paula Modersohn-Becker -Kylie Jenner -Justin Timberlake -Larry Nassar -Carter G. Woodson -Oscar Nominations 2018 -Peter Rabbit -Paula Modersohn-Becker -Mark Salling -Dow Jones -Tesla in space -Carter G. Woodson -This Is Us -NFL Honors -State of the Union -Kodak Black -Rasual Butler -Elizabeth Blackwell -Elon Musk -Joe Kennedy -Quincy Jones -Winter Olympics -Enzo Amore -Super Bowl score -Sergei Eisenstein -Laura Ingraham -Mark Salling -Paula Modersohn-Becker -Justin Timberlake -Sergei Eisenstein -Mikaela Shiffrin -Elizabeth Blackwell -Sal Castro Middle School -Carter G. Woodson -Dow Jones -Wilder Penfield -Grammys 2018 -State of the Union -State of the Union -Winter Olympics -Steve Wynn -Elizabeth Blackwell -Vanessa Trump -What Time Is The Super Bowl -Elizabeth Blackwell -Florida shooting -Vikings vs Eagles -Super Bowl 2018 -State of the Union -Super Bowl 2018 -This is Us -Roger Federer -Black Panther -Florida shooting -Obama portrait -Paula Modersohn-Becker -Justin Timberlake -SpaceX -Florida shooting -Groundhog Day 2018 -Elton John -Black Panther -Florida shooting -Kylie Jenner -AR-15 -Sergei Eisenstein -Black Panther -Eli Manning -Portia de Rossi -SpaceX -Black Panther -Dolly Parton -Florida shooting -Paula Modersohn-Becker -NBA Trades -Memo -School Closings -Super Bowl score -New England Patriots owner -calculator -Frederick Douglass -Eli Manning -Derrick Rose -UFC 220 -Greg Monroe -Trump State of the Union -Dwyane Wade -Winter Olympics -Sergei Eisenstein -Happy Valentines Day -Virginia Woolf -Elizabeth Blackwell -Alexander Polinsky -Scott Baio -Winter Olympics -Isaiah Thomas -School closings -Winter Olympics -Shaun White -Dow Jones -Elizabeth Blackwell -Patriots -Did the Groundhog See His Shadow -school closings -SAG Awards 2018 -Paula Modersohn-Becker -Kylie Jenner -Elton John -Peter Rabbit -Carter G. Woodson -Sting -Mueller -Super Bowl 2018 -Patriots -Wilder Penfield -Florida shooting -Super Bowl score -JUUL -Winter Olympics -Paula Modersohn-Becker -Virginia Woolf -Groundhog Day 2018 -Super Bowl score -Den of Thieves -Government shutdown -What Time Is The Super Bowl -Justin Timberlake -Florida shooting -Paula Modersohn-Becker -NBA Trades -Red Gerard -Lena Zawaideh -Earthquake Today -Kylie Jenner -Government Shutdown Meaning -Virginia Woolf -Women's March 2018 -Kim Kardashian -Wilder Penfield -Tennys Sandgren -Super Bowl score -Virginia Woolf -Mark Salling -Kim Kardashian -UFC 220 -What Time Is The Super Bowl -Steve Wynn -Shibutani -Super Bowl score -Patti LuPone -Oscar Nominations 2018 -Super Bowl 2018 -New California -Aaron Fies -Walter Payton -Shiffrin -Kim Kardashian -State of the Union -Lari White -Virginia Woolf -Quincy Jones -Wilder Penfield -Chris Stapleton -Oscar Nominations 2018 -H&r Block -Wilder Penfield -Carter G. Woodson -Patriots -Patriots -Grammys 2018 -Kylie Jenner -Wilder Penfield -Virginia Woolf -Winter Olympics -Carter G. Woodson -School Closings -Sergei Eisenstein -Larry Nassar -Virginia Woolf -Super Bowl score -Dow Jones -Maze Runner: The Death Cure -Tom Brady -Chinese New Year 2018 -Duke Basketball -Kylie Jenner -Carter G. Woodson -Dow Jones -Groundhog Day 2018 -Celtics -Alaska earthquake -Super Bowl 2018 -Winter Olympics -Super Bowl score -Tom Petty -Super Bowl Winners -Elizabeth Blackwell -Isaiah Thomas -Russell Wilson -Virginia Woolf -Jessica Chastain -Wilder Penfield -Super Bowl 2018 -Amy Schumer -Rasual Butler -Olympic medal count -Government Shutdown -Meteor -JUUL -Johnny Weir -Justin Timberlake -earthquake today -Kesha Grammy -Oscar Nominations 2018 -Rodney Hood -Chicago West -New England Patriots owner -Government Shutdown -Super Bowl 2018 -Carter G. Woodson -Super Bowl score -Justin Timberlake -Alessia Cara -Winter Olympics -Sea Of Thieves -Florida shooting -Virginia Woolf -Winter Olympics -This Is Us -Super Bowl score -Virginia Woolf -Halsey -Scott Baio -Grammys 2018 -Black Panther -Carter G. Woodson -Larry Nassar -Natalie Portman -Elizabeth Blackwell -Sergei Eisenstein -Super Bowl score -Bitcoin Price -government shutdown -Black Panther -Altered Carbon -calculator -Super Bowl 2018 -Elon Musk -Winter Olympics -Patriots -Bitcoin Price -Virginia Woolf -Patriots -Chris Mazdzer -Winter Olympics -Wilder Penfield -Florida shooting -Mark Salling -Winter Olympics -Joe Kennedy -Paula Modersohn-Becker -Olympic Medal Count -Super Bowl score -Aaron Fies -Larry Nassar -Winter Olympics -Joel Taylor -Winter Olympics -Zion Williamson -Virginia Woolf -Detroit Lions -SAG Awards 2018 -Stan Lee -Elizabeth Blackwell -Elizabeth Blackwell -SpaceX -Super Blue Blood Moon -Super Bowl score -Valentines Day -Fredo Santana -Alex Reimer -Government Shutdown -Tom Petty -Patriots -Sal Castro Middle School -Olympic medal count -Mardi Gras 2018 -Senior Bowl -State of the Union -Winter Olympics -Florida shooting -Alaska earthquake -Kylie Jenner -Sergei Eisenstein -Paula Modersohn-Becker -Wilder Penfield -Florida shooting -NBC Sports -Carter G. Woodson -Mark Salling -Ursula Le Guin -Winter Olympics -Groundhog Day 2018 -Kylie Jenner -calculator -Paula Modersohn-Becker -Joy Villa -Virginia Woolf -Ar 15 -Lorenzo Cain -Obama portrait -Women's March 2018 -Grammys 2018 -Wilder Penfield -Super Blue Blood Moon -pissant -Kentucky shooting -calculator -Government Shutdown 2018 -State of the Union -SpaceX -Super Bowl 2018 -Langston Hughes -Reg E Cathey -Release The Memo -Daryle Singletary -Elizabeth Blackwell -What Time Is The Super Bowl -Edwin Jackson -Blue Moon -Super Bowl 2018 -Florida shooting -Kylie Jenner -Winter Olympics -Oscar Nominations 2018 -Patriots -Justin Timberlake -Berkshire Hathaway -Winter Olympics -Google Drive -Larry Nassar -Tiger Woods -Vince McMahon -Larry Nassar -Luke Wilson -Wilder Penfield -earthquake today -Carter G. Woodson -Grammys 2018 -calculator -Bob Dole -Winter Olympics -Sergei Eisenstein -Costco Wholesale -Cherry Seaborn -SpaceX -Winter Olympics -Phantom Thread -Justin Timberlake -Blue Moon -Valentines Day Cards -Lady Bird -Mark Salling -Virginia Woolf -AR-15 -Pro Bowl 2018 -Real Madrid -Patriots -IXL -School closings -Kim Kardashian -Tyler Hilinski -Terrell Owens -Sergei Eisenstein -Carter G. Woodson -Florida shooting -Amy Schumer -Mark Salling -Steve Wynn -Larry Nassar -Jane Fonda -Grammys 2018 -Despacito -Tom Petty -Wilder Penfield -Wilder Penfield -Paula Modersohn-Becker -Zion Williamson -Did the Groundhog See His Shadow -Sergei Eisenstein -Kesha Grammy -Wilder Penfield -Kylie Jenner -Justin Timberlake -Chinese New Year 2018 -SpaceX -Bitcoin Price -Super Bowl score -Patriots -Tammy Duckworth -Carter G. Woodson -Tiger Woods -Daryle Singletary -Bill Belichick -Happy Valentines Day -Paula Modersohn-Becker -Florida shooting -Sergei Eisenstein -Logan Paul -Patriots -Anna Kournikova -Kim Kardashian -Rob Porter -Super Bowl score -Warren Miller -Elizabeth Blackwell -Sergei Eisenstein -NSA -Tiger Woods -Tony Romo -Paula Modersohn-Becker -Paula Modersohn-Becker -Black Lightning -Nathan Chen -Grammys 2018 -Elizabeth Blackwell -Wing Bowl 2018 -PlayStation Network -Vikings Vs Eagles -Paula Modersohn-Becker -Did the Groundhog See His Shadow -Florida shooting -Patriots -Patriots -National Pizza Day -school closings -Elizabeth Blackwell -Super Bowl 2018 -Cloverfield Paradox -Super Bowl score -Virginia Woolf -Virginia Woolf -Carter G. Woodson -Winter Olympics -What Time Is The Super Bowl -Dow Jones -Mavic Air -Paula Modersohn-Becker -Football Playoffs 2018 -February -Super Bowl 2018 -Brynn Cameron -Reg E Cathey -Wilder Penfield -Chief Wahoo -Kylie Jenner -Paula Modersohn-Becker -Fredo Santana -Solo Trailer -Kylie Jenner -Virginia Woolf -Elton John -Florida shooting -Cloverfield Paradox -Vikings vs Eagles -Super Bowl 2018 -Sergei Eisenstein -Wilder Penfield -Fredo Santana -Jason Kelce -Valentines Day Images -Royal Rumble 2018 -Wilder Penfield -Super Bowl score -Mark Salling -Paula Modersohn-Becker -Super Bowl 2018 -Elizabeth Blackwell -Super Bowl score -Jennifer Aniston -Tara Lipinski -Winter Olympics -Jennifer Aniston -Dane Cook -School closings -Government Shutdown Meaning -Nathan Chen -Sergei Eisenstein -Isaiah Thomas -Wilder Penfield -Chloe Kim -Winter Olympics -Super Bowl 2018 -Winter Olympics -Patti LuPone -Blake Griffin -Bitcoin Price -Elizabeth Blackwell -Amazon stock -Wilder Penfield -Virginia Woolf -Paula Modersohn-Becker -Bruno Mars -Carter G. Woodson -Kim Kardashian -Super blue blood Moon -Justin Timberlake -Bill Parcells -Elizabeth Blackwell -Vikings vs Eagles -Steve Mcnair -John Mahoney -Enzo Amore -Wilder Penfield -Sergei Eisenstein -Super Bowl 2018 -Groundhog Day 2018 -Super Bowl score -Elizabeth Blackwell -Elizabeth Blackwell -Chloe Kim Snowboarder -Valentines Day -Elizabeth Blackwell -Super Bowl score -Omarosa -calculator -pissant -school closings -Neil Diamond -Super Bowl 2018 -Brynn Cameron -Winter Olympics -Dow Jones -Alison Brie -Winter Olympics -Super Bowl 2018 -Super blue blood Moon -Oar Olympics -Patriots -What Time Is The Super Bowl -Google docs -Government Shutdown -Super Bowl score -Patriots -Early Man -Google docs -Kim Kardashian -Super Bowl score -Super Bowl score -Elizabeth Blackwell -Virginia Woolf -Pro Bowl 2018 -Super Bowl score -Virginia Woolf -Meteor -Winter Olympics -Dwyane Wade -Wilder Penfield -Florida shooting -Puppy Bowl 2018 -Nikki Haley -Government Shutdown Meaning -SpaceX -Patriots -Carter G. Woodson -Elizabeth Blackwell -Super Bowl 2018 -tsunami -Super Bowl Commercials 2018 -SAG Awards 2018 -Paula Modersohn-Becker -Winter Olympics -Pro Bowl 2018 -Cavs -Tonga -Tom Brady -Black Panther -Happy Valentines Day -Tiger Woods -Winter Olympics -Amtrak -Patriots -Carter G. Woodson -Wilder Penfield -Super Bowl score -Groundhog Day 2018 -Government Shutdown -Jimmy Garoppolo -Kesha -XFL -Virginia Woolf -calculator -Paula Modersohn-Becker -Zion Williamson -Best Superbowl Commercials 2018 -12 Strong -Jamie Anderson -New England Patriots owner -Lee Miglin -Monster Hunter World -Sergei Eisenstein -Tessa Virtue -Sergei Eisenstein -Government Shutdown -Super Bowl 2018 -Sergei Eisenstein -Virginia Woolf -Adam Rippon -SpaceX -Eric Wood -Sergei Eisenstein -Florida shooting -Sergei Eisenstein -Super Bowl score -Paula Modersohn-Becker -Virginia Woolf -Tonga -Lindsey Vonn -What Time Is The Super Bowl -Marlon Brando -New England Patriots owner -Government shutdown 2018 -Carter G. Woodson -Google Drive -Google docs -Justin Timberlake -Wilder Penfield -Meteor -Happy Valentines Day -Sergei Eisenstein -Puppy Bowl 2018 -Sandy Hook -Elizabeth Blackwell -Trump State of the Union -Oar Olympics -Kim Kardashian -Paula Modersohn-Becker -Carter G. Woodson -Patriots -Elizabeth Blackwell -Elizabeth Blackwell -Super Bowl 2018 -Mark Salling -Grammys 2018 -Patriots -Wilder Penfield -12 Strong -Winter Olympics -Virginia Woolf -Super Bowl 2018 -XFL -Elizabeth Blackwell -Winter Olympics -Grammys 2018 -SAG Awards 2018 -Government Shutdown -Grammys 2018 -Florida shooting -State of the Union -This is Us -Sergei Eisenstein -Derrick Rose -Paula Modersohn-Becker -SpaceX -Elizabeth Blackwell -Andrew Cunanan -Happy Valentines Day -Isaiah Thomas -Chicago West -Super Bowl 2018 -Conor McGregor -Paula Modersohn-Becker -Steve Mcnair -Elizabeth Blackwell -Taiwan Earthquake Today -Winter Olympics -Super Bowl score -SpaceX -Florida shooting -Carter G. Woodson -School Closings -Carter G. Woodson -Hope Hicks -Oscar Nominations 2018 -Wilder Penfield -Paula Modersohn-Becker -Google docs -Patriots -Sergei Eisenstein -Shaun White -Steve Mcnair -Super blue blood Moon -Patriots -Patriots -Best Superbowl Commercials 2018 -Winter Olympics -Sergei Eisenstein -Government Shutdown -Sergei Eisenstein -Omarosa -Elizabeth Blackwell -Kratom -Super Bowl 2018 -Rose McGowan -Kentucky shooting -Sergei Eisenstein -Happy Valentines Day -Florida shooting -Phantom Thread -Government Shutdown -What Time Is The Super Bowl -Virginia Woolf -Terrell Owens -Black Panther -Wilder Penfield -Elizabeth Blackwell -Government shutdown -Grammys 2018 -Mikaela Shiffrin -Paula Modersohn-Becker -Mike Fisher -Mardi Gras 2018 -What Time Is The Super Bowl -Paula Modersohn-Becker -UFC 220 -Grammys 2018 -Wilder Penfield -Mark Salling -Carter G. Woodson -Elizabeth Blackwell -Tara Lipinski -Super Bowl score -Carter G. Woodson -State of the Union -Dwyane Wade -Olympic Medal Count -Danielle Herrington -Juventus -Oscar Nominations 2018 -Virginia Woolf -Kylie Jenner -Peter Rabbit -Patriots -Justin Timberlake -Snake -New California -AR-15 -Winter Olympics -Ash Wednesday -Wilder Penfield -Happy Valentines Day -Halsey -Stan Lee -Super Bowl score -Winter Olympics -Bitcoin Price -SpaceX -Carter G. Woodson -Bitcoin Price -Chloe Kim -Super Bowl score -Super Bowl 2018 -Valentines Day -Super Bowl score -Winter Olympics -Katie Couric -Justin Timberlake -Patriots -Paula Modersohn-Becker -Super Bowl 2018 -Chris Fischer -Trump State of the Union -Shaun White -Super Bowl score -Paula Modersohn-Becker -Tiger Woods -Carter G. Woodson -Carter G. Woodson -Happy Valentines Day -Den of Thieves -Duke Basketball -Groundhog Day 2018 -Walter Payton -Super Bowl 2018 -National Pizza Day -Florida shooting -Peter Rabbit -Kylie Jenner -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl 2018 -Morgan Freeman -What Time Is The Super Bowl -Virginia Woolf -Did the Groundhog See His Shadow -Royal Rumble 2018 -What Time Is The Super Bowl -Alex Smith -Terrell Owens -Carter G. Woodson -Taiwan -Fredo Santana -Winter Olympics -John Mahoney -AR-15 -Ash Wednesday -NBA Trades -Ash Wednesday -Carter G. Woodson -Apolo Ohno -Paula Modersohn-Becker -Stephanie Katelnikoff -Yoel Romero -Justin Timberlake -Maze Runner: The Death Cure -Carter G. Woodson -Pro Bowl 2018 -Carter G. Woodson -Wilder Penfield -Oscar Nominations 2018 -Super Bowl 2018 halftime show -Sergei Eisenstein -Wilder Penfield -Memo -Cloverfield Paradox -Super Bowl 2018 -Patriots -Wilder Penfield -Rose McGowan -Mark Salling -Kylie Jenner Baby Girl -Mikaela Shiffrin -Carter G. Woodson -Winter Olympics -New England Patriots owner -DeMarcus Cousins -Larry Nassar -Government Shutdown -Paula Modersohn-Becker -Government Shutdown -New England Patriots owner -Government Shutdown -Valentines Day -SAG Awards 2018 -Groundhog Day 2018 -Tyler Hilinski -Sergei Eisenstein -Paula Modersohn-Becker -Dow Jones -Florida shooting -Kesha Grammy -Elton John -What Time Is The Super Bowl -Eli Manning -Blake Griffin -Sergei Eisenstein -Kentucky shooting -Happy Valentines Day -Vikings Vs Eagles -Patriots -Mark Salling -Happy Valentines Day -Yu Darvish -Super blue blood Moon -Super Bowl 2018 -Virginia Woolf -Florida shooting -Sergei Eisenstein -Paula Modersohn-Becker -Carter G. Woodson -Manchester United -Super Bowl score -Paula Modersohn-Becker -Oscar Nominations 2018 -Government Shutdown -Virginia Woolf -Justin Timberlake -Super Bowl Commercials 2018 -Mitt Romney -Kylie Jenner -Paula Modersohn-Becker -Carter G. Woodson -Super Bowl score -Carter G. Woodson -Wilder Penfield -Super Bowl score -Bitcoin Price -Patriots -Johnny Weir -Super Bowl score -Virginia Woolf -Super Bowl score -Carter G. Woodson -Andrew Cunanan -Super Bowl 2018 -Joe Kennedy -Lunar eclipse -Google docs -Duke basketball -Wilder Penfield -Patriots -Elizabeth Blackwell -Sergei Eisenstein -Edwin Jackson -Jeremy London -Black Panther -Paula Modersohn-Becker -Super Bowl 2018 -Mavic Air -Larry Nassar -Winter Olympics -Bitcoin Price -Virginia Woolf -Virginia Woolf -Fredo Santana -What Time Is The Super Bowl -Ursula Le Guin -Virginia Woolf -State of the Union -New California -School Closings -Jennifer Aniston -Groundhog Day 2018 -Winter Olympics -Larry Nassar -Florida shooting -Will Ferrell -Government shutdown 2018 -Paula Modersohn-Becker -Justin Timberlake -Super Bowl 2018 -Winter Olympics -Super Bowl score -Deadpool 2 -Google Drive -Caitlin McHugh -VIX -Patriots -Chinese New Year 2018 -Sergei Eisenstein -Elizabeth Blackwell -Sergei Eisenstein -Elizabeth Blackwell -Adam Rippon -New California -Derrick Rose -Frank Reich -National Pizza Day -Carter G. Woodson -Sergei Eisenstein -Jemele Hill -Super Bowl 2018 -Scott Baio -Caitlin McHugh -Kratom -Sergei Eisenstein -Super Bowl 2018 -Chloe Kim -Florida shooting -Winter Olympics -Isaiah Canaan -Jessica Chastain -Florida shooting -Wilder Penfield -Elizabeth Blackwell -XFL -Fredo Santana -Super Bowl score -Patriots -What Time Is The Super Bowl -Frank Reich -This is Us -Grammys 2018 -Homeland -Government Shutdown 2018 -Rodney Hood -Mike Vrabel -Shibutani -Blue Moon -SpaceX -Wilder Penfield -Quincy Jones -Mexico earthquake -Carter G. Woodson -Winchester -What Time Is The Super Bowl -Government Shutdown Meaning -Rasual Butler -Justin Timberlake -Childish Gambino -Grammys 2018 -Bitcoin Price -Virginia Woolf -Justin Timberlake -Carter G. Woodson -Happy Valentines Day -Earthquake -Super Bowl score -Stan Lee -Valentines Day -Mikaela Shiffrin -Justin Timberlake -Patriots -Mark Salling -Kelly Clark -Blake Griffin Trade -Shiffrin -Daryle Singletary -Lunar eclipse -Carter G. Woodson -Florida shooting -Florida shooting -Florida shooting -What Time Is The Super Bowl -Florida shooting -Peter Rabbit -Google docs -Sergei Eisenstein -Alaska earthquake -State of the Union -Government Shutdown -Mattie Larson -Paula Modersohn-Becker -Super Bowl 2018 -Chris Mazdzer -Kylie Jenner -Early Man -Morgan Freeman -Virginia Woolf -Virginia Woolf -Duke basketball -Justin Timberlake -Amazon Stock -Super Bowl 2018 -Malcom Butler -Sergei Eisenstein -Elizabeth Blackwell -Carter G. Woodson -Winter Olympics -Paula Modersohn-Becker -Mikaela Shiffrin -Sea Of Thieves -Carter G. Woodson -Patriots -Carter G. Woodson -Terrell Owens -Virginia Woolf -What Time Is The Super Bowl -Government Shutdown -Oscar Nominations 2018 -Justin Timberlake -Paula Modersohn-Becker -Jennifer Aniston -Carter G. Woodson -Patriots -Altered Carbon -Adam Hicks -Justin Timberlake -Johnny Weir -Sergei Eisenstein -Elizabeth Blackwell -Sergei Eisenstein -Dwyane Wade -Paula Modersohn-Becker -XFL -JUUL -Pink -Super Bowl score -Chinese New Year 2018 -Columbine Shooting -Justin Timberlake -Super Bowl 2018 -Kim Kardashian -Paula Modersohn-Becker -CNN -Pro Bowl 2018 -Elizabeth Blackwell -Super Bowl score -Elizabeth Blackwell -Wilder Penfield -Patriots -What Time Is The Super Bowl -Winter Olympics -Alex Smith -Winter Olympics -Mardi Gras 2018 -Mikaela Shiffrin -Wilder Penfield -Florida shooting -Sergei Eisenstein -Carter G. Woodson -Kim Kardashian -Elton John -Virginia Woolf -Justin Timberlake -Bitcoin Price -Kim Kardashian -What Time Is The Super Bowl -Justin Timberlake -Sandy Hook -Caitlin McHugh -State of the Union -Super Bowl score -Government Shutdown -Sergei Eisenstein -Super Bowl 2018 -Carter G. Woodson -Patriots -Wilder Penfield -Paula Modersohn-Becker -Winter Olympics -Super Bowl 2018 -Kylie Jenner -Justin Timberlake -Elton John -Super Bowl 2018 -James Harden -Groundhog Day 2018 -Paula Modersohn-Becker -Super Bowl score -SpaceX -Naya Rivera -Adam Rippon -Super blue blood Moon -Government Shutdown Meaning -JUUL -Virginia Woolf -Chris Fischer -Robert Mueller -United States Of America Winter Olympics -School Closings -Winter Olympics -Kylie Jenner -BitConnect -Winter Olympics -Cavs -XIV -NFC Championship Game 2018 -Larry Nassar -Grammys 2018 -Government Shutdown -Winter Olympics -What Time Is The Super Bowl -Black Panther -Carter G. Woodson -Happy Valentines Day -Amy Schumer -Wilder Penfield -Lena Zawaideh -DeMarcus Cousins -Sergei Eisenstein -Olympic medal count -Steve Wynn -Olympic Medal Count -Did the Groundhog See His Shadow -Super Bowl 2018 -Paula Modersohn-Becker -Carter G. Woodson -Jennifer Aniston -Derrick Rose -Super Bowl score -Carter G. Woodson -Pro Bowl 2018 -Happy Valentines Day -Google docs -What Time Is The Super Bowl -Grammys 2018 -Patriots -Elizabeth Blackwell -Super blue blood Moon -Valentines Day -Rihanna -Grammys 2018 -Kesha Grammy -Memo -Lunar eclipse -Phantom Thread -Houston Rockets -Wilder Penfield -Kylie Jenner -Groundhog Day 2018 -Trey Gowdy -Alessia Cara -This Is Us -Patriots -Government shutdown -Florida shooting -Florida shooting -Trump Hair -Carter G. Woodson -Elizabeth Blackwell -SpaceX -Carter G. Woodson -Manchester United -Mardi Gras 2018 -Happy Valentines Day -school closings -Wilder Penfield -Post Malone -Kim Kardashian -Natalie Portman -Wilder Penfield -Oscar Nominations 2018 -Walter Payton -Taiwan Earthquake Today -happy new year in Chinese -SAG Awards 2018 -Cloverfield Paradox -Florida shooting -Cherry Seaborn -Patriots -Post Malone -SpaceX -Patriots -Robert Wagner -Grammys 2018 -Dow Jones -Robert Wagner -What Time Is The Super Bowl -Carter G. Woodson -What Time Is The Super Bowl -Carter G. Woodson -Royal Rumble 2018 -State of the Union -Elton John -Carter G. Woodson -Patriots -Super Bowl 2018 -UFC 220 -Shaun White -Florida shooting -Carter G. Woodson -Cavs -Memo -Super Bowl 2018 -Elizabeth Blackwell -Rasual Butler -Paula Modersohn-Becker -Jeff Flake -LeBron James -Mark Salling -Patriots -What Time Is The Super Bowl -Virginia Woolf -Super Blue Blood Moon -SZA -Super Bowl 2018 -earthquake today -SpaceX -Virginia Woolf -Sergei Eisenstein -LeBron James -Virginia Woolf -fake news awards -New England Patriots owner -Sergei Eisenstein -Super Bowl score -Kim Kardashian -Kylie Jenner -Alex Smith -Elizabeth Blackwell -Winter Olympics -Justin Timberlake -Paula Modersohn-Becker -Super Bowl 2018 -Virginia Woolf -Paula Modersohn-Becker -Cavs -Virginia Woolf -Super blue blood Moon -Kentucky shooting -Jen Selter -Olivia Culpo -Paula Modersohn-Becker -Ash Wednesday -Virginia Woolf -Winter Olympics -School closings -Virginia Woolf -Virginia Woolf -Mark Salling -Sergei Eisenstein -Yu Darvish -Wilder Penfield -Sergei Eisenstein -Patriots -Joe Kennedy -SpaceX -Zion Williamson -Carter G. Woodson -Larry Nassar -earthquake -Rob Porter -Cavs -national signing day 2018 -Kylie Jenner Baby Girl -Super Bowl 2018 -Dwyane Wade -Google Classroom -Florida shooting -Virginia Woolf -Carter G. Woodson -Carter G. Woodson -Pro Bowl 2018 -Royal Rumble 2018 -Sergei Eisenstein -Government shutdown -Sergei Eisenstein -Grammys 2018 -Florida shooting -Grammys 2018 -Florida shooting -Yu Darvish -Edwin Jackson -Lari White -Frederick Douglass -Super blue blood Moon -Super Bowl 2018 -Sergei Eisenstein -Elizabeth Blackwell -Dragon Ball Super -Patriots -Super blue blood Moon -Chipper Jones -Winter Olympics -Pro Bowl 2018 -NBA Trades -Wilder Penfield -Royal Rumble 2018 -Super Bowl 2018 -Trey Gowdy -Virginia Woolf -stock market -Carter G. Woodson -What Time Is The Super Bowl -Government Shutdown -Carter G. Woodson -Super Bowl 2018 -SpaceX -Black Panther -NBA Trades -This is Us -Carter G. Woodson -Florida shooting -Florida shooting -Steve Wynn -NBA Trades -This Is Us -Wilder Penfield -Kentucky shooting -Carter G. Woodson -Isaiah Thomas -Super Bowl 2018 -Virginia Woolf -Shaun White -Groundhog Day 2018 -SpaceX -Virginia Woolf -Sergei Eisenstein -Paula Modersohn-Becker -Blake Griffin Trade -Super Bowl score -Patriots -Lonzo Ball -Carter G. Woodson -Tessa Virtue -Elizabeth Blackwell -Florida shooting -Patriots -Wilder Penfield -NHL All Star Game -Alex Smith -Wilder Penfield -Groundhog Day 2018 -Mark Salling -Dow Jones -Bernie Sanders -Super Bowl score -Elizabeth Blackwell -Elizabeth Blackwell -Wilder Penfield -Government Shutdown -Super Bowl 2018 -What Time Is The Super Bowl -Snap Stock -Justin Timberlake -Sergei Eisenstein -Florida shooting -Quincy Jones -Elizabeth Blackwell -Larry Nassar -What Time Is The Super Bowl -Kylie Jenner -Paula Modersohn-Becker -Virginia Woolf -stock market -Carter G. Woodson -Winter Olympics -Elizabeth Blackwell -Super Bowl score -Happy Valentines Day -Did the Groundhog See His Shadow -Justin Timberlake -State of the Union -Super Bowl score -The 15:17 to Paris -Carter G. Woodson -Carter G. Woodson -Super Bowl score -Megan Barry -Adam Rippon -Justin Timberlake -Trump State of the Union -Caitlin McHugh -What Time Is The Super Bowl -school closings -Post Malone -Altered Carbon -Government shutdown -Paula Modersohn-Becker -Sergei Eisenstein -Paula Modersohn-Becker -XFL -Doomsday Clock -Vikings Vs Eagles -Super Bowl score -Super Bowl score -Happy Valentines Day -Paula Modersohn-Becker -Portia de Rossi -Winter Olympics -Mike Vrabel -Memo -Jemele Hill -Tessa Virtue -Greg Monroe -Memo -Alessia Cara -Bitcoin Price -Jason Kelce -Apolo Ohno -Melania Trump -Kylie Jenner -Government Shutdown Meaning -Kylie Jenner -school closings -Wilder Penfield -Winter Olympics -Vikings Vs Eagles -Vanessa Trump -Wilder Penfield -What Time Is The Super Bowl -Wilder Penfield -Florida shooting -Andrew Cunanan -Cavs -Mark Salling -Super blue blood Moon -Government Shutdown -Paula Modersohn-Becker -What Time Is The Super Bowl -Carter G. Woodson -Florida shooting -Kesha Grammy -Elizabeth Blackwell -Kylie Jenner Baby Girl -Andrew Cunanan -Paula Modersohn-Becker -Chicago West -Carter G. Woodson -Oscar Nominations 2018 -Paula Modersohn-Becker -Sergei Eisenstein -Alex Smith -Dow Jones -Virginia Woolf -Elizabeth Blackwell -Elizabeth Blackwell -Paula Modersohn-Becker -Justin Timberlake -Florida shooting -Government shutdown 2018 -Cavs -Winter Olympics -Justin Timberlake -Groundhog Day 2018 -Larry Nassar -Kentucky shooting -SpaceX -Government Shutdown -Kesha Grammy -Wilder Penfield -Grammys 2018 -New England Patriots owner -Wilder Penfield -Winter Olympics -Super Bowl Winners -Patriots -What Time Is The Super Bowl -Florida shooting -Blood Moon -Johnny Weir -Kesha Grammy -Government Shutdown Meaning -Paula Modersohn-Becker -Jessica Chastain -Sting -Winter Olympics -Carter G. Woodson -Carter G. Woodson -Florida shooting -Vince McMahon -Atlanta Weather -Carter G. Woodson -Super Bowl 2018 -Super Bowl 2018 -Groundhog Day 2018 -Happy Valentines Day -SpaceX -Nintendo Labo -New California -calculator -Oscar Nominations 2018 -Meteor -UFC 220 -Tom Petty -SpaceX -Joe Kennedy -Bitcoin Price -Patriots -Rose McGowan -Kylie Jenner -Carter G. Woodson -Wilder Penfield -Kingdom Come Deliverance -Montreal Cognitive Assessment -Rob Gronkowski -Super Bowl 2018 -Carter G. Woodson -Grammys 2018 -Alaska earthquake -Larry Nassar -Sergei Eisenstein -Justin Timberlake -Wilder Penfield -Kylie Jenner -Amazon Stock -Ash Wednesday -Winter Olympics -Shaun White -Larry Nassar -Luke Wilson -Alex Smith -Valentines Day -Vanessa Marcil -Florida shooting -Patriots -Elizabeth Blackwell -Bitcoin Price -Paula Modersohn-Becker -Patriots -This Is Us -Justin Timberlake -Florida shooting -Larry Nassar -Memo -New England Patriots owner -Florida shooting -Patriots -NBA Trades -Carter G. Woodson -Uma Thurman -Super Bowl 2018 -Happy Valentines Day -Virginia Woolf -Carter G. Woodson -Sarah Barthel -Black Panther -Virginia Woolf -Rose McGowan -Wilder Penfield -Memo -Real Madrid -Mark Salling -Dennis Edwards -NBC Sports -Tom Petty -Super Bowl score -Justin Timberlake -Super Bowl score -Elizabeth Blackwell -Wilder Penfield -Rihanna -Jennifer Aniston -Kylie Jenner -Mark Salling -Justin Timberlake -Super Bowl 2018 -Government Shutdown 2018 -Patriots -Kim Kardashian -SpaceX -Tom Petty -Blue Moon -Government shutdown -Winter Olympics -Ash Wednesday -Super blue blood Moon -Tammy Duckworth -Government Shutdown Meaning -Carter G. Woodson -Government Shutdown -Virginia Woolf -Dwyane Wade -UFC 220 -Paul Ryan -Blue Ivy -Olympic Medal Count -Wilder Penfield -Florida shooting -Florida shooting -Childish Gambino -Warren Miller -NBA Trades -Virginia Woolf -Cherry Seaborn -Virginia Woolf -Monster Hunter World -Florida shooting -Altered Carbon -Paula Modersohn-Becker -SpaceX -Winter Olympics -Mark Salling -Enzo Amore -Elton John -Sergei Eisenstein -Fredo Santana -SpaceX -Meteor -Nathan Chen -Super Bowl 2018 -Bob Dole -Grammys 2018 -Oscar Nominations 2018 -Olive Garden -Zion Williamson -Patriots -Joseph Haynes -Joe Kennedy -Farmers Insurance Open 2018 -H&r Block -Alaska earthquake -Grammys 2018 -Bitcoin Price -Outback Steakhouse -Wilder Penfield -Virginia Woolf -Justin Timberlake -Dow Jones -Super Bowl 2018 -Sergei Eisenstein -Valentines Day -NASA -Sergei Eisenstein -The 15:17 to Paris -Patriots -What Time Is The Super Bowl -Chloe Kim -school closings -Larry Nassar -Winter Olympics -Patriots -SpaceX -Wilder Penfield -Paula Modersohn-Becker -Uma Thurman -Rob Porter -Florida shooting -Memo -SpaceX -Virginia Woolf -Cherry Seaborn -Atlanta Weather -Mark E Smith -Happy Valentines Day -Virginia Woolf -Bradie Tennell -Carter G. Woodson -Patriots -Elton John -Sergei Eisenstein -Wilder Penfield -Black Panther -Super Bowl 2018 -Chicago Weather -Virginia Woolf -Larry Nassar -New England Patriots owner -CNN -Winter Olympics -Edible Arrangements -Super Bowl 2018 -Elizabeth Blackwell -Virginia Woolf -Virginia Woolf -Warren Miller -Super Bowl score -Super Bowl 2018 -Forever My Girl -Rasual Butler -Super Bowl 2018 -Patriots -Farmers Insurance Open 2018 -Winter Olympics -Florida shooting -Government Shutdown -Mark Salling -Florida shooting -Wilder Penfield -Justin Timberlake -Uma Thurman -Steven Tyler -Did the Groundhog See His Shadow -school closings -Kylie Jenner -Olympic medal count -Best Superbowl Commercials 2018 -Zion Williamson -Mardi Gras 2018 -SpaceX -Grammys 2018 -Paula Modersohn-Becker -New England Patriots owner -Super Bowl 2018 -Wilder Penfield -XFL -Tammy Duckworth -Winter Olympics -Carter G. Woodson -Virginia Woolf -Black Panther -State of the Union -Kylie Jenner -Mikaela Shiffrin -Super Bowl 2018 -Kristaps Porzingis -Memo -Patriots -Patriots -Carter G. Woodson -Amtrak -XIV -Quincy Jones -Snap Stock -AFC Championship Game 2018 -Amazon HQ2 -Government Shutdown -Cavs -Emily Sweeney -Chloe Kim -Sergei Eisenstein -Luke Wilson -Elizabeth Blackwell -Lauren Davis -Altered Carbon -Carter G. Woodson -Kesha Grammy -fake news awards -Larry Nassar -Mark Salling -Super Bowl score -Ash Wednesday -Mikaela Shiffrin -Vikings Vs Eagles -Kesha -Mark Salling -Elizabeth Blackwell -Oscar Nominations 2018 -Super Bowl 2018 -Larry Nassar -What Time Is The Super Bowl -Sergei Eisenstein -CNN -Early Man -Virginia Woolf -Tom Izzo -Super Bowl Commercials 2018 -Sergei Eisenstein -Larry Nassar -Winter Olympics -Tom Petty -NBA Trades -Elizabeth Blackwell -Winter Olympics -Government Shutdown -Caroline Wozniacki -Kylie Jenner Baby Girl -Fredo Santana -Tyler Hilinski -NBA Trades -Justin Timberlake -Black Panther -school closings -Kim Kardashian -Kim Cattrall -Winter Olympics -State of the Union -Jamie Dornan -Justin Timberlake -Mardi Gras 2018 -Florida shooting -Jason Momoa -Oscar Nominations 2018 -Super Bowl 2018 -Wonder Woman -Terrell Owens -Uma Thurman -Larry Nassar -Wilder Penfield -Zion Williamson -Caroline Wozniacki -Fredo Santana -Paula Modersohn-Becker -Vikings vs Eagles -Naya Rivera -SpaceX -UFC 220 -Danielle Herrington -Justin Timberlake -Carter G. Woodson -Winter Olympics -Zion Williamson -Uma Thurman -Royal Rumble 2018 -February -Paula Modersohn-Becker -Cavs -Google Classroom -Black Panther -Julie Ertz -Super Bowl score -Super Bowl score -Super Bowl score -Kylie Jenner -Wilder Penfield -Winter Olympics -Justin Timberlake -Fredo Santana -Oscar Nominations 2018 -Carter G. Woodson -Puppy Bowl 2018 -slides -Kate Upton -Larry Nassar -Lindsey Vonn -Wilder Penfield -Kesha -Google Drive -Paula Modersohn-Becker -Florida shooting -Steve Wynn -Carter G. Woodson -Blake Griffin Trade -SpaceX -Super Bowl score -Adam Rippon -Sergei Eisenstein -Super Bowl score -Mickey Jones -Vikings vs Eagles -Patriots -Groundhog Day 2018 -Elizabeth Blackwell -Winter Olympics -Florida shooting -John Mahoney -What Time Is The Super Bowl -Grammys 2018 -stock market -Culture 2 -Patriots -Super Bowl score -Justin Timberlake -Blood Moon -SpaceX -stock market -Duke basketball -Super Bowl 2018 -Kodak Black -stock market -Elizabeth Blackwell -Sergei Eisenstein -Bitcoin Price -Elizabeth Blackwell -Adam Rippon -Sergei Eisenstein -Jennifer Aniston -Wilder Penfield -Happy Valentines Day -Bitcoin Price -Carter G. Woodson -Robert Wagner -SpaceX -Amy Schumer -Dwyane Wade -Super Bowl 2018 -The 15:17 to Paris -Florida shooting -NBA Trades -Omarosa -Florida shooting -MS13 -Edwin Jackson -Paula Modersohn-Becker -Dow Jones -Kylie Jenner Baby Girl -Homeland -Super Bowl 2018 -Winter Olympics -Justin Timberlake -XIV -Daytona 500 -Alaska earthquake -XFL -Winter Olympics -Wilder Penfield -Grammys 2018 -Wilder Penfield -Super Bowl score -Carter G. Woodson -Virginia Woolf -Patriots -Elizabeth Blackwell -Elizabeth Blackwell -Carter G. Woodson -Trump State of the Union -Sergei Eisenstein -Royal Rumble 2018 -Super blue blood Moon -Grammys 2018 -Jennifer Aniston -Bellator 192 -United States Postal Service -Wilder Penfield -Paula Modersohn-Becker -Duke Basketball -Paula Modersohn-Becker -Kylie Jenner -UFC 220 -Timor Leste -Black Panther -Florida shooting -Government shutdown 2018 -What Time Is The Super Bowl -Elizabeth Blackwell -Florida shooting -Florida shooting -Paula Modersohn-Becker -Royal Rumble 2018 -Wilder Penfield -SpaceX -Ash Wednesday -John Mahoney -Cherry Seaborn -Florida shooting -Alaska earthquake -Terry Bradshaw -Happy Valentines Day -What Time Is The Super Bowl -Government Shutdown Meaning -CNN -SpaceX -Justin Timberlake -Mark Salling -Shaun White -Derrick Rose -Oscar Nominations 2018 -Grammys 2018 -Florida shooting -Elizabeth Blackwell -Elizabeth Blackwell -Erykah Badu -Super Bowl score -Paula Modersohn-Becker -Paula Modersohn-Becker -Paula Modersohn-Becker -Virginia Woolf -Kim Kardashian -Kesha Grammy -Trump State of the Union -Super Bowl score -Omarosa -Lee Miglin -Super Bowl 2018 -Edwin Jackson -Robert Wagner -Cloverfield Paradox -Shaun White -Quincy Jones -Chief Wahoo -Dwyane Wade -Virginia Woolf -Tom Petty -Government shutdown 2018 -Florida shooting -Olympic Medal Count -Alessia Cara -Lari White -Presidents Day 2018 -Super Bowl Commercials 2018 -Jennifer Aniston -Government Shutdown -Kylie Jenner -Chloe Kim -Patriots -Virginia Woolf -Adam Rippon -Carter G. Woodson -FC Barcelona -H&r Block -Wilder Penfield -Quincy Jones -Google Classroom -Luke Wilson -Larry Nassar -Super Bowl 2018 -Sergei Eisenstein -Carter G. Woodson -Super Bowl 2018 -Elizabeth Blackwell -Happy Valentines Day -Grammys 2018 -Nintendo Labo -12 Strong -Maze Runner: The Death Cure -Larry Nassar -Elizabeth Blackwell -Wilder Penfield -Justin Timberlake -Jason Kelce -Chloe Kim -Happy Valentines Day -Shaun White -Chris Paul -SpaceX -What Time Is The Super Bowl -Government shutdown 2018 -Vikings Vs Eagles -Super Bowl score -Paula Modersohn-Becker -Terrell Owens -Florida shooting -Justin Timberlake -Government Shutdown -Virginia Woolf -Patti LuPone -Elizabeth Blackwell -Bitcoin Price -What Time Is The Super Bowl -Chicago Weather -Kentucky shooting -Florida shooting -Elizabeth Blackwell -Wilder Penfield -Kim Cattrall -Jason Kelce -fake news awards -Elizabeth Blackwell -Winter Olympics -Montgomery County Public Schools -Super Bowl score -Steve Wynn -United States Postal Service -Sergei Eisenstein -Cloverfield Paradox -Justin Timberlake -Adam Rippon -Rasual Butler -Elizabeth Blackwell -Solo Trailer -This is Us -Kentucky shooting -Elizabeth Blackwell -Sal Castro Middle School -Did the Groundhog See His Shadow -Carter G. Woodson -Johnny Manziel -Wilder Penfield -Chloe Kim -Shaun White -Larry Nassar -Paula Modersohn-Becker -Bitcoin Price -Winter Olympics -Dane Cook -Andrew Cunanan -Chicago West -Olympic Medal Count -Rasual Butler -Virginia Woolf -Super Bowl 2018 -Memo -Terrell Owens -Sergei Eisenstein -Carter G. Woodson -Justin Timberlake -Hostiles Movie -Groundhog Day 2018 -Snake -Super Bowl score -Sergei Eisenstein -Justin Timberlake -Sergei Eisenstein -Jamie Anderson -Groundhog Day 2018 -Real Madrid -Super Bowl score -12 Strong -Patriots -Patriots -Cloverfield Paradox -Isaiah Canaan -Paula Modersohn-Becker -national signing day 2018 -Wilder Penfield -Peter Rabbit -NFC Championship Game 2018 -Carter G. Woodson -Justin Timberlake -State of the Union -What Time Is The Super Bowl -SAG Awards 2018 -Super Bowl score -Grammys 2018 -Incredibles 2 -What Time Is The Super Bowl -Government Shutdown -AFC Championship Game 2018 -Kesha Grammy -Vikings vs Eagles -Super Bowl 2018 -Black Panther -Paula Modersohn-Becker -Dow Jones -Government Shutdown 2018 -Elton John -Stock Market Crash Today -Cloverfield Paradox -Oscar Nominations 2018 -Mikaela Shiffrin -Elizabeth Blackwell -Grammys 2018 -Florida shooting -Grammys 2018 -H&r Block -Elizabeth Blackwell -Dow Jones -Uma Thurman -Wilder Penfield -Kim Kardashian -Patriots -Happy Valentines Day -Kris Dunn -This Is Us -Alessia Cara -Wilder Penfield -Elizabeth Blackwell -Patriots -Dow Jones -Super Bowl 2018 -Super Bowl 2018 -Super Bowl 2018 -Winter Olympics -Justin Timberlake -Winter Olympics -John Mahoney -Super Bowl 2018 -Pro Bowl 2018 -Wilder Penfield -Government shutdown -Dow Jones -Grammys 2018 -Super Bowl 2018 -SpaceX -Dwyane Wade -Did the Groundhog See His Shadow -Super Bowl score -Justin Timberlake -New England Patriots owner -Lunar eclipse -Government Shutdown 2018 -James Baldwin -Harley Barber -What Time Is The Super Bowl -Shaun White -State of the Union -Mitt Romney -Super Bowl 2018 -Valentines Day Images -Mark Salling -Groundhog Day 2018 -Justin Timberlake -12 Strong -Super Bowl 2018 -Justin Timberlake -Carter G. Woodson -Nba All Star 2018 -Joe Kennedy -Gus Kenworthy -Chris Paul -Carter G. Woodson -Mark E Smith -Mark Salling -Carter G. Woodson -UFC 220 -Patriots -Grammys 2018 -Super Bowl 2018 -Grammys 2018 -Lil Pump -Alexander Polinsky -Grammys 2018 -Google Classroom -Did the Groundhog See His Shadow -Olympic Medal Count -NHL All Star Game -Paula Modersohn-Becker -What Time Is The Super Bowl -Super Bowl 2018 -Super Bowl score -Alaska earthquake -Winter Olympics -Super Bowl score -earthquake -Kim Kardashian -Rob Delaney -Paula Modersohn-Becker -Florida shooting -Did the Groundhog See His Shadow -Mcdonald's -XFL -Justin Timberlake -Jennifer Aniston -Kawhi Leonard -Elizabeth Blackwell -NBA Trades -Patriots -Russell Wilson -Elizabeth Blackwell -Government Shutdown -Super Bowl 2018 -Alex Smith -Carter G. Woodson -Chloe Kim -Super Bowl score -Super Bowl 2018 -Wilder Penfield -Patriots -Valentines Day -Did the Groundhog See His Shadow -What Time Is The Super Bowl -calculator -Alex Smith -Virginia Woolf -SpaceX -Elizabeth Blackwell -Carter G. Woodson -Fredo Santana -Justin Timberlake -SpaceX -Shani Davis -Virginia Woolf -Zion Williamson -Cavs -Super Bowl 2018 -Rasual Butler -Elizabeth Blackwell -Paula Modersohn-Becker -Wilder Penfield -Super blue blood Moon -Elton John -Bode Miller -Super Bowl Commercials 2018 -VIX -Wilder Penfield -Adam Rippon -Super blue blood Moon -Tom Petty -Paula Modersohn-Becker -Adam Rippon -Red Gerard -Super Bowl 2018 -Sergei Eisenstein -Derrick Rose -Florida shooting -Ash Wednesday -All Star Weekend 2018 -Mark Salling -Patriots -Justin Timberlake -Paula Modersohn-Becker -Kentucky shooting -Dow Jones -Government Shutdown -Super blue blood Moon -Florida shooting -Sergei Eisenstein -Cloverfield Paradox -Rose McGowan -Florida shooting -Memo -Amazon stock -Carter G. Woodson -Winter Olympics -Paula Modersohn-Becker -Isaiah Thomas -Happy Valentines Day -What Time Is The Super Bowl -Hope Hicks -Florida shooting -Grammys 2018 -Virginia Woolf -Sergei Eisenstein -Patriots -State of the Union -Turpin -Government Shutdown -Winter Olympics -Florida shooting -Wilder Penfield -Paula Modersohn-Becker -Rob Porter -Sergei Eisenstein -Release The Memo -Virginia Woolf -Tessa Virtue -SpaceX -Kylie Jenner -Aliona Savchenko -Super Bowl score -Patriots -Paula Modersohn-Becker -Winter Olympics -Sergei Eisenstein -Kylie Jenner -Paula Modersohn-Becker -SpaceX -Did the Groundhog See His Shadow -Virginia Woolf -Todd Haley -Johnny Weir -Patriots -Patriots -Patriots -Ash Wednesday -Groundhog Day 2018 -Super Bowl score -Black Panther -SpaceX -NASCAR -Scott Baio -State of the Union -Wilder Penfield -Paula Modersohn-Becker -Super Bowl score -February -Terrell Owens -Elizabeth Blackwell -Anna Kournikova -Carter G. Woodson -Shaun White -United States Of America Winter Olympics -School closings -Larry Nassar -Sergei Eisenstein -Elizabeth Blackwell -Reg E Cathey -Bitcoin Price -Carter G. Woodson -Virginia Woolf -Wilder Penfield -Winter Olympics -calculator -Grammys 2018 -Elizabeth Blackwell -Groundhog Day 2018 -Justin Timberlake -Wilder Penfield -Olympic Medal Count -Kylie Jenner -Virginia Woolf -NBA Trades -Gods Plan -Bitcoin Price -Winter Olympics -Despacito -Alaska earthquake -Paula Modersohn-Becker -Mexico Vs Bosnia -Chicago West -Winter Olympics -Super Bowl score -Wilder Penfield -Cavs -Duke Basketball -Neil Diamond -Edwin Jackson -Wilder Penfield -Paula Modersohn-Becker -Sergei Eisenstein -Rasual Butler -Samson -Jalen Ramsey -Toys R Us -Wilder Penfield -Super Bowl score -Obama portrait -Tiger Woods -Patriots -Groundhog Day 2018 -Sergei Eisenstein -Isaiah Thomas -Wilder Penfield -Happy Valentines Day -Happy Valentines Day -Paula Modersohn-Becker -Elizabeth Blackwell -Dow Jones -Den of Thieves -Super Bowl 2018 -Paula Modersohn-Becker -Sergei Eisenstein -Florida shooting -Mark Salling -Elizabeth Blackwell -Nascar Schedule -Mardi Gras 2018 -Pro Bowl 2018 -Stormi -Black Panther -Shaun White -Grammys 2018 -Winter Olympics -Florida shooting -Bob Dole -Fredo Santana -Super Bowl 2018 -Woody Allen -Sergei Eisenstein -Carter G. Woodson -Winter Olympics -Elizabeth Blackwell -MS13 -Government Shutdown -Winter Olympics -Ursula Le Guin -Winter Olympics -Grammys 2018 -Sergei Eisenstein -Steven Tyler -Super Bowl 2018 -Sergei Eisenstein -Rasual Butler -Hope Hicks -Carter G. Woodson -Super Bowl score -Florida shooting -MS13 -Johnny Weir -Google Classroom -National Pizza Day -Super blue blood Moon -Scott Baio -Johnny Weir -Kylie Jenner -Florida shooting -Paula Modersohn-Becker -Tomi Lahren -Florida shooting -Bob Marley -Altered Carbon -North Korean cheerleaders -Happy Valentines Day -Justin Timberlake -Paula Modersohn-Becker -Florida shooting -Elizabeth Blackwell -Jason Kelce -Aliona Savchenko -Kylie Jenner -What Time Is The Super Bowl -Edwin Jackson -Florida shooting -Princess Eugenie -Quincy Jones -Wilder Penfield -Patriots -Wilder Penfield -Mikaela Shiffrin -Jennifer Aniston -Ohio State basketball -Real Madrid -Kylie Jenner -Vikings Vs Eagles -All Star Weekend 2018 -Sergei Eisenstein -Blake Griffin -School closings -Larry Nassar -Yu Darvish -Grammys 2018 -Sammy Sosa -Drive -Justin Timberlake -CNN -Peter Rabbit -Groundhog Day 2018 -Patriots -Did the Groundhog See His Shadow -Elizabeth Blackwell -Ant Man and the Wasp -XFL -Government shutdown 2018 -Google docs -Government shutdown -Alex Reimer -Wilder Penfield -Eli Manning -Elizabeth Blackwell -Royal Rumble 2018 -Wilder Penfield -Elizabeth Blackwell -Rasual Butler -Virginia Woolf -Kesha Grammy -Virginia Woolf -Gods Plan -Carter G. Woodson -Paula Modersohn-Becker -Fredo Santana -Lindsey Vonn -SpaceX -Super Bowl score -Justin Timberlake -Carter G. Woodson -Fredo Santana -Caitlin McHugh -Laura Ingraham -Florida shooting -Sergei Eisenstein -SAG Awards 2018 -Sergei Eisenstein -Fredo Santana -Larry Nassar -Super Bowl score -Grammys 2018 -Paula Modersohn-Becker -school closings -Google docs -Super Bowl 2018 -Shaun White -Royal Rumble 2018 -Elizabeth Blackwell -Josh McDaniels -Royal Rumble 2018 -Florida shooting -Wilder Penfield -Mardi Gras 2018 -Winter Olympics -Lari White -Larry Nassar -Carter G. Woodson -Carter G. Woodson -Super Bowl score -Florida shooting -Super Bowl 2018 -This Is Us -UFC 221 -Aaliyah -Mikaela Shiffrin -Dwyane Wade -Super Bowl Commercials 2018 -Super Bowl 2018 -Elizabeth Blackwell -Government shutdown 2018 -Valentines Day -CNN -Sergei Eisenstein -Wilder Penfield -Mark Salling -Waco -Kodak Black -Florida shooting -Sergei Eisenstein -Luke Wilson -Alexa Commercial -Super Bowl score -Carter G. Woodson -Paula Modersohn-Becker -Dwyane Wade -Jacob Copeland -Dwyane Wade -Abraham Lincoln -Joe Kennedy -Patriots -Grammys 2018 -Solo Trailer -Government Shutdown Meaning -Virginia Woolf -Winter Olympics -Paula Modersohn-Becker -Super Bowl 2018 -Patriots -Carter G. Woodson -Grammys 2018 -LL Bean -Carter G. Woodson -Super Bowl 2018 -Altered Carbon -Blake Griffin Trade -Super Bowl 2018 -Eli Manning -What Time Is The Super Bowl -Justin Timberlake -Carter G. Woodson -Winter Olympics -Kylie Jenner -Kristaps Porzingis -Patriots -Wilder Penfield -XFL -Joe Kennedy -Amy Schumer -Alexa Commercial -FA Cup -Florida shooting -Olympic medal count -All Star Weekend 2018 -Carter G. Woodson -Winter Olympics -Justin Timberlake -Justin Timberlake -Bitcoin Price -Friends movie -SAG Awards 2018 -Patriots -Super Bowl score -Sergei Eisenstein -Kylie Jenner Baby Girl -Carter G. Woodson -Patriots -Patriots -State of the Union -Super Bowl score -Den of Thieves -Kim Kardashian -Government Shutdown -Despacito -Larry Nassar -Wilder Penfield -Paula Modersohn-Becker -Tesla in space -SpaceX -Cbs -Winter Olympics -Kylie Jenner -Valentines Day -Omarosa -Super Bowl score -Super Bowl 2018 -Mikaela Shiffrin -Best Superbowl Commercials 2018 -Super Bowl score -Super blue blood Moon -Isaiah Thomas -Grammys 2018 -Wilder Penfield -Shaun White -Grammys 2018 -Shaun White -Memo -Patriots -Trump State of the Union -Virginia Woolf -Sergei Eisenstein -Lunar eclipse -Oscar Nominations 2018 -Apolo Ohno -calculator -Florida shooting -Release The Memo -Super Bowl Commercials 2018 -Super Bowl 2018 -Maddie Mastro -Lil Xan -Women's March 2018 -Winter Olympics -Chinese New Year 2018 -Carter G. Woodson -Dow Jones -Kylie Jenner -Trump State of the Union -Wilder Penfield -Super Bowl 2018 -Valentines Day -Wilder Penfield -Government Shutdown -Super Bowl 2018 -Super blue blood Moon -Carter G. Woodson -Jennifer Aniston -Kristaps Porzingis -Dennis Edwards -Dow Jones -SpaceX -Florida shooting -Florida shooting -Isaiah Thomas -Wilder Penfield -Kylie Jenner -Paula Modersohn-Becker -Ronaldinho -Fifty Shades Freed -Bruno Mars -Black Panther -Super Bowl 2018 -Anna Kournikova -Langston Hughes -Virginia Woolf -Elizabeth Blackwell -Kylie Jenner -Fifty Shades Freed -Florida shooting -Solo Trailer -Shaun White -Patriots -Elizabeth Blackwell -Blake Griffin -Paula Modersohn-Becker -Camila Cabello -Sergei Eisenstein -What Time Is The Super Bowl -Black Panther -Elizabeth Blackwell -Super Bowl 2018 -Carter G. Woodson -Omarosa -Wilder Penfield -Get Out -Rachel Brand -Rob Porter -Virginia Woolf -Wilder Penfield -Wilder Penfield -Super Bowl 2018 -school closings -Wilder Penfield -Kim Kardashian -Women's March 2018 -Elizabeth Blackwell -Grammys 2018 -Carter G. Woodson -Outback Steakhouse -Sergei Eisenstein -Andrew Cunanan -Florida shooting -SpaceX -Government shutdown 2018 -Super Bowl 2018 -Carter G. Woodson -Elizabeth Blackwell -Virginia Woolf -Virginia Woolf -Winter Olympics -Super Bowl score -Super Bowl score -This Is Us -Virginia Woolf -SpaceX -Mardi Gras 2018 -Government shutdown 2018 -Jennifer Aniston -This Is Us -What Time Is The Super Bowl -SpaceX -Chicago Weather -SpaceX -Florida shooting -Olympic medal count -Greg Monroe -Kentucky shooting -Paula Modersohn-Becker -Lunar eclipse -Super Bowl score -Google Classroom -Chloe Kim -Super Bowl 2018 -Obama portrait -Cavs -Royal Rumble 2018 -NBC Sports -Government Shutdown 2018 -Grammys 2018 -Oscar Nominations 2018 -Justin Timberlake -Elizabeth Blackwell -Paula Modersohn-Becker -Super Bowl 2018 -Portia de Rossi -Paula Modersohn-Becker -Elizabeth Blackwell -Wilder Penfield -Black Panther -Paula Modersohn-Becker -What Time Is The Super Bowl -Grammys 2018 -Andrew Cunanan -UFC 220 -Solo Trailer -Government Shutdown Meaning -Blake Griffin -Sabrina Dhowre -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl 2018 -Elizabeth Blackwell -Super Bowl score -Solo Trailer -Dwyane Wade -Happy Valentines Day -Virginia Woolf -Tonga -Groundhog Day 2018 -Dwyane Wade -Wilder Penfield -Lindsey Vonn -Google docs -Wilder Penfield -Shaun White -Wilder Penfield -Bitcoin Price -Super Bowl 2018 -Did the Groundhog See His Shadow -Government Shutdown -Paula Modersohn-Becker -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl 2018 -Isaiah Thomas -Grammys 2018 -UFC 220 -Mike Tomlin -Super Bowl Commercials 2018 -Elton John -Sergei Eisenstein -Fredo Santana -Virginia Woolf -Sal Castro Middle School -Chinese New Year 2018 -School closings -Super Bowl 2018 -Paula Modersohn-Becker -Kentucky shooting -Carter G. Woodson -Super Bowl score -Sergei Eisenstein -Super blue blood Moon -This Is Us -Culture 2 -Sergei Eisenstein -Groundhog Day 2018 -Chinese New Year 2018 -Sergei Eisenstein -This Is Us -Super blue blood Moon -Government Shutdown Meaning -SpaceX -Super Bowl score -Fredo Santana -Sergei Eisenstein -The 15:17 to Paris -Patriots -Harley Barber -Super Bowl score -Rasual Butler -Elizabeth Blackwell -Black Panther -Super Bowl 2018 -Mikaela Shiffrin -Elizabeth Blackwell -Super Bowl 2018 -SpaceX -Florida shooting -Florida shooting -This Is Us -Carter G. Woodson -Groundhog Day 2018 -Elizabeth Blackwell -Grammys 2018 -Elizabeth Blackwell -Walter Payton -Carter G. Woodson -Sergei Eisenstein -Kim Kardashian -Kylie Jenner -Devin Nunes -Paula Modersohn-Becker -Shaun White -Kylie Jenner -SpaceX -Reg E Cathey -Super Blue Blood Moon -Tom Brady daughter -Super Bowl 2018 -Groundhog Day 2018 -Patriots -Solo Trailer -Winter Olympics -Kim Kardashian -Kylie Jenner -Cloverfield Paradox -Patriots -Virginia Woolf -Jennifer Aniston -Mardi Gras 2018 -Wilder Penfield -Super Bowl score -Elizabeth Blackwell -Wilder Penfield -Winter Olympics -Winter Olympics -Lonzo Ball -Super Bowl Commercials 2018 -Grammys 2018 -What Time Is The Super Bowl -State of the Union -What Time Is The Super Bowl -Sergei Eisenstein -Paula Modersohn-Becker -Despacito -Paula Modersohn-Becker -Winter Olympics -Super blue blood Moon -Super Bowl 2018 -Rodney Hood -Super Bowl 2018 -Brie Larson -Super Bowl 2018 -Super Bowl 2018 -Timor Leste -Rihanna -Patriots -Cavs -Paula Modersohn-Becker -Government Shutdown Meaning -New California -Pro Bowl 2018 -Olivia Culpo -Cavs -Happy Valentines Day -Paula Modersohn-Becker -Super Bowl 2018 -Bitcoin Price -New England Patriots owner -Florida shooting -Elizabeth Blackwell -Paula Modersohn-Becker -Luke Wilson -Emily Sweeney -Winter Olympics -Kim Kardashian -Sandy Hook -Andrew Cunanan -Virginia Woolf -Justin Timberlake -Patriots -Patriots -Elizabeth Blackwell -Royal Rumble 2018 -Joel Taylor -Tessa Virtue -Super Bowl Commercials -Carter G. Woodson -Carter G. Woodson -Manchester United -Did the Groundhog See His Shadow -Stephanie Katelnikoff -Jennifer Aniston -Valentines Day -Champions League -Alaska earthquake -What Time Is The Super Bowl -OKC Thunder -Chloe Kim -UFC 220 -Eli Manning -Black Panther -Trey Gowdy -Lil Xan -Bitcoin Price -Daytona 500 -Alessia Cara -Chris Long -Memo -Wilder Penfield -Oscar Nominations 2018 -Memo -Winter Olympics -The 15:17 to Paris -Super Blue Blood Moon -Super Bowl score -State of the Union -Patriots -Virginia Woolf -Super Bowl 2018 -Sergei Eisenstein -Carter G. Woodson -Paula Modersohn-Becker -Snap Stock -Maria Menounos -Patriots -Grammys 2018 -Vikings Vs Eagles -Carter G. Woodson -Larry Nassar -Westerville Ohio -Todd Haley -school closings -Justin Timberlake -Grammys 2018 -Arsenal -Adam Rippon -Groundhog Day 2018 -Patriots -Government Shutdown -Government Shutdown -Terrell Owens -Paula Modersohn-Becker -Paula Modersohn-Becker -Kylie Jenner -Wilder Penfield -Super Bowl score -What Time Is The Super Bowl -Justin Timberlake -What Time Is The Super Bowl -Sergei Eisenstein -UFC 220 -Cherry Seaborn -Groundhog Day 2018 -Paula Modersohn-Becker -Melania Trump -Kylie Jenner Baby Girl -Florida shooting -Natalie Portman -Winter Olympics -Elizabeth Blackwell -Groundhog Day 2018 -Lena Zawaideh -Sergei Eisenstein -Ash Wednesday -Grammys 2018 -Waco -Alessia Cara -Elizabeth Blackwell -Shaun White -Joe Kennedy -Wilder Penfield -Memo -Hope Hicks -Turpin -Winter Olympics -Wilder Penfield -Google docs -Paula Modersohn-Becker -Paula Modersohn-Becker -Simona Halep -Virginia Woolf -Alexa Commercial -Patriots -Carter G. Woodson -SpaceX -Winter Olympics -Virginia Woolf -Grammys 2018 -Oar Olympics -Patriots -Kentucky shooting -Super Bowl 2018 -Paula Modersohn-Becker -Dow Jones industrial average -Sergei Eisenstein -Ash Wednesday -Tiger Woods -Edwin Jackson -Aaron Fies -Winter Olympics -Virginia Woolf -Virginia Woolf -Senior Bowl -Winter Olympics -Carter G. Woodson -Virginia Woolf -Obama portrait -Jo Jo White -Chloe Kim -Super Bowl score -Government shutdown 2018 -Alex Smith -Bruno Mars -Call Me by Your Name -Grammys 2018 -Kim Cattrall -Betty White -Nintendo Labo -Patriots -Patriots -calculator -Nathan Chen -This Is Us -What Time Is The Super Bowl -What Time Is The Super Bowl -Shaun White -Winter Olympics -Winchester -Shaun White -Justin Timberlake -Virginia Woolf -Ash Wednesday -Virginia Woolf -tsunami -Royal Rumble 2018 -Princess Eugenie -Justin Timberlake -Stock Market Crash Today -Super Bowl score -Paula Modersohn-Becker -Florida shooting -Florida shooting -Larry Nassar -Florida shooting -Kylie Jenner -Timor Leste -Florida shooting -Childish Gambino -Government Shutdown -Elizabeth Blackwell -Sarah Barthel -Virginia Woolf -What Time Is The Super Bowl -Florida shooting -Elizabeth Blackwell -Amy Schumer -Super Blue Blood Moon -Winter Olympics -Patriots -Super Bowl 2018 -Google Classroom -Florida shooting -Carter G. Woodson -Alessia Cara -Elizabeth Blackwell -Government Shutdown -Kim Kardashian -Lonzo Ball -Jennifer Aniston -Duke Basketball -Meteor -Best Superbowl Commercials 2018 -Hillary Clinton -Winter Olympics -Joel Taylor -Super Bowl score -Winter Olympics -Elizabeth Blackwell -Solo Trailer -Enzo Amore -Portia de Rossi -Virginia Woolf -Super Bowl 2018 -Groundhog Day 2018 -Wilder Penfield -SpaceX -What Time Is The Super Bowl -Google docs -State of the Union -Elton John -Super Bowl score -Virginia Woolf -Grammys 2018 -Super Bowl score -SpaceX -Elizabeth Blackwell -Elizabeth Blackwell -Super Bowl 2018 -Sergei Eisenstein -SpaceX -Cherry Seaborn -Justin Timberlake -Toys R Us -Adam Rippon -Florida shooting -Virginia Woolf -Sergei Eisenstein -Kylie Jenner Baby Girl -Adam Rippon -SpaceX -Bitcoin Price -Larry Nassar -Paula Modersohn-Becker -Super Bowl score -Super Bowl score -Tonga -Alaska earthquake -Elizabeth Blackwell -Sergei Eisenstein -CNN -State of the Union -Grammys 2018 -Luke Wilson -Elizabeth Blackwell -Super Bowl 2018 -Wilder Penfield -Oscar Gamble -Nintendo Labo -Government shutdown 2018 -Super Bowl 2018 -Solo Trailer -Super Bowl 2018 -Kim Kardashian -Solo Trailer -Altered Carbon -Korea -Elizabeth Blackwell -Google docs -Winter Olympics -Super Bowl 2018 -Grammys 2018 -This Is Us -Government shutdown 2018 -Anastasia Bryzgalova -Super Blue Blood Moon -Amy Schumer -Jennifer Aniston -Winter Olympics -Jennifer Aniston -Robert Wagner -school closings -Wilder Penfield -Duke Basketball -SpaceX -Carter G. Woodson -Super Bowl score -Kim Kardashian -Wonder Woman -Paula Modersohn-Becker -Paula Modersohn-Becker -Justin Timberlake -Melania Trump -calculator -Omarosa -Patriots -Winter Olympics -Kim Kardashian -Shaun White -NBC Sports -Logan Paul -calculator -Fredo Santana -Sergei Eisenstein -What Time Is The Super Bowl -Pink -Sergei Eisenstein -Super Bowl 2018 -Andrew Cunanan -Marlon Brando -SpaceX -Jennifer Aniston -Childish Gambino -Gigi Hadid -Vikings vs Eagles -Anthony Davis -Super blue blood Moon -Nadal -Virginia Woolf -State of the Union -Google docs -calculator -Mikaela Shiffrin -Omarosa -Champions League -Columbine Shooting -Patriots -Government Shutdown -What Time Is The Super Bowl -Super Bowl Commercials 2018 -Super Bowl Commercials 2018 -CNN -Release The Memo -Paula Modersohn-Becker -State of the Union -NBA Trades -Kylie Jenner -Sergei Eisenstein -Government Shutdown -Larry Nassar -Valentines Day Cards -Happy Valentines Day -Bitcoin Price -Winter Olympics -Elizabeth Blackwell -Super Bowl score -Kelsey Grammer -SpaceX -Joe Kennedy -Sergei Eisenstein -Jessica Biel -Virginia Woolf -Patriots -Dow Jones -Carter G. Woodson -Shaun White -Super Blue Blood Moon -Alex Smith -Elizabeth Blackwell -Elizabeth Blackwell -Patriots -Will Ferrell -Government Shutdown 2018 -Patriots -This Is Us -Justin Timberlake -Florida shooting -Quincy Jones -Mardi Gras 2018 -Larry Nassar -Sergei Eisenstein -Carter G. Woodson -Winter Olympics -Deadpool 2 -Trey Gowdy -Red Gerard -Quincy Jones -Winter Olympics -Wilder Penfield -Sergei Eisenstein -Super Bowl 2018 -Virginia Woolf -Wilder Penfield -Winter Olympics -Paula Modersohn-Becker -Grammys 2018 -Daryle Singletary -Justin Timberlake -SAG Awards 2018 -Shaun White -Super Bowl score -United States Of America Winter Olympics -Winter Olympics -Sergei Eisenstein -Kesha Grammy -Super Bowl 2018 -Rose McGowan -Paula Modersohn-Becker -Wilder Penfield -Larry Nassar -Alessia Cara -Solo Trailer -Super Bowl score -Happy Valentines Day -Jalen Ramsey -What Time Is The Super Bowl -Winter Olympics -Vikings vs Eagles -Jennifer Aniston -Carter G. Woodson -Patriots -Virginia Woolf -Super Bowl score -Paula Modersohn-Becker -Florida shooting -What Time Is The Super Bowl -Mark Salling -LL Bean -Omarosa -Turpin -Mueller -SpaceX -Fifty Shades Freed -Super Bowl 2018 -Super Bowl 2018 -United States Of America Winter Olympics -Elizabeth Blackwell -Earthquake Today -Winter Olympics -calculator -Virginia Woolf -Kentucky shooting -Patriots -Scott Baio -Vince McMahon -Carter G. Woodson -Kylie Jenner -Super Bowl 2018 -Jessica Chastain -Luke Wilson -Super Bowl Commercials 2018 -Dwyane Wade -Vikings Vs Eagles -Amy Schumer -Doomsday Clock -Mikaela Shiffrin -Shaun White -Paula Modersohn-Becker -Olympic Medal Count -Elton John -Bill Paxton -Elizabeth Blackwell -Wilder Penfield -Sergei Eisenstein -Jessica Chastain -Super Bowl score -Justin Timberlake -Super Bowl score -Peter Rabbit -Kylie Jenner -Groundhog Day 2018 -Devin Nunes -Carter G. Woodson -Omarosa -Terry Bradshaw -Valentines Day -Paula Modersohn-Becker -Grammys 2018 -Virginia Woolf -United States Of America Winter Olympics -Wilder Penfield -Paula Modersohn-Becker -Mike Vrabel -Paula Modersohn-Becker -Valentines Day Memes -Vikings vs Eagles -Andrew Cunanan -Vince McMahon -Winter Olympics -Super Bowl 2018 -Larry Nassar -Memo -Obama portrait -Super Bowl 2018 -Jemele Hill -Paula Modersohn-Becker -NBA Trades -Bitcoin Price -Carter G. Woodson -Lari White -Patriots -Edible Arrangements -Tammy Duckworth -Cloverfield Paradox -Jo Jo White -Super Bowl 2018 -Patriots -Virginia Woolf -Florida shooting -Super Bowl 2018 -NBA Trades -Wilder Penfield -SpaceX -Paula Modersohn-Becker -Grammys 2018 -Deadpool 2 -Patriots -Grammys 2018 -This Is Us -Sabrina Dhowre -Riverdale -Happy Valentines Day -CNN -Enzo Amore -Sergei Eisenstein -Blue Ivy -Happy Valentines Day -Rasual Butler -Meteor -Dwyane Wade -Winter Olympics -Adam Rippon -Kelly Clark -Carter G. Woodson -Elizabeth Blackwell -Sting -Winter Olympics -Red Gerard -Maze Runner: The Death Cure -XFL -Adam Rippon -Elizabeth Blackwell -LeBron James -Super Bowl score -Google Classroom -Super Bowl score -Elizabeth Blackwell -Gus Kenworthy -Patriots -Super Bowl 2018 -Super Bowl score -Childish Gambino -calculator -Alessia Cara -New England Patriots owner -Super Bowl score -Classroom -Scott Baio -Super Bowl score -SpaceX -The 15:17 to Paris -The Resident -Florida shooting -Florida shooting -Elizabeth Blackwell -Pink -Happy Valentines Day -Gianni Versace -Super blue blood Moon -SpaceX -Mike Fisher -NFC Championship Game 2018 -SpaceX -Oscar Nominations 2018 -Chicago Weather -Lonzo Ball -Tammy Duckworth -Paula Modersohn-Becker -Jessica Chastain -SpaceX -Paula Modersohn-Becker -Alex Smith -Manchester United -Sergei Eisenstein -Super Blue Blood Moon -Paula Modersohn-Becker -Dow Jones -Sergei Eisenstein -The Home Depot -AR-15 -Royal Rumble 2018 -Patriots -Kentucky shooting -Obama portrait -Grammys 2018 -Paula Modersohn-Becker -Google Classroom -Grammys 2018 -Super blue blood Moon -Sergei Eisenstein -Super Bowl 2018 -Wilder Penfield -Vanessa Trump -Kim Kardashian -Patriots -Marlon Brando -government shutdown -CNN -Football Playoffs 2018 -Larry Nassar -Royal Rumble 2018 -Chinese New Year 2018 -Carter G. Woodson -Carter G. Woodson -Shiffrin -Dow Jones -Olympic medal count -Quincy Jones -Elizabeth Blackwell -Obama portrait -Brynn Cameron -The Resident -Wilder Penfield -Elizabeth Blackwell -Government Shutdown Meaning -Super Bowl 2018 -Super Bowl 2018 -NBA Trades -Uma Thurman -Wilder Penfield -Sarah Barthel -NBA Trades -What Time Is The Super Bowl -Quincy Jones -What Time Is The Super Bowl -CNN -Sergei Eisenstein -Pro Bowl 2018 -Florida shooting -What Time Is The Super Bowl -Kesha -Super Bowl 2018 -Grammys 2018 -Winter Olympics -calculator -Government shutdown -Ted Bundy -Winter Olympics -Google Classroom -SpaceX -Virginia Woolf -Winter Olympics -Wilder Penfield -Happy Valentines Day -JUUL -Vikings Vs Eagles -Cavs -Ohio State basketball -Patriots -New England Patriots owner -Elizabeth Blackwell -Joy Villa -Carter G. Woodson -Mark Salling -This Is Us -Patriots -Johnny Weir -Oscar Nominations 2018 -Pro Bowl 2018 -Justin Timberlake -Kesha Grammy -Heath Ledger -Vikings vs Eagles -Olive Garden -What Time Is The Super Bowl -Olympic Medal Count -What Time Is The Super Bowl -Super Bowl 2018 -Altered Carbon -Chinese New Year 2018 -Justin Timberlake -Elizabeth Blackwell -Yahoo Finance -Sergei Eisenstein -Oscar Nominations 2018 -Super Bowl 2018 -Bob Dole -Super Bowl 2018 -Super Bowl Commercials 2018 -Wilder Penfield -Trump State of the Union -Elizabeth Blackwell -UFC 220 -Paula Modersohn-Becker -Oscar Gamble -Virginia Woolf -Grammys 2018 -Government Shutdown -Kesha Grammy -Olympic medal count -Winter Olympics -Patriots -Tom Brady daughter -Kylie Jenner -Virginia Woolf -Super Bowl score -Duke basketball -Virginia Woolf -Cedi Osman -Super Bowl 2018 -Patriots -Vikings Vs Eagles -Government Shutdown 2018 -Elizabeth Blackwell -Carter G. Woodson -Winter Olympics -Winter Olympics -Elizabeth Blackwell -Super blue blood Moon -This Is Us -Florida shooting -Florida shooting -Florida shooting -Tom Petty -Mark Salling -Halsey -Sergei Eisenstein -Government Shutdown -Paula Modersohn-Becker -Grammys 2018 -Groundhog Day 2018 -Black Panther -Super Bowl Commercials -Government Shutdown Meaning -Elizabeth Blackwell -Dow Jones -Kylie Jenner -Jason Kelce -SAG Awards 2018 -Black Panther -Justin Timberlake -SpaceX -Obama portrait -Daytona 500 -Virginia Woolf -Government Shutdown Meaning -Florida shooting -Stan Lee -Grammys 2018 -Virginia Woolf -Government Shutdown -Bitcoin Price -Carter G. Woodson -Florida shooting -Jemele Hill -Bitcoin Price -Sergei Eisenstein -Scott Baio -Super Bowl score -Carter G. Woodson -Happy Valentines Day -Pro Bowl 2018 -NBA Trades -Pro Bowl 2018 -Adam Rippon -Vikings Vs Eagles -XFL -Super Bowl 2018 -Florida shooting -Kylie Jenner -Super Bowl score -Carter G. Woodson -Florida shooting -Nintendo Labo -Shiffrin -Ash Wednesday -Larry Nassar -Patriots -Patriots -The 15:17 to Paris -Grammys 2018 -school closings -What Time Is The Super Bowl -Super Bowl 2018 -Super Bowl 2018 -Carter G. Woodson -Aaliyah -Florida shooting -Paula Modersohn-Becker -Carter G. Woodson -Ohio State basketball -Sergei Eisenstein -Patriots -Grammys 2018 -earthquake today -Super Bowl 2018 -Government shutdown 2018 -Cory Booker -What Time Is The Super Bowl -Kim Cattrall -Winter Olympics -Groundhog Day 2018 -Patriots -Carter G. Woodson -Super Bowl score -Winter Olympics -Greg Monroe -Groundhog Day 2018 -Happy Valentines Day -Patriots -Shibutani -Winter Olympics -Scott Baio -Tom Petty -Altered Carbon -SpaceX -Government Shutdown -Mark Salling -Roger Federer -Patriots -Grammys 2018 -Jason Kidd -Justin Timberlake -New England Patriots owner -Atlanta Weather -Rachel Brand -Patriots -This Is Us -Juegos Olímpicos de Invierno 2018 -Carter G. Woodson -Kylie Jenner -Wilder Penfield -Super Bowl 2018 -Sergei Eisenstein -Paula Modersohn-Becker -Virginia Woolf -Wilder Penfield -Vikings vs Eagles -Elon Musk -Wilder Penfield -Paula Modersohn-Becker -Valentines Day -Vikings Vs Eagles -Wilder Penfield -Alaska earthquake -Vic Damone -Super Bowl 2018 -Robert Wagner -United States Of America Winter Olympics -Kylie Jenner -Cnbc -Blake Griffin -Patriots -Kylie Jenner -Larry Nassar -Tom Brady -SpaceX -Patriots -Government Shutdown -Super Bowl score -Alex Smith -Robert Wagner -Sergei Eisenstein -Trump State of the Union -Oscar Nominations 2018 -Happy Valentines Day -Kylie Jenner -Wilder Penfield -Google docs -Olympic Medal Count -Super Bowl 2018 -Eli Manning -Google docs -Kentucky shooting -Super blue blood Moon -Elizabeth Blackwell -Kim Kardashian -Columbine -Elizabeth Blackwell -Jason Kelce -Groundhog Day 2018 -Government shutdown 2018 -Naya Rivera -Patriots -Florida shooting -Daryle Singletary -calculator -Paula Modersohn-Becker -Sergei Eisenstein -National Pizza Day -Jennifer Aniston -Sergei Eisenstein -Drake -Winter Olympics -12 Strong -What Time Is The Super Bowl -Red Gerard -What Time Is The Super Bowl -Kylie Jenner -Elizabeth Blackwell -Carter G. Woodson -Luke Wilson -Winchester -Carter G. Woodson -Shaun White -Paula Modersohn-Becker -Florida shooting -Lil Pump -Vikings Vs Eagles -This Is Us -School Closings -Government Shutdown -Government Shutdown -Government Shutdown -Larry Nassar -Lauren Davis -New England Patriots owner -Virginia Woolf -Super Bowl 2018 -Vikings Vs Eagles -Government Shutdown -Virginia Woolf -Omarosa -Virginia Woolf -What Time Is The Super Bowl -Portia de Rossi -Jennifer Aniston -Wilder Penfield -Elizabeth Blackwell -Grammys 2018 -Super blue blood Moon -Elton John -Government Shutdown 2018 -Puppy Bowl 2018 -Happy Valentines Day -Florida shooting -Winter Olympics -Virginia Woolf -Patriots -Vikings Vs Eagles -Isaiah Thomas -Virginia Woolf -Luke Wilson -Carter G. Woodson -Super Bowl 2018 halftime show -Patriots -Super Bowl score -calculator -What Time Is The Super Bowl -NHL All Star Game -Virginia Woolf -Sergei Eisenstein -Ohio State basketball -Larry Nassar -Pro Bowl 2018 -SpaceX -Elton John -Super Bowl 2018 -Mcdonald's -Paula Modersohn-Becker -Florida shooting -Carter G. Woodson -Super Bowl 2018 -Ash Wednesday -Larry Nassar -school closings -This Is Us -Elizabeth Blackwell -Government Shutdown -Vikings Vs Eagles -Justin Timberlake -Super Bowl Commercials 2018 -Super Bowl score -Real Madrid -Wilder Penfield -Government Shutdown 2018 -Wilder Penfield -Groundhog Day 2018 -Grammys 2018 -Super Bowl score -Black Panther -Virginia Woolf -NBA Trades -Government Shutdown -Yu Darvish -Super Bowl score -Winter Olympics -Virginia Woolf -Super Bowl 2018 -Google Classroom -Johnny Weir -Joe Kennedy -Justin Timberlake -Chinese New Year 2018 -Super Bowl score -Vikings vs Eagles -Cavs -Eli Manning -Grammys 2018 -Amy Schumer -Winter Olympics -Isaiah Thomas -Grammys 2018 -Winter Olympics -Carter G. Woodson -Shaun White -DeMarcus Cousins -Kylie Jenner -Kylie Jenner -Andrew Cunanan -Florida shooting -Super Bowl score -Super Blue Blood Moon -Virginia Woolf -Super Bowl 2018 -Jessica Chastain -Super Bowl 2018 -Paula Modersohn-Becker -Paula Modersohn-Becker -Sarah Barthel -Government shutdown -Halsey -Stan Lee -Florida shooting -Elizabeth Blackwell -Alaska earthquake -Wilder Penfield -Valentines Day -SAG Awards 2018 -Valentines Day -Super Bowl score -Super Bowl score -Patriots -Groundhog Day 2018 -Government Shutdown -Alex Smith -Super Bowl 2018 halftime show -Justin Timberlake -Kris Dunn -Government Shutdown -Bitcoin Price -Ohio State basketball -Florida shooting -Super Bowl score -What Time Is The Super Bowl -Mark Salling -Ash Wednesday -Stan Lee -CNN -Wilder Penfield -Dane Cook -Winter Olympics -Virginia Woolf -Blake Griffin -NBA Trades -Alaska earthquake -Memo -Julie Ertz -Chloe Kim -Chris Paul -Dow Jones -Shaun White -Memo -Hope Hicks -Winter Olympics -Justin Timberlake -Alison Brie -Alexander Polinsky -Andrew McCabe -Dwyane Wade -Chloe Kim -Winter Olympics -Google Classroom -Solo Trailer -Patriots -Justin Timberlake -Red Gerard -Jeffrey Tambor -Adam Rippon -Happy Valentines Day -Carrie Underwood -Paula Modersohn-Becker -State of the Union -Amazon HQ2 -Virginia Woolf -Olympic medal count -LeBron James -Virginia Woolf -United States Of America Winter Olympics -Oscar Nominations 2018 -Grammys 2018 -Carter G. Woodson -Adam Rippon -Winter Olympics -Sergei Eisenstein -Carter G. Woodson -Walter Payton -Paula Modersohn-Becker -XFL -Kodak Black -Elizabeth Blackwell -Florida shooting -Rodney Hood -Kylie Jenner -Trump State of the Union -Elizabeth Blackwell -Paula Modersohn-Becker -Bruno Mars -Virginia Woolf -Kim Kardashian -Solo Trailer -Sergei Eisenstein -Lena Zawaideh -Elizabeth Blackwell -Paula Modersohn-Becker -Kylie Jenner -Andrew McCabe -Adam Rippon -Government shutdown -Jennifer Aniston -Elizabeth Blackwell -Super Bowl 2018 -Super Bowl 2018 -Oscar Nominations 2018 -Paula Modersohn-Becker -What Time Is The Super Bowl -Trump State of the Union -Todd Haley -Patriots -Edible Arrangements -Government Shutdown -CNN -Super Bowl score -NBA Trades -Government shutdown 2018 -Dow Jones -Super Bowl Commercials 2018 -Joel Taylor -New England Patriots owner -Sergei Eisenstein -Florida shooting -Super blue blood Moon -Sergei Eisenstein -Black Panther -Elizabeth Blackwell -Steven Tyler -Adam Rippon -Wilder Penfield -What Time Is The Super Bowl -Winter Olympics -Elizabeth Blackwell -Black Panther -Government shutdown -Blake Griffin -Sergei Eisenstein -Larry Nassar -Patriots -John Mahoney -Kawhi Leonard -State of the Union -Carter G. Woodson -Carter G. Woodson -Sergei Eisenstein -Winter Olympics -Sergei Eisenstein -Scott Baio -Kentucky shooting -Blue Ivy -Florida shooting -February -Patriots -Luke Wilson -NBA Trades -Pro Bowl 2018 -Dow Jones -Wilder Penfield -Florida shooting -Chicago West -SAG Awards 2018 -Florida shooting -12 Strong -Joe Kennedy -Super Bowl 2018 -Elizabeth Blackwell -Carter G. Woodson -Bitcoin Price -Happy Valentines Day -NBA Trades -Winter Olympics -calculator -Jason Kelce -Joe Kennedy -calculator -Scandal -Rodney Hood -Patriots -Winter Olympics -Kristaps Porzingis -Trey Gowdy -What Time Is The Super Bowl -Florida shooting -Virginia Woolf -Patriots -Paula Modersohn-Becker -Joy Villa -Logan Paul -Super Bowl score -Government Shutdown Meaning -Sergei Eisenstein -Gianni Versace -Johnny Weir -Wilder Penfield -Wilder Penfield -Super Bowl score -Virginia Woolf -Elizabeth Blackwell -Super Bowl score -Wilder Penfield -Carter G. Woodson -Elizabeth Blackwell -Shaun White -Dow Jones -Patriots -Daryle Singletary -Wilder Penfield -Chloe Kim -calculator -Paula Modersohn-Becker -NBA Trades -Wilder Penfield -Wilder Penfield -Happy Valentines Day -Paula Modersohn-Becker -Presidents Day 2018 -Grammys 2018 -What Time Is The Super Bowl -Chrissy Teigen -Tammy Duckworth -Wilder Penfield -Oscar Nominations 2018 -Bill Paxton -Luke Wilson -Forever My Girl -Amazon Stock -stock market -Dow Jones -National Pizza Day -Super Bowl score -Olympics 2018 -Super Bowl score -Snap Stock -Vikings vs Eagles -Winter Olympics -Government Shutdown -Patriots -Justin Timberlake -Sergei Eisenstein -Sergei Eisenstein -Carter G. Woodson -Paula Modersohn-Becker -Oscar Nominations 2018 -Winter Olympics -Nba All Star Draft -Elton John -Robert Wagner -Grammys 2018 -Wilder Penfield -School closings -Sergei Eisenstein -Government Shutdown -Jeff Flake -Edwin Jackson -Super Bowl 2018 -Super Bowl score -Maze Runner: The Death Cure -Solo Trailer -Bitcoin Price -SpaceX -Bitcoin Price -Sergei Eisenstein -SpaceX -Virginia Woolf -Chicago West -Kylie Jenner -Omarosa -SpaceX -Super Blue Blood Moon -NFC Championship Game 2018 -Neil Diamond -Patti LuPone -Wilder Penfield -Paula Modersohn-Becker -Patriots -Patriots -Justin Timberlake -Winter Olympics -Yahoo Finance -Warren Miller -Jalen Ramsey -Elizabeth Blackwell -Paula Modersohn-Becker -This Is Us -Sting -Katie Couric -Betty White -Adam Rippon -Sergei Eisenstein -Super Bowl 2018 -Wilder Penfield -Government Shutdown Meaning -Winter Olympics -Shaun White -Carter G. Woodson -Florida shooting -Den of Thieves -Larry Nassar -Wilder Penfield -Patriots -Patriots -Alaska earthquake -Kentucky shooting -Dwyane Wade -Super Bowl 2018 -Tonga -Paula Modersohn-Becker -Super Bowl Commercials 2018 -SpaceX -Real Madrid -Lady Doritos -Government Shutdown -Florida shooting -Paula Modersohn-Becker -Patriots -This Is Us -Super Bowl score -Florida shooting -Patriots -Larry Nassar -All Star Weekend 2018 -Omarosa -SpaceX -Atlanta Weather -NBA Trades -Danielle Herrington -Florida shooting -SpaceX -Joe Kennedy -Dow Jones -Paula Modersohn-Becker -Super Bowl score -Outback Steakhouse -Government Shutdown -Sergei Eisenstein -Sergei Eisenstein -Bitcoin Price -Isaiah Thomas -Andrew McCabe -Super Bowl score -New England Patriots owner -Sergei Eisenstein -Oscar Nominations 2018 -Super Bowl score -XFL -Winter Olympics -Virginia Woolf -Kylie Jenner -Sergei Eisenstein -Sergei Eisenstein -Oscar Nominations 2018 -Carter G. Woodson -Winter Olympics -Carter G. Woodson -Super Bowl score -Super Bowl score -Super Bowl score -Winter Olympics -Florida shooting -Greg Monroe -School closings -Groundhog Day 2018 -Alex Smith -Lil Xan -Josh McDaniels -Paula Modersohn-Becker -Alex Smith -Real Madrid -Winter Olympics -Fifty Shades Freed -Mark Salling -Super Bowl Commercials -Montreal Cognitive Assessment -Despacito -Super blue blood Moon -Google Classroom -Government Shutdown Meaning -Patriots -Virginia Woolf -Derrick Rose -Grammys 2018 -Dwyane Wade -Virginia Woolf -Shaun White -Friends movie -Fifty Shades Freed -Real Madrid -Tom Petty -Andrew Cunanan -Elizabeth Blackwell -Black Panther -Nadal -Chloe Kim Snowboarder -Puppy Bowl 2018 -Winter Olympics -State of the Union -Patriots -Royal Rumble 2018 -Paula Modersohn-Becker -Quincy Jones -Utah Jazz -Kentucky shooting -Release The Memo -Elizabeth Blackwell -Cherry Seaborn -Patriots -Black Panther -Sergei Eisenstein -Kylie Jenner -Sal Castro Middle School -Sergei Eisenstein -Mark Salling -Sergei Eisenstein -Elizabeth Blackwell -Sergei Eisenstein -SpaceX -Sergei Eisenstein -Sergei Eisenstein -Elizabeth Blackwell -SpaceX -Emily Sweeney -Alex Smith -Wilder Penfield -SpaceX -Elizabeth Blackwell -Carter G. Woodson -Justin Timberlake -What Time Is The Super Bowl -Winter Olympics -Pro Bowl 2018 -Hope Hicks -National Pizza Day -Amy Schumer -Natalie Wood -Wilder Penfield -Sergei Eisenstein -Larry Nassar -Meteor -Wilder Penfield -Elizabeth Blackwell -Farmers Insurance Open 2018 -Super Bowl score -Obama portrait -Justin Timberlake -AFC Championship Game 2018 -Lunar eclipse -Elizabeth Blackwell -Grammys 2018 -State of the Union -Adam Rippon -Winter Olympics -Virginia Woolf -Sergei Eisenstein -Super Bowl score -SAG Awards 2018 -Chloe Kim -Solo Trailer -Puppy Bowl 2018 -Amtrak -Kentucky shooting -Robert Wagner -Carter G. Woodson -Ronaldinho -Kylie Jenner -SpaceX -Kylie Jenner -Virginia Woolf -Florida shooting -Grammys 2018 -Bitcoin Price -Shaun White -Happy Valentines Day -Aaliyah -Wilder Penfield -Florida shooting -12 Strong -Winter Olympics -Michigan State -Super Bowl score -Roger Federer -Super Bowl score -Friends movie -Chinese New Year 2018 -Florida shooting -Kylie Jenner -Sergei Eisenstein -Florida shooting -Larry Nassar -stock market -Rachel Brand -Super Bowl score -Quincy Jones -Marlon Brando -Eli Manning -Google Classroom -Florida shooting -Yahoo Finance -Jeff Flake -Happy Valentines Day -School Closings -Solo Trailer -Eli Manning -fake news awards -Celtics -Shaun White -Larry Nassar -Winter Olympics -Aliona Savchenko -Dow Jones -Kylie Jenner -Farmers Insurance Open 2018 -Justin Timberlake -Chris Mazdzer -What Time Is The Super Bowl -United States Of America Winter Olympics -Adam Rippon -What Time Is The Super Bowl -Oscar Nominations 2018 -Paula Modersohn-Becker -Joe Kennedy -State of the Union -Paula Modersohn-Becker -Paula Modersohn-Becker -Carter G. Woodson -Cavs -Olympic medal count -Samson -Florida shooting -Elizabeth Blackwell -Trump State of the Union -Elizabeth Blackwell -Black Panther -Carter G. Woodson -Super Blue Blood Moon -Hope Hicks -Mark Salling -Mickey Jones -Super Bowl score -Virginia Woolf -Carter G. Woodson -Release The Memo -Alessia Cara -Solo Trailer -Release The Memo -Cavs -Elizabeth Blackwell -Cavs -Super Bowl score -Vince McMahon -Justin Timberlake -Vikings Vs Eagles -Kylie Jenner -The 15:17 to Paris -Jessica Chastain -Chinese New Year 2018 -Patriots -Joe Kennedy -Grammys 2018 -Apple stock -Cloverfield Paradox -12 Strong -Dow Jones -Kylie Jenner -Shaun White -Winter Olympics -State of the Union -What Time Is The Super Bowl -Valentines Day -Super Bowl score -Kylie Jenner -Happy Valentines Day -Sergei Eisenstein -Patriots -Vikings vs Eagles -Elizabeth Blackwell -Elizabeth Blackwell -Super Bowl 2018 -Logan Paul -Wilder Penfield -Vikings Vs Eagles -NBA Trades -Florida shooting -Black Panther -AR-15 -School closings -Grammys 2018 -Super Bowl 2018 -Paula Modersohn-Becker -Mark Salling -LeBron James -Mark Salling -Carrie Underwood -Tom Petty -Super blue blood Moon -Winter Olympics -Government shutdown -NBA Trades -Super blue blood Moon -calculator -Elizabeth Blackwell -Virginia Woolf -Paula Modersohn-Becker -Greg Monroe -Robert Wagner -Carter G. Woodson -Kylie Jenner -Quincy Jones -Childish Gambino -Dwyane Wade -Valentines Day -Megan Barry -Kentucky shooting -Real Madrid -Florida shooting -Government Shutdown 2018 -NBA Trades -Elizabeth Blackwell -Carter G. Woodson -Paula Modersohn-Becker -Kim Kardashian -Happy Valentines Day -Alex Smith -Alex Smith -Solo Trailer -Cherry Seaborn -Valentines Day -Wilder Penfield -Winter Olympics -Paula Modersohn-Becker -Florida shooting -Larry Nassar -Paula Modersohn-Becker -Tsunami Warning -Elizabeth Blackwell -fake news awards -Winter Olympics -SpaceX -Jennifer Aniston -government shutdown -Fredo Santana -New England Patriots owner -Wilder Penfield -National Pizza Day -Elizabeth Blackwell -CNN -What Time Is The Super Bowl -Government Shutdown -Dennis Edwards -Super Bowl 2018 -Maze Runner: The Death Cure -Zion Williamson -Did the Groundhog See His Shadow -Sergei Eisenstein -Valentines Day -Sergei Eisenstein -Elizabeth Blackwell -Red Gerard -Super Bowl score -Carter G. Woodson -Government Shutdown -Betty White -Taiwan Earthquake Today -Florida shooting -Florida shooting -Super Bowl score -Elizabeth Blackwell -Winter Olympics -SpaceX -Pro Bowl 2018 -Super Bowl 2018 -Lorenzo Cain -Joe Kennedy -Yahoo Finance -Larry Nassar -Patriots -Oscar Nominations 2018 -Wilder Penfield -Johnny Weir -Kentucky shooting -Lunar eclipse -Super Bowl score -What Time Is The Super Bowl -SpaceX -Super Bowl score -Toys R Us -Elizabeth Blackwell -NFC Championship Game 2018 -Florida shooting -Wilder Penfield -What Time Is The Super Bowl -What Time Is The Super Bowl -Patriots -Government shutdown -Kylie Jenner -Carter G. Woodson -Super Bowl score -Fredo Santana -Rodney Hood -Paula Modersohn-Becker -Florida shooting -Virginia Woolf -Elizabeth Blackwell -Kylie Jenner -Paula Modersohn-Becker -Wilder Penfield -Grammys 2018 -Wilder Penfield -Winter Olympics -FC Barcelona -Esteban Loaiza -Meteor -Josh McDaniels -IXL -Robert Wagner -Pro Bowl 2018 -Enzo Amore -Groundhog Day 2018 -Wilder Penfield -Elizabeth Blackwell -Paula Modersohn-Becker -Memo -Kim Kardashian -State of the Union -Vikings Vs Eagles -Virginia Woolf -Black Panther -Lil Xan -Super Bowl 2018 -Winter Olympics -Shiffrin -Virginia Woolf -Memo -Super Bowl score -Cherry Seaborn -Berkshire Hathaway -Wilder Penfield -Super Bowl score -Justin Timberlake -This is Us -Terrell Owens -State of the Union -Cnbc -Kentucky shooting -Chris Paul -Government Shutdown Meaning -Carter G. Woodson -Mr Rogers -Florida shooting -SpaceX -Purdue basketball -Florida shooting -Winter Olympics -Chipper Jones -Trump Hair -Jennifer Aniston -Rasual Butler -Sergei Eisenstein -Paula Modersohn-Becker -Super Bowl 2018 -Government Shutdown Meaning -Wilder Penfield -What Time Is The Super Bowl -Sergei Eisenstein -12 Strong -Dow Jones -Super Bowl 2018 -Sergei Eisenstein -What Time Is The Super Bowl -Kristaps Porzingis -Sergei Eisenstein -Super Bowl score -Champions League -Florida shooting -Valentines Day -Winter Olympics -Kingdom Come Deliverance -Super Bowl score -Paula Modersohn-Becker -Super Bowl 2018 -Justin Timberlake -Patriots -Sergei Eisenstein -Virginia Woolf -Super Bowl 2018 -Blood Moon -Virginia Woolf -Patriots -Kylie Jenner -Grammys 2018 -Forever My Girl -Elizabeth Blackwell -Government Shutdown -UFC 220 -Sergei Eisenstein -Chicago West -Super Bowl Commercials 2018 -Blood Moon -Friends The Movie 2018 -SpaceX -Shaun White -Marlon Brando -SpaceX -Kylie Jenner -Shaun White -Winter Olympics -Carter G. Woodson -Virginia Woolf -Cory Booker -Naya Rivera -Joe Kennedy -Florida shooting -Omarosa -Brynn Cameron -Super Bowl 2018 -Isaiah Canaan -Justin Timberlake -Larry Nassar -NBA Trades -Solo Trailer -Wilder Penfield -Friends movie -happy new year in Chinese -Paula Modersohn-Becker -Government Shutdown -Rodney Hood -Groundhog Day 2018 -Friends movie -Steve Wynn -Jessica Chastain -SpaceX -Valentines Day Memes -SpaceX -Vikings Vs Eagles -Lindsey Vonn -Jennifer Aniston -calculator -Carter G. Woodson -Aliona Savchenko -Paula Modersohn-Becker -Johnny Weir -Grammys 2018 -Elizabeth Blackwell -Kentucky shooting -Elizabeth Blackwell -Sergei Eisenstein -Dow Jones -NBA Trades -Justin Timberlake -Patriots -national signing day 2018 -Patriots -Carter G. Woodson -Dow Jones -Alaska earthquake -Grammys 2018 -Elizabeth Blackwell -Winter Olympics -Oscar Nominations 2018 -Women's March 2018 -Rett Syndrome -Google Classroom -Justin Timberlake -Shaun White -Super Bowl score -Super Bowl 2018 -Elizabeth Blackwell -Florida shooting -Wilder Penfield -Super Bowl 2018 -Justin Timberlake -NBA Trades -Altered Carbon -Government shutdown -Paula Modersohn-Becker -This Is Us -Super Bowl 2017 -Super Bowl 2018 -Winter Olympics -Florida shooting -State of the Union -Memo -Virginia Woolf -Cavs -Virginia Woolf -Aliona Savchenko -Adam Hicks -Solo Trailer -Paula Modersohn-Becker -Groundhog Day 2018 -Florida shooting -Dow Jones -Super Bowl score -Elizabeth Blackwell -Super Bowl 2018 -Wilder Penfield -Sergei Eisenstein -CNN -Super Bowl Commercials 2018 -Kim Kardashian -Paula Modersohn-Becker -Eric Wood -Elizabeth Blackwell -Happy Valentines Day -Amazon stock -United States Postal Service -Obama portrait -Tom Brady -Mark Salling -Government Shutdown -Wilder Penfield -Julie Ertz -Super Bowl score -United States Postal Service -Carter G. Woodson -Outback Steakhouse -Super Bowl 2018 -Florida shooting -SpaceX -XFL -Justin Timberlake -Despacito -Government Shutdown -Government Shutdown Meaning -NBC Sports -Dow Jones -Valentines Day Memes -Kylie Jenner -Wilder Penfield -Lunar eclipse -Jessica Biel -NBA Trades -Bruno Mars -Winter Olympics -Sergei Eisenstein -Royal Rumble 2018 -Fredo Santana -Google Classroom -Evgenia Medvedeva -Bellator 192 -Florida shooting -Sergei Eisenstein -Virginia Woolf -Russell Wilson -Cbs -Florida shooting -Super Bowl 2018 -Chloe Kim -National Pizza Day -Kylie Jenner -SpaceX -Government Shutdown -Elton John -Trump State of the Union -Super blue blood Moon -Super Bowl score -Sergei Eisenstein -Elizabeth Blackwell -Wilder Penfield -Solo Trailer -12 Strong -Black Panther -Carter G. Woodson -Larry Nassar -Elizabeth Blackwell -Jeff Flake -Super Bowl score -Ursula Le Guin -Paula Modersohn-Becker -Carter G. Woodson -Kylie Jenner -Wilder Penfield -Sergei Eisenstein -Cavs -Valentines Day -Olympic medal count -Chinese New Year 2018 -Vikings Vs Eagles -Grammys 2018 -Winter Olympics -Winter Olympics -Doomsday Clock -Patriots -Kylie Jenner -Enzo Amore -Elizabeth Blackwell -XFL -Winter Olympics -Virginia Woolf -curling -Steven Tyler -Gods Plan -Happy Valentines Day -Chicago West -Larry Nassar -Super Bowl score -Royal Rumble 2018 -Obama portrait -The 15:17 to Paris -State of the Union -James Harden -Justin Timberlake -Super Bowl Commercials 2018 -Champions League -Kingdom Come Deliverance -LeBron James -Carter G. Woodson -Black Panther -Lee Miglin -Andrew Cunanan -Wilder Penfield -Ronaldinho -Peter Rabbit -AR-15 -Elizabeth Blackwell -Meteor -Winter Olympics -Super Bowl 2018 -Grammys 2018 -Black Panther -Winter Olympics -Duke Basketball -Paula Modersohn-Becker -Justin Timberlake -Carter G. Woodson -Alex Smith -The Home Depot -Carter G. Woodson -Justin Timberlake -Peter Rabbit -Jamie Anderson -Rasual Butler -Dow Jones -Kim Kardashian -Valentine's Day -SpaceX -Champions League -Memo -Government shutdown 2018 -Paula Modersohn-Becker -Rasual Butler -Super Bowl score -Gods Plan -Justin Timberlake -Florida shooting -Simona Halep -Zion Williamson -Meteor -Princess Eugenie -SpaceX -Patriots -Kentucky shooting -Justin Timberlake -Carter G. Woodson -Mike Vrabel -Chris Long -Patriots -CNN -Bitcoin Price -Hope Hicks -Tom Brady -Joshua Cooper Ramo -Winter Olympics -Winter Olympics -Elizabeth Blackwell -Chief Wahoo -Super blue blood Moon -Kesha -Black Panther -Bitcoin Price -Rasual Butler -Florida shooting -Florida shooting -Royal Rumble 2018 -Super Bowl 2018 -Marlon Brando -Kentucky shooting -Elizabeth Blackwell -Derrick Rose -Patriots -Sergei Eisenstein -Super Bowl 2018 -Royal Rumble 2018 -Super Blue Blood Moon -Florida shooting -Lindsey Vonn -Meteor -12 Strong -Winter Olympics -Virginia Woolf -Larry Nassar -Paula Modersohn-Becker -School Closings -Florida shooting -NBA Trades -Dwyane Wade -Florida shooting -Elizabeth Blackwell -Johnny Weir -XFL -Edwin Jackson -Super Bowl 2018 -Steve Mcnair -Justin Timberlake -Winter Olympics -Carter G. Woodson -Sergei Eisenstein -State of the Union -Best Superbowl Commercials 2018 -Winter Olympics -CNN -Women's March 2018 -Carter G. Woodson -Steve Mcnair -Virginia Woolf -Sammy Sosa -Patti LuPone -Phantom Thread -Government shutdown 2018 -Johnny Manziel -Mark Salling -Winter Olympics -Government Shutdown -Isaiah Canaan -Super Bowl score -Patriots -Alessia Cara -Obama portrait -Patriots -Call Me by Your Name -Patriots -Obama portrait -Tom Petty -Virginia Woolf -Wilder Penfield -Real Madrid -Oscar Nominations 2018 -Super Bowl score -Justin Timberlake -Princess Eugenie -Patriots -Carter G. Woodson -Carter G. Woodson -Harley Barber -Virginia Woolf -Ar 15 -UFC 220 -Sergei Eisenstein -Meteor -Waco -tsunami -Joshua Cooper Ramo -Kylie Jenner -Ash Wednesday -school closings -Google Classroom -Super Bowl score -Kylie Jenner -Super Bowl 2018 -Sergei Eisenstein -Scott Baio -Carter G. Woodson -New England Patriots owner -Mikaela Shiffrin -Cherry Seaborn -Betty White -XFL -Post Malone -Elizabeth Blackwell -The 15:17 to Paris -SAG Awards 2018 -Sergei Eisenstein -Winter Olympics -Sergei Eisenstein -Super Bowl 2018 halftime show -James Baldwin -Mark Salling -Cloverfield Paradox -Patriots -Kesha -Royal Rumble 2018 -LeBron James -Winter Olympics -Patriots -Super Bowl 2018 -Lady Bird -Football Playoffs 2018 -Super Bowl score -Super Bowl 2018 -John Mahoney -Google Classroom -Blake Griffin Trade -Florida shooting -Grammys 2018 -Meteor -Patriots -Super blue blood Moon -North Korean cheerleaders -SpaceX -Jeff Flake -Paula Modersohn-Becker -Release The Memo -Wilder Penfield -Columbine Shooting -Larry Nassar -Red Gerard -Jennifer Aniston -Groundhog Day 2018 -Elizabeth Blackwell -Government shutdown -Sandy Hook -Sergei Eisenstein -Elton John -Fredo Santana -Government Shutdown -Government Shutdown Meaning -Paula Modersohn-Becker -Zuleyka Rivera -Chloe Kim -Patriots -Purdue Basketball -AFC Championship Game 2018 -Super Bowl 2018 -Larry Nassar -Cavs -Shaun White -Patriots -Grammys 2018 -Florida shooting -Super Bowl 2018 -Wilder Penfield -Lonzo Ball -Super Bowl 2018 -Wilder Penfield -Sal Castro Middle School -Black Lightning -calculator -Oscar Nominations 2018 -Maria Menounos -Lunar eclipse -Elizabeth Blackwell -Omarosa -Joe Kennedy -Grammys 2018 -The 15:17 to Paris -Reg E Cathey -Florida shooting -calculator -Eli Manning -Kylie Jenner -What Time Is The Super Bowl -State of the Union -Vikings Vs Eagles -NHL All Star Game -Kodak Black -Alex Smith -Winter Olympics -SpaceX -Carter G. Woodson -What Time Is The Super Bowl -Kylie Jenner -Vikings Vs Eagles -Sergei Eisenstein -Elizabeth Blackwell -The Home Depot -Zion Williamson -Solo Trailer -Blake Griffin -Virginia Woolf -Super Bowl score -Mark Salling -Mark E Smith -Super Bowl 2018 -Super Bowl 2018 -Super Bowl 2018 -Rolling Loud -State of the Union -Joe Kennedy -Paula Modersohn-Becker -Wilder Penfield -Virginia Woolf -Justin Timberlake -Paula Modersohn-Becker -SpaceX -Winter Olympics -Justin Timberlake -Super blue blood Moon -CNN -Memo -Duke Basketball -Amazon HQ2 -School closings -Carter G. Woodson -Mark Salling -Chris Mazdzer -This Is Us -Ar 15 -Jamie Dornan -Paula Modersohn-Becker -Zion Williamson -Florida shooting -Mark Salling -Cavs -Alex Smith -Dwyane Wade -Rasual Butler -Russell Wilson -calculator -Sergei Eisenstein -Patriots -Kylie Jenner -Florida shooting -Carter G. Woodson -Elizabeth Blackwell -Royal Rumble 2018 -Larry Nassar -Government Shutdown -Luke Wilson -Sergei Eisenstein -State of the Union -Quincy Jones -Wilder Penfield -Wilder Penfield -Carter G. Woodson -Elizabeth Blackwell -Wilder Penfield -Puppy Bowl 2018 -Super Bowl score -Paula Modersohn-Becker -State of the Union -12 Strong -United States Of America Winter Olympics -Patriots -Natalie Portman -Sergei Eisenstein -Winter Olympics -Larry Nassar -Winter Olympics -Gods Plan -SpaceX -Casey Affleck -Dow Jones -Virginia Woolf -Super Bowl score -Caroline Wozniacki -Florida shooting -Super Bowl score -Paula Modersohn-Becker -Patriots -Government Shutdown -Virginia Woolf -Shaun White -Waco -Virginia Woolf -Patriots -Nathan Chen -Paula Modersohn-Becker -Patriots -Super Bowl 2018 -Mexico earthquake -Super Bowl score -Patriots -Elizabeth Blackwell -Super Bowl score -Super Bowl score -Nathan Chen -Wilder Penfield -Justin Timberlake -Super Bowl 2018 -Sergei Eisenstein -Government Shutdown -Paula Modersohn-Becker -Winter Olympics -KSI -Patriots -Virginia Woolf -Blake Griffin -Sergei Eisenstein -Chloe Kim -Virginia Woolf -Elizabeth Blackwell -Virginia Woolf -Government Shutdown -Larry Nassar -Virginia Woolf -Elizabeth Blackwell -XIV -Super Bowl 2018 halftime show -Grammys 2018 -Langston Hughes -Shaun White -Florida shooting -Winter Olympics -Virginia Woolf -Google Classroom -Happy Valentines Day -Super Bowl 2018 -Sergei Eisenstein -Tiger Woods -Isaiah Canaan -Patriots -Chicago West -Mikaela Shiffrin -Kylie Jenner -Patriots -Mark Salling -Carter G. Woodson -Winter Olympics -Black Panther -Virginia Woolf -Mike Tomlin -Groundhog Day 2018 -Kylie Jenner -Kylie Jenner -Winter Olympics -Florida shooting -XFL -Tiger Woods -Google docs -Kylie Jenner -shutdown -Virginia Woolf -Rasual Butler -Super Bowl 2018 -Florida shooting -Paula Modersohn-Becker -calculator -Super Bowl 2018 -Florida shooting -Kylie Jenner -State of the Union -Super Bowl 2018 -Jennifer Aniston -Sergei Eisenstein -Patriots -Super Bowl 2018 -Enzo Amore -Omarosa -Justin Timberlake -Patriots -Justin Timberlake -Larry Nassar -Bellator 192 -Olympic Medal Count -Wilder Penfield -SAG Awards 2018 -Kylie Jenner -Government shutdown 2018 -Phantom Thread -Presidents Day 2018 -Lee Miglin -Bitcoin Price -Patriots -Esteban Loaiza -Jason Kelce -SpaceX -Red Gerard -Tammy Duckworth -Elizabeth Blackwell -Alaska earthquake -Carter G. Woodson -NBA Trades -Patriots -Mark Salling -Fifty Shades Freed -Cavs -Daryle Singletary -calculator -State of the Union -Super Bowl 2018 -This Is Us -Happy Valentines Day -Daryle Singletary -United States Of America Winter Olympics -Dwyane Wade -Wilder Penfield -Cherry Seaborn -Wilder Penfield -Elizabeth Blackwell -Jennifer Aniston -Larry Nassar -Gods Plan -NFC Championship Game 2018 -Kylie Jenner -Football Playoffs 2018 -Houston Rockets -Super blue blood Moon -Wilder Penfield -blue alert -Government Shutdown -What Time Is The Super Bowl -Wilder Penfield -Friends movie -Florida shooting -Sergei Eisenstein -Florida shooting -Virginia Woolf -Sergei Eisenstein -Happy Valentines Day -Alex Smith -SpaceX -Sergei Eisenstein -Paula Modersohn-Becker -Super Bowl 2018 -Quentin Tarantino -Florida shooting -Camila Cabello -Sergei Eisenstein -Isaiah Thomas -Wilder Penfield -Kylie Jenner -Kim Cattrall -Patriots -Patriots -Winter Olympics -Edible Arrangements -Sergei Eisenstein -Virginia Woolf -Chipper Jones -Winter Olympics -Virginia Woolf -Grammys 2018 -Super Bowl score -Real Madrid -Wilder Penfield -Government Shutdown -Patriots -Chinese New Year 2018 -Elizabeth Blackwell -XFL -Patriots -Childish Gambino -Esteban Loaiza -Jimmy Garoppolo -Joe Kennedy -Fifty Shades Freed -Olivia Culpo -Alaska earthquake -Todd Haley -Super Bowl score -Meteor -Sergei Eisenstein -Patriots -Super Bowl score -Red Gerard -Emily Sweeney -Patriots -Chloe Kim -Larry Nassar -Scott Baio -Puppy Bowl 2018 -Patriots -Paula Modersohn-Becker -Government Shutdown -What Time Is The Super Bowl -Virginia Woolf -James Maslow -Carter G. Woodson -NFL Honors -Virginia Woolf -Super Bowl 2018 -Virginia Woolf -Patriots -Monster Hunter World -Hope Hicks -Peter Rabbit -Real Madrid -Cloverfield Paradox -Virginia Woolf -Meteor -UFC 220 -Wilder Penfield -Winter Olympics -Virginia Woolf -Carter G. Woodson -Elizabeth Blackwell -SpaceX -NBA Trades -Winter Olympics -Elizabeth Blackwell -Winter Olympics -Red Gerard -earthquake -Super Bowl 2018 -Super Bowl score -Sergei Eisenstein -curling -Government shutdown -Sergei Eisenstein -Shibutani -Wilder Penfield -Classroom -Larry Nassar -Dwyane Wade -Larry Nassar -Bitcoin Price -Aaliyah -Carter G. Woodson -Wilder Penfield -Super Bowl score -Carter G. Woodson -Super Bowl score -Virginia Woolf -Mattie Larson -Super Bowl score -Patriots -Logan Paul -Wilder Penfield -Kylie Jenner -Virginia Woolf -Florida shooting -Florida shooting -Wilder Penfield -Justin Timberlake -Grammys 2018 -Super blue blood Moon -Isaiah Thomas -Virginia Woolf -Adam Rippon -Peter Rabbit -Shaun White -Sergei Eisenstein -Jessica Chastain -Kylie Jenner -Google docs -Government Shutdown -Paula Modersohn-Becker -SAG Awards 2018 -Sergei Eisenstein -Black Panther -SpaceX -Grammys 2018 -calculator -Walter Payton -Patriots -Sergei Eisenstein -Paula Modersohn-Becker -Sergei Eisenstein -Patriots -Rachel Brand -NBA Trades -Virginia Woolf -Kylie Jenner -Hillary Clinton -Grammys 2018 -Toys R Us -Josh McDaniels -Riverdale -Mark E Smith -Andrew McCabe -Black Panther -Wilder Penfield -Katie Couric -Super Bowl 2018 -Sal Castro Middle School -Quentin Tarantino -Shaun White -Florida shooting -Paula Modersohn-Becker -Rob Porter -Elton John -Grammys 2018 -Alex Smith -Florida shooting -Justin Timberlake -Elizabeth Blackwell -Kylie Jenner -Patriots -Super Bowl score -Carter G. Woodson -Winter Olympics -Elizabeth Blackwell -Real Madrid -Super Bowl score -Super Bowl 2018 -Paula Modersohn-Becker -Florida shooting -Patriots -State of the Union -Super Bowl score -Alaska earthquake -Kim Kardashian -Olympic medal count -Chief Wahoo -Chris Paul -Justin Timberlake -Carter G. Woodson -Gigi Hadid -Carter G. Woodson -School Closings -Paula Modersohn-Becker -Eric Wood -Chinese New Year 2018 -Super Bowl 2018 -Isaiah Thomas -Super Bowl score -Elizabeth Blackwell -Mcdonald's -Chloe Kim -Super Bowl 2018 -Paula Modersohn-Becker -Johnny Weir -Government Shutdown -Paula Modersohn-Becker -Patriots -Vikings Vs Eagles -Kesha Grammy -Jason Momoa -Cavs -Government shutdown -Oscar Nominations 2018 -What Time Is The Super Bowl -Super blue blood Moon -Super Bowl score -Megan Barry -Government shutdown 2018 -Isaiah Canaan -Justin Timberlake -Patriots -Shaun White -Vince McMahon -Vikings Vs Eagles -Kylie Jenner -Reg E Cathey -Luke Wilson -State of the Union -Super Blue Blood Moon -Virginia Woolf -What Time Is The Super Bowl -Jessica Chastain -Justin Timberlake -Patriots -Wilder Penfield -Sergei Eisenstein -Winter Olympics -Black Panther -Grammys 2018 -Memo -Sergei Eisenstein -Virginia Woolf -Chinese New Year 2018 -Super Bowl 2018 -Larry Nassar -Sarah Barthel -Grammys 2018 -Rodney Hood -What Time Is The Super Bowl -Carter G. Woodson -Eli Manning -Dennis Edwards -Winter Olympics -Nadal -Kentucky shooting -Cavs -Super Bowl 2018 -Florida shooting -12 Strong -What Time Is The Super Bowl -Vikings Vs Eagles -Amazon stock -Paula Modersohn-Becker -Larry Nassar -Meteor -Nintendo Labo -Deadpool 2 -Elizabeth Blackwell -What Time Is The Super Bowl -Carter G. Woodson -Paula Modersohn-Becker -Did the Groundhog See His Shadow -fake news awards -Winter Olympics -Super Bowl score -Lindsey Vonn -Did the Groundhog See His Shadow -The 15:17 to Paris -Hope Hicks -School Closings -Elizabeth Blackwell -Sergei Eisenstein -Carter G. Woodson -Heath Ledger -Virginia Woolf -Black Panther -Vikings Vs Eagles -Dow Jones -Florida shooting -Mark Salling -Daryle Singletary -Super Bowl score -Gods Plan -Vikings vs Eagles -NFC Championship Game 2018 -Sergei Eisenstein -Paula Modersohn-Becker -Grammys 2018 -Super Bowl Commercials 2018 -Joe Kennedy -Florida shooting -Shiffrin -Vincent Zhou -Kristaps Porzingis -NBA Trades -Patriots -Elizabeth Blackwell -Patriots -Sergei Eisenstein -The Resident -Justin Timberlake -Elizabeth Blackwell -Trump Hair -H&r Block -Patriots -Rodney Hood -Patriots -Amy Schumer -Olympic medal count -Virginia Woolf -Elizabeth Blackwell -Patriots -Florida shooting -Pro Bowl 2018 -Tammy Duckworth -Grammys 2018 -Justin Timberlake -What Time Is The Super Bowl -Vikings Vs Eagles -Grammys 2018 -Larry Nassar -Grammys 2018 -Winter Olympics -Cavs -Elizabeth Blackwell -Google docs -Dow Jones -Kylie Jenner -Jason Kidd -Elizabeth Blackwell -Fredo Santana -Sergei Eisenstein -SpaceX -Government Shutdown -Virginia Woolf -Trump State of the Union -Hope Hicks -Sergei Eisenstein -Vikings Vs Eagles -Robert Mueller -Alessia Cara -Google docs -NASCAR -Winter Olympics -Super Bowl 2018 -Justin Timberlake -Celebrity Big Brother cast -Paula Modersohn-Becker -Carter G. Woodson -Wilder Penfield -Lindsey Vonn -Florida shooting -Elizabeth Blackwell -Vikings Vs Eagles -Super Bowl score -Daytona 500 -Justin Timberlake -Maze Runner: The Death Cure -Virginia Woolf -Patti LuPone -Happy Valentines Day -Winter Olympics -Joe Kennedy -tsunami -Virginia Woolf -Tom Brady daughter -Super Bowl score -Super Bowl 2018 -Johnny Weir -Virginia Woolf -Obama portrait -Sergei Eisenstein -Joe Kennedy -Google docs -Grammys 2018 -Sergei Eisenstein -Government Shutdown -Super Bowl score -Wilder Penfield -Grammys 2018 -Alaska earthquake -Larry Nassar -Montreal Cognitive Assessment -12 Strong -Gods Plan -Carter G. Woodson -Solo Trailer -Super Bowl score -Virginia Woolf -Virginia Woolf -Joshua Cooper Ramo -Justin Timberlake -Daniel Kaluuya -Winter Olympics -Shaun White -SpaceX -Patriots -Olympic medal count -Early Man -Shaun White -Super Bowl score -What Time Is The Super Bowl -Black Panther -Virginia Woolf -H&r Block -Presidents Day 2018 -Winter Olympics -Harley Barber -Sergei Eisenstein -Alexander Polinsky -Super Bowl 2018 -Bode Miller -Sergei Eisenstein -Florida shooting -Grammys 2018 -Kylie Jenner -Winter Olympics -Kim Cattrall -Kratom -Kentucky shooting -Wilder Penfield -Cedi Osman -Kylie Jenner Baby Girl -Matt Patricia -Super Bowl Commercials -Paula Modersohn-Becker -Dow Jones -Government Shutdown Meaning -Elizabeth Blackwell -Lari White -Chris Paul -Florida shooting -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl score -Blake Griffin -Virginia Woolf -SpaceX -Black Panther -Champions League -Lunar eclipse -Elton John -Winter Olympics -Super Bowl score -Government Shutdown -Patriots -When We First Met -SpaceX -Amy Schumer -Elizabeth Blackwell -Patriots -New England Patriots owner -Winter Olympics -Super Bowl 2018 -Oscar Nominations 2018 -Altered Carbon -Norovirus -Paula Modersohn-Becker -Peter Rabbit -Cavs -NBA Trades -Elizabeth Blackwell -Rob Delaney -Virginia Woolf -Robert Wagner -Paula Modersohn-Becker -Super Bowl score -Elizabeth Blackwell -Kylie Jenner -Government shutdown -Justin Timberlake -Lena Zawaideh -Sergei Eisenstein -Bitcoin Price -Dow Jones -XFL -Florida shooting -Tammy Duckworth -Winter Olympics -Elizabeth Blackwell -Elizabeth Blackwell -Sergei Eisenstein -SpaceX -Champions League -Deadpool 2 -Edwin Jackson -Uma Thurman -Government shutdown -Josh McDaniels -Virginia Woolf -Ash Wednesday -Google Drive -Government Shutdown -Josh McDaniels -Florida shooting -Government Shutdown -Elizabeth Blackwell -calculator -Trump State of the Union -Virginia Woolf -Alaska earthquake -Vanessa Trump -Aaron Feis -Justin Timberlake -Winter Olympics -Cloverfield Paradox -Women's March 2018 -Royal Rumble 2018 -Joe Kennedy -Alessia Cara -Alex Smith -Eli Manning -Super Bowl 2018 -This Is Us -Elizabeth Blackwell -Tammy Duckworth -Happy Valentines Day -Groundhog Day 2018 -Winter Olympics -Red Gerard -SAG Awards 2018 -Virginia Woolf -Florida shooting -Portia de Rossi -SpaceX -school closings -Johnny Weir -Chris Stapleton -Wilder Penfield -Larry Nassar -Paula Modersohn-Becker -Justin Timberlake -What Time Is The Super Bowl -National Pizza Day -Wilder Penfield -Gus Kenworthy -Deadpool 2 -Elizabeth Blackwell -Paula Modersohn-Becker -Black Panther -shutdown -SAG Awards 2018 -Patriots -What Time Is The Super Bowl -Bill Parcells -Patriots -Patriots -Simona Halep -Super Bowl score -Elizabeth Blackwell -Virginia Woolf -Florida shooting -Chloe Kim -school closings -Black Panther -Winter Olympics -Wilder Penfield -Super blue blood Moon -Super Bowl 2018 -Super Bowl score -Florida shooting -Chris Stapleton -Groundhog Day 2018 -Harley Barber -Grammys 2018 -NBC Sports -Super Bowl 2018 -Super Bowl score -Omarosa -Zion Williamson -Kylie Jenner -Grammys 2018 -DeMarcus Cousins -Sergei Eisenstein -Kylie Jenner -Celtics -UFC 220 -Florida shooting -Patriots -Peter Rabbit -Obama portrait -School closings -Government Shutdown -Sergei Eisenstein -Tom Brady daughter -Amy Schumer -What Time Is The Super Bowl -Winter Olympics -Super Bowl 2018 -Obama portrait -Culture 2 -Winter Olympics -Elizabeth Blackwell -Elizabeth Blackwell -Kylie Jenner -DeMarcus Cousins -Justin Timberlake -Lauren Davis -Maze Runner: The Death Cure -Amy Schumer -shutdown -Daryle Singletary -Carter G. Woodson -Sergei Eisenstein -Virginia Woolf -Chinese New Year 2018 -Kim Kardashian -Super Bowl score -Westerville Ohio -Kim Kardashian -Gianni Versace -Devin Nunes -Winter Olympics -earthquake today -Wilder Penfield -SZA -Virginia Woolf -Patriots -Patriots -Pro Bowl 2018 -Princess Eugenie -Elizabeth Blackwell -Sal Castro Middle School -UFC 220 -Terrell Owens -Cavs -Carter G. Woodson -Patriots -This Is Us -Virginia Woolf -Patriots -Super Bowl 2018 -Elizabeth Blackwell -Houston Rockets -February -New England Patriots owner -Carter G. Woodson -Google docs -Wilder Penfield -NHL All Star Game -Happy Valentines Day -Larry Nassar -Kylie Jenner -Vikings Vs Eagles -Joe Kennedy -Super Bowl Winners -Olympics 2018 -Duke basketball -Super Bowl score -Yu Darvish -Government shutdown 2018 -Winter Olympics -Patriots -Trump State of the Union -Carter G. Woodson -Winter Olympics -Elton John -Grammys 2018 -Juventus -Blake Griffin -Paula Modersohn-Becker -Shibutani -Kylie Jenner -Patriots -Wilder Penfield -Winter Olympics -Cherry Seaborn -Government Shutdown -Winter Olympics -Pro Bowl 2018 -Harley Barber -Nba All Star Draft -Kylie Jenner -Chloe Kim -Government Shutdown -Sergei Eisenstein -Cavs -Kingdom Come Deliverance -Paula Modersohn-Becker -State of the Union -Mardi Gras 2018 -What Time Is The Super Bowl -Elizabeth Blackwell -Kim Kardashian -Kylie Jenner -Sergei Eisenstein -Florida shooting -Super Bowl score -Patriots -Tom Izzo -Trayvon Martin -Florida shooting -Carter G. Woodson -Florida shooting -Winter Olympics -Obama portrait -Rob Gronkowski -Florida shooting -Larry Nassar -Joe Kennedy -Bernie Sanders -Grammys 2018 -Wilder Penfield -Virginia Woolf -Justin Timberlake -Royal Rumble 2018 -Justin Timberlake -Wilder Penfield -calculator -Mark Salling -Olive Garden -Elizabeth Blackwell -Justin Timberlake -Oscar Nominations 2018 -Super Bowl 2018 halftime show -Winter Olympics -Chrissy Teigen -Earthquake Today -Virginia Woolf -NBA Trades -Senior Bowl -Black Panther -Vikings Vs Eagles -What Time Is The Super Bowl -Fredo Santana -CNN -James Maslow -Bode Miller -UFC 220 -Mueller -school closings -Joe Kennedy -Super Bowl 2018 -Elizabeth Blackwell -Altered Carbon -Oscar Nominations 2018 -Esteban Loaiza -Sharon Stone -Paula Modersohn-Becker -Super Bowl score -Wilder Penfield -Grammys 2018 -Chris Long -Super Bowl 2018 -Virginia Woolf -State of the Union -Wilder Penfield -Kylie Jenner -Paula Modersohn-Becker -Blake Griffin -Shaun White -Larry Nassar -Patriots -Rodney Hood -Arsenal -Kentucky shooting -Vikings Vs Eagles -Nba All Star Draft -Grammys 2018 -Winter Olympics -Elizabeth Blackwell -Google Classroom -Virginia Woolf -Winter Olympics -Winter Olympics -Paula Modersohn-Becker -Solo Trailer -Mark Salling -Paula Modersohn-Becker -Uma Thurman -Vikings Vs Eagles -What Time Is The Super Bowl -Winter Olympics -Royal Rumble 2018 -Sergei Eisenstein -Aaron Hernandez -Wilder Penfield -Winter Olympics -Carrie Underwood -Kentucky shooting -Wilder Penfield -Sergei Eisenstein -Joe Kennedy -Super Bowl 2018 -Alex Smith -Sergei Eisenstein -Olympics 2018 -Brynn Cameron -Bitcoin Price -What Time Is The Super Bowl -Patriots -Lady Bird -Childish Gambino -Elizabeth Blackwell -Florida shooting -Don Lemon -Sergei Eisenstein -Florida shooting -Larry Nassar -Sergei Eisenstein -SpaceX -Despacito -Elon Musk -Farmers Insurance Open 2018 -Vikings Vs Eagles -Sergei Eisenstein -Paula Modersohn-Becker -Government Shutdown -Kylie Jenner -Paula Modersohn-Becker -Bitcoin Price -CBS Sports -Super Bowl score -Carter G. Woodson -Mark Salling -SpaceX -Johnny Weir -Gianni Versace -Patriots -Elizabeth Blackwell -Trump State of the Union -Women's March 2018 -Alessia Cara -Florida shooting -Super blue blood Moon -Virginia Woolf -Super Bowl 2018 -Andrew McCabe -Virginia Woolf -Altered Carbon -What Time Is The Super Bowl -Carter G. Woodson -Shiffrin -Puppy Bowl 2018 -Robert Mueller -Natalie Portman -Royal Rumble 2018 -Wilder Penfield -Government Shutdown -Patriots -Wilder Penfield -NASCAR -Super Bowl score -Super Bowl 2018 -Jacob Copeland -Dennis Edwards -Virginia Woolf -All Star Weekend 2018 -Carter G. Woodson -What Time Is The Super Bowl -Matt Czuchry -Kylie Jenner -Kylie Jenner -Robby Anderson -What Time Is The Super Bowl -LL Bean -LL Bean -Josh McDaniels -Wilder Penfield -Florida shooting -Andrew Cunanan -Super Bowl Winners -CNN -Virginia Woolf -Uma Thurman -Betty White -Florida shooting -Bill Paxton -Wilder Penfield -This Is Us -Kylie Jenner -Super blue blood Moon -Wilder Penfield -12 Strong -Wilder Penfield -Tara Lipinski -Winter Olympics -Chinese New Year 2018 -Bob Marley -Carter G. Woodson -Vikings vs Eagles -Vikings Vs Eagles -Wilder Penfield -Wilder Penfield -Florida shooting -Ash Wednesday -Did the Groundhog See His Shadow -Winter Olympics -Super blue blood Moon -SpaceX -Grammys 2018 -Super Bowl score -Elizabeth Blackwell -Super Bowl score -Valentines Day -Peter Rabbit -Real Madrid -Larry Nassar -Black Panther -Maddie Mastro -DeMarcus Cousins -Virginia Woolf -Sergei Eisenstein -Carter G. Woodson -Megan Barry -Carter G. Woodson -Elizabeth Blackwell -Otto Warmbier -Johnny Weir -Eric Wood -Sergei Eisenstein -Grammys 2018 -What Time Is The Super Bowl -Virginia Woolf -Cavs -Paula Modersohn-Becker -What Time Is The Super Bowl -Super Bowl 2018 -Winter Olympics -Patriots -Super Bowl 2018 -Patriots -Virginia Woolf -Camila Cabello -Cavs -Virginia Woolf -What Time Is The Super Bowl -Virginia Woolf -Justin Timberlake -Vikings Vs Eagles -Isaiah Canaan -Winter Olympics -Carter G. Woodson -XFL -Happy Valentines Day -Oscar Nominations 2018 -Malcom Butler -Winter Olympics -Virginia Woolf -Justin Timberlake -Government shutdown -LeBron James -Florida shooting -State of the Union -Lunar eclipse -Super Bowl score -What Time Is The Super Bowl -Heath Ledger -Dow Jones industrial average -Sergei Eisenstein -XFL -Toys R Us -Tammy Duckworth -Patriots -Government shutdown -Elizabeth Blackwell -Wilder Penfield -Marlon Brando -Wilder Penfield -Blake Griffin -Call Me by Your Name -Shaun White -What Time Is The Super Bowl -Lunar eclipse -Virginia Woolf -Elizabeth Blackwell -Winter Olympics -Bob Dole -Fredo Santana -What Time Is The Super Bowl -NBA Trades -Carter G. Woodson -Super Bowl score -Sergei Eisenstein -Cloverfield Paradox -Sergei Eisenstein -Patriots -Oar Olympics -Mark Salling -Super Bowl score -Kodak Black -Isaiah Thomas -Super Bowl 2018 -Elizabeth Blackwell -State of the Union -Altered Carbon -Sergei Eisenstein -Super Bowl score -Florida shooting -Super blue blood Moon -Memo -Patriots -Natalie Portman -Outback Steakhouse -Kentucky shooting -Super Bowl 2018 -Florida shooting -Portia de Rossi -Carter G. Woodson -Virginia Woolf -Wilder Penfield -Wilder Penfield -Kylie Jenner -Wilder Penfield -Evgenia Medvedeva -Winter Olympics -DeMarcus Cousins -Paula Modersohn-Becker -Carter G. Woodson -Olympic medal count -Elizabeth Blackwell -Kim Cattrall -Cloverfield Paradox -Ash Wednesday -Super Bowl 2018 -earthquake today -Paula Modersohn-Becker -Obama portrait -Sergei Eisenstein -Jennifer Aniston -Virginia Woolf -Nancy Pelosi -Elizabeth Blackwell -Super Bowl 2018 -Tiger Woods -Did the Groundhog See His Shadow -Dow Jones -What Time Is The Super Bowl -Uma Thurman -Sergei Eisenstein -Super blue blood Moon -Super Bowl score -Government Shutdown -Tessa Virtue -Elizabeth Blackwell -Adam Rippon -Johnny Manziel -Super Bowl score -Groundhog Day 2018 -Sergei Eisenstein -Wilder Penfield -Super Bowl score -Ursula Le Guin -Winter Olympics -Florida shooting -Elizabeth Blackwell -Super Bowl score -Pro Bowl 2018 -Joe Kennedy -Super Bowl 2018 -Wilder Penfield -Justin Timberlake -Florida shooting -Joel Taylor -Justin Timberlake -Justin Timberlake -Real Madrid -Paula Modersohn-Becker -Paula Modersohn-Becker -Black Panther -Florida shooting -Fredo Santana -Scandal -Government Shutdown -Paula Modersohn-Becker -Vikings Vs Eagles -Carter G. Woodson -Florida shooting -Walter Payton -Super Bowl score -Johnny Weir -Memo -Johnny Weir -Elizabeth Blackwell -Paula Modersohn-Becker -Sergei Eisenstein -Carter G. Woodson -calculator -Super Bowl score -CNN -Grammys 2018 -Super Bowl 2018 -Stan Lee -Real Madrid -Grammys 2018 -Oscar Nominations 2018 -Sergei Eisenstein -Farmers Insurance Open 2018 -Super Bowl score -Kylie Jenner -Jacob Copeland -Kylie Jenner -What Time Is The Super Bowl -Tom Brady -Omarosa -Aaron Fies -Enzo Amore -Kim Kardashian -Paula Modersohn-Becker -Winchester -Rasual Butler -school closings -Virginia Woolf -Google Classroom -Celebrity Big Brother cast -Super blue blood Moon -Kylie Jenner -Sergei Eisenstein -Oscar Nominations 2018 -Groundhog Day 2018 -Elizabeth Blackwell -Dwyane Wade -Shaun White -Elizabeth Blackwell -Amy Schumer -Eli Manning -Sergei Eisenstein -Adam Rippon -Obama portrait -Florida shooting -Vikings vs Eagles -Super blue blood Moon -Virginia Woolf -Fredo Santana -Patriots -Government Shutdown -Elizabeth Blackwell -Elizabeth Blackwell -Super Bowl 2018 halftime show -Carter G. Woodson -Alaska earthquake -Winter Olympics -Winter Olympics -Google Classroom -Carter G. Woodson -Virginia Woolf -Virginia Woolf -Wilder Penfield -Logan Paul -Carter G. Woodson -Did the Groundhog See His Shadow -Super Bowl score -Chloe Kim -Super Bowl 2018 -Sergei Eisenstein -Happy Valentines Day -Grammys 2018 -Carter G. Woodson -Elizabeth Blackwell -fake news awards -Jennifer Aniston -Patriots -Elizabeth Blackwell -Grammys 2018 -Elton John -Grammys 2018 -Adam Rippon -Larry Nassar -Super Bowl 2018 -Lindsey Vonn -Elizabeth Blackwell -Sergei Eisenstein -Google docs -Cavs -Sergei Eisenstein -Women's March 2018 -Super Bowl score -Joy Villa -Super Bowl 2018 -Virginia Woolf -Elizabeth Blackwell -Celebrity Big Brother cast -Justin Timberlake -Justin Timberlake -Taiwan Earthquake Today -Patriots -Larry Nassar -Cloverfield Paradox -Government Shutdown -Wilder Penfield -Super Bowl score -earthquake today -Black Panther -Carter G. Woodson -Women's March 2018 -Obama portrait -Blue Ivy -Paula Modersohn-Becker -Nintendo Labo -tsunami -Winter Olympics -Sergei Eisenstein -This Is Us -SpaceX -Happy Valentines Day -Quincy Jones -Zion Williamson -Chloe Kim -Cbs -Kylie Jenner -Fifty Shades Freed -Justin Timberlake -Elizabeth Blackwell -Shaun White -Elizabeth Blackwell -Super Bowl 2018 -Toys R Us -Super Bowl Commercials 2018 -Patriots -SpaceX -Paula Modersohn-Becker -Winter Olympics -Chinese New Year 2018 -Omarosa -Oscar Nominations 2018 -Virginia Woolf -Steven Tyler -Google Drive -Patriots -James Maslow -Andrew McCabe -Groundhog Day 2018 -UFC 220 -What Time Is The Super Bowl -Wilder Penfield -Florida shooting -12 Strong -Luke Wilson -Elizabeth Blackwell -Chinese New Year 2018 -Paula Modersohn-Becker -Super Bowl 2018 -Virginia Woolf -Virginia Woolf -UFC 220 -Betty White -Chinese New Year 2018 -What Time Is The Super Bowl -Pro Bowl 2018 -Patriots -Super Bowl 2018 -Happy Valentines Day -Vikings Vs Eagles -Elizabeth Blackwell -Super Bowl score -Tom Brady -New England Patriots owner -Mattie Larson -Lil Xan -CNN -Florida shooting -Steven Tyler -Zion Williamson -Jessica Chastain -Lil Pump -Bitcoin Price -Super blue blood Moon -Red Gerard -Super Bowl score -Wilder Penfield -Paula Modersohn-Becker -Oscar Nominations 2018 -What Time Is The Super Bowl -Florida shooting -Super Bowl 2018 -Carter G. Woodson -Government Shutdown -Wilder Penfield -Sergei Eisenstein -Nba All Star Draft -Shaun White -Super Bowl score -Mardi Gras 2018 -Patriots -Elizabeth Blackwell -Super Bowl score -Rett Syndrome -Costco Wholesale -Larry Nassar -Rodney Hood -Westerville Ohio -Winter Olympics -Larry Nassar -LeBron James -Chrissy Teigen -Sergei Eisenstein -Den of Thieves -Call Me by Your Name -Florida shooting -Meteor -Super Bowl score -Scott Baio -Justin Timberlake -Groundhog Day 2018 -Quincy Jones -Grammys 2018 -Patriots -Wilder Penfield -Grammys 2018 -Super Bowl 2018 -Elizabeth Blackwell -Sergei Eisenstein -Joe Kennedy -Virginia Woolf -Vikings Vs Eagles -Dwyane Wade -Pro Bowl 2018 -State of the Union -New England Patriots owner -What Time Is The Super Bowl -CNN -Greg Monroe -pissant -Sergei Eisenstein -Kylie Jenner -Memo -Patriots -Adam Rippon -Groundhog Day 2018 -Justin Timberlake -Carter G. Woodson -School Closings -This Is Us -NBC Sports -What Time Is The Super Bowl -Super blue blood Moon -Vikings vs Eagles -Kylie Jenner -Sergei Eisenstein -Real Madrid -Mark Salling -Oscar Nominations 2018 -Patriots -Florida shooting -What Time Is The Super Bowl -Government Shutdown -Paula Modersohn-Becker -Virginia Woolf -Florida shooting -Grammys 2018 -Carter G. Woodson -Florida shooting -Camila Cabello -Government Shutdown -Carter G. Woodson -New England Patriots owner -Paula Modersohn-Becker -Government Shutdown -Grammys 2018 -Waco -Virginia Woolf -Grammys 2018 -Paula Modersohn-Becker -Trump State of the Union -Sergei Eisenstein -Winter Olympics -State of the Union -Sergei Eisenstein -Edible Arrangements -Elizabeth Blackwell -Elizabeth Blackwell -Government Shutdown 2018 -Cavs -Jalen Ramsey -Virginia Woolf -Winter Olympics -Andrew Cunanan -Kylie Jenner -What Time Is The Super Bowl -Justin Timberlake -Carter G. Woodson -Carter G. Woodson -Rodney Hood -Patriots -Wilder Penfield -Solo Trailer -Kentucky shooting -XFL -Happy Valentines Day -Elizabeth Blackwell -Scott Baio -Kylie Jenner -Winter Olympics -Robert Mueller -Oar Olympics -Cherry Seaborn -Josh McDaniels -Florida shooting -Winter Olympics -Roger Federer -Government Shutdown -Government shutdown 2018 -Super Bowl score -Wing Bowl 2018 -Winter Olympics -Carter G. Woodson -Tomi Lahren -Carter G. Woodson -Elizabeth Blackwell -SpaceX -Andrew Cunanan -What Time Is The Super Bowl -Florida shooting -Daryle Singletary -Winter Olympics -Justin Timberlake -UFC 220 -Joe Kennedy -Government shutdown -State of the Union -Patriots -calculator -Kirstjen Nielsen -LeBron James -Chloe Kim -Sergei Eisenstein -Patriots -Winter Olympics -What Time Is The Super Bowl -Scott Baio -Larry Nassar -Black Panther -Alaska earthquake -Stormi -SpaceX -Super Bowl score -Winter Olympics -Devin Nunes -Super Bowl score -Luke Wilson -Winter Olympics -Fredo Santana -School Closings -Mikaela Shiffrin -Winter Olympics -Did the Groundhog See His Shadow -The Home Depot -Tom Petty -Super blue blood Moon -Groundhog Day 2018 -New England Patriots owner -Super Bowl score -Elton John tickets -Carter G. Woodson -Google docs -Bruno Mars -Virginia Woolf -Memo -Black Panther -Government Shutdown -Super Bowl 2018 -Korea -Government Shutdown Meaning -Kylie Jenner -Paula Modersohn-Becker -Katie Couric -Wilder Penfield -Den of Thieves -Valentines Day -Carter G. Woodson -Black Panther -Elizabeth Blackwell -Jennifer Aniston -Carter G. Woodson -Oscar Nominations 2018 -Mark Salling -Eli Manning -Super Bowl Commercials 2018 -Kesha -Nathan Chen -Wilder Penfield -Yu Darvish -stock market -Elizabeth Blackwell -Elizabeth Blackwell -What Time Is The Super Bowl -Kylie Jenner -Trump State of the Union -Patriots -Fifty Shades Freed -Patriots -Virginia Woolf -Elizabeth Blackwell -Black Panther -Yahoo Finance -Paula Modersohn-Becker -Doomsday Clock -Super Bowl score -Black Panther -Groundhog Day 2018 -Winter Olympics -Super Bowl score -Patriots -Mark Salling -Shibutani -Sergei Eisenstein -Kylie Jenner -Patriots -Wilder Penfield -Shaun White -Megan Barry -Tesla in space -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl score -Bob Dole -Shaun White -Government shutdown 2018 -Patriots -Altered Carbon -Oscar Nominations 2018 -Super Bowl 2018 -Virginia Woolf -Winter Olympics -Chris Stapleton -Virginia Woolf -Paula Modersohn-Becker -Harley Barber -Happy Valentines Day -Wilder Penfield -Wilder Penfield -Edible Arrangements -Elizabeth Blackwell -Vikings Vs Eagles -Elizabeth Blackwell -Patriots -Carter G. Woodson -Florida shooting -Patriots -Carter G. Woodson -UFC 220 -Government Shutdown -Patty Hearst -SpaceX -Elizabeth Blackwell -Florida shooting -Elizabeth Blackwell -Florida shooting -Florida shooting -Larry Nassar -Sergei Eisenstein -XFL -Super Blue Blood Moon -Super Bowl score -Blake Griffin -Olympic medal count -Grammys 2018 -Patriots -Larry Nassar -Government Shutdown -Julie Ertz -Pro Bowl 2018 -Larry Nassar -Blake Griffin -Wilder Penfield -Blake Griffin -Winter Olympics -Government Shutdown -Sergei Eisenstein -Amazon stock -Government Shutdown -Larry Nassar -SpaceX -Cavs -Patriots -Paula Modersohn-Becker -What Time Is The Super Bowl -Vikings vs Eagles -Florida shooting -Super Bowl score -Wilder Penfield -Culture 2 -Logan Paul -Carter G. Woodson -Oscar Nominations 2018 -Super blue blood Moon -Michelle Obama -Lunar eclipse -Hope Hicks -Justin Timberlake -Friends movie -Elizabeth Blackwell -Release The Memo -Patriots -Sergei Eisenstein -Virginia Woolf -Bob Dole -Kylie Jenner -Tom Petty -Robert Wagner -Donald Trump Jr -Joe Kennedy -Virginia Woolf -Kim Kardashian -Super Bowl 2018 -Paula Modersohn-Becker -Super Bowl 2018 -Lunar eclipse -Did the Groundhog See His Shadow -Government Shutdown -Sergei Eisenstein -Danielle Herrington -Trump Hair -FC Barcelona -Valentine's Day -Blake Griffin -Matt Patricia -Kylie Jenner -Jennifer Aniston -Bob Dole -Super Blue Blood Moon -Elton John -Justin Timberlake -Florida shooting -Rodney Hood -Real Madrid -Pro Bowl 2018 -Super Bowl 2018 -Sergei Eisenstein -Patriots -Chinese New Year 2018 -Den of Thieves -Super Bowl 2018 -Patriots -Super Bowl score -What Time Is The Super Bowl -Virginia Woolf -Carter G. Woodson -Wilder Penfield -Tom Brady daughter -Super Bowl 2018 -Super Bowl 2018 -Quincy Jones -Adam Rippon -Patriots -Patriots -SAG Awards 2018 -Bellator 192 -Cavs -State of the Union -Grammys 2018 -Kylie Jenner -Brie Larson -Groundhog Day 2018 -Robert Mueller -Justin Timberlake -Chloe Kim -Carrie Underwood -Larry Nassar -This is Us -What Time Is The Super Bowl -Paula Modersohn-Becker -Blake Griffin -Kylie Jenner -Patriots -Ohio State basketball -James Maslow -Super Bowl score -SpaceX -Patriots -Edwin Jackson -Mark Salling -Elizabeth Blackwell -Vikings Vs Eagles -Grammys 2018 -Paula Modersohn-Becker -Wilder Penfield -Carter G. Woodson -Sergei Eisenstein -Yura Min -Patriots -SpaceX -Jessica Chastain -The 15:17 to Paris -Hostiles -Greg Monroe -Bitcoin Price -Dow Jones -Vanessa Marcil -Paula Modersohn-Becker -Super Bowl score -Super Bowl score -Dwyane Wade -Mikaela Shiffrin -Kim Kardashian -Sergei Eisenstein -Virginia Woolf -Elizabeth Blackwell -NBA Trades -Government shutdown 2018 -Winter Olympics -Paula Modersohn-Becker -Justin Timberlake -Isaiah Thomas -Patriots -Super blue blood Moon -Robert Wagner -Larry Nassar -Super Bowl 2018 -Elizabeth Blackwell -Florida shooting -Winter Olympics -Super Bowl score -Virginia Woolf -Sergei Eisenstein -Celebrity Big Brother cast -Larry Nassar -Paula Modersohn-Becker -Wilder Penfield -Fifty Shades Freed -What Time Is The Super Bowl -Chloe Kim -Winter Olympics -Blake Griffin -Winter Olympics -Florida shooting -Yahoo Finance -Virginia Woolf -Kentucky shooting -Wilder Penfield -NFC Championship Game 2018 -school closings -Kylie Jenner -Government shutdown -Isaiah Thomas -United States Of America Winter Olympics -Tesla in space -Megan Barry -Tiger Woods -XFL -Carter G. Woodson -Super Blue Blood Moon -Alaska earthquake -Government shutdown -Super blue blood Moon -Winter Olympics -Sergei Eisenstein -Bitcoin Price -Elizabeth Blackwell -Luke Wilson -Danielle Herrington -Elizabeth Blackwell -12 Strong -Virginia Woolf -Sergei Eisenstein -Sergei Eisenstein -Kylie Jenner -Edwin Jackson -Florida shooting -United States Of America Winter Olympics -Florida shooting -Grammys 2018 -Wilder Penfield -Paul Ryan -Larry Nassar -Super Bowl 2018 -Elton John -school closings -Memo -Highline College -Did the Groundhog See His Shadow -CBS Sports -school closings -Nba All Star Draft -Super Bowl score -National Pizza Day -Wilder Penfield -Carter G. Woodson -Justin Timberlake -Grammys 2018 -Vikings vs Eagles -Kentucky shooting -Alaska earthquake -Friends movie -Kristaps Porzingis -Grammys 2018 -Florida shooting -Winter Olympics -Super Bowl 2018 -Elizabeth Blackwell -FC Barcelona -Jennifer Aniston -Kylie Jenner Baby Girl -Elizabeth Blackwell -Wilder Penfield -Florida shooting -United States Of America Winter Olympics -Marlon Brando -Princess Eugenie -Joe Kennedy -Bitcoin Price -Super Bowl score -Manchester United -SpaceX -State of the Union -Sergei Eisenstein -Blood Moon -Wilder Penfield -Black Panther -Winter Olympics -Super Bowl Commercials -Winter Olympics -Paula Modersohn-Becker -Dennis Edwards -Mikaela Shiffrin -Adam Rippon -Pro Bowl 2018 -Andrew Cunanan -Vikings Vs Eagles -Cavs -Florida shooting -Black Panther -Elizabeth Blackwell -Paula Modersohn-Becker -Carter G. Woodson -Dow Jones -Sergei Eisenstein -Super Bowl 2018 -Memo -Patriots -Valentines Day Images -Government Shutdown -SpaceX -Blake Griffin -Patriots -Black Panther -Wilder Penfield -Jamie Anderson -Dow Jones -Super Bowl score -Kim Kardashian -Florida shooting -Gianni Versace -Joshua Cooper Ramo -Winter Olympics -Caitlin McHugh -Joe Kennedy -Virginia Woolf -Super Bowl score -Government Shutdown -Winter Olympics -Mark Salling -Camila Cabello -Hostiles -Super blue blood Moon -Norovirus -Grammys 2018 -Super blue blood Moon -Super Bowl 2018 -Lonzo Ball -Red Gerard -Kylie Jenner Baby Girl -Daryle Singletary -Patriots -Justin Timberlake -Elizabeth Blackwell -Paula Modersohn-Becker -Grammys 2018 -Jason Kelce -Patriots -Netflix Stock -Winter Olympics -Grammys 2018 -Paula Modersohn-Becker -Wilder Penfield -SpaceX -Paula Modersohn-Becker -Florida shooting -Carter G. Woodson -Robert Wagner -Grammys 2018 -Bellator 192 -Black Panther -fake news awards -Super Bowl Commercials 2018 -Kylie Jenner -Patriots -Winter Olympics -Bitcoin Price -What Time Is The Super Bowl -Elizabeth Blackwell -Rose McGowan -Joe Kennedy -Patriots -Government Shutdown 2018 -Olivia Munn -Sergei Eisenstein -Elizabeth Blackwell -Cloverfield Paradox -Wilder Penfield -What Time Is The Super Bowl -Cloverfield Paradox -Tara Lipinski -Government Shutdown -Super Bowl 2018 -Real Madrid -Kesha Grammy -SAG Awards 2018 -Google docs -Wilder Penfield -Lonzo Ball -Enzo Amore -Grammys 2018 -12 Strong -Sergei Eisenstein -SAG Awards 2018 -Sergei Eisenstein -Virginia Woolf -All Star Weekend 2018 -Women's March 2018 -Patriots -Obama portrait -Elton John -Kingdom Come Deliverance -Sergei Eisenstein -Winter Olympics -Winter Olympics -Wilder Penfield -Bitcoin Price -Childish Gambino -What Time Is The Super Bowl -Cavs -Andrew Cunanan -Grammys 2018 -Dwyane Wade -Rose McGowan -Did the Groundhog See His Shadow -Chicago West -Bitcoin Price -Royal Rumble 2018 -Vikings Vs Eagles -Government Shutdown -What Time Is The Super Bowl -Sergei Eisenstein -Oscar Nominations 2018 -Government shutdown -Bellator 192 -Julie Ertz -Happy Valentines Day -Paula Modersohn-Becker -Turpin -Kylie Jenner -AFC Championship Game 2018 -Kylie Jenner -Deadpool 2 -Chicago Weather -Carter G. Woodson -Nathan Chen -Jessica Chastain -Highline College -NBA Trades -Patriots -Maddie Mastro -The Home Depot -Shaun White -Bitcoin Price -Oscar Nominations 2018 -Paula Modersohn-Becker -What Time Is The Super Bowl -Wilder Penfield -Amy Schumer -Patriots -Grammys 2018 -SAG Awards 2018 -Sal Castro Middle School -Rachel Brand -Wilder Penfield -Wilder Penfield -Super Bowl score -Cavs -Emily Sweeney -Rose McGowan -Super Bowl score -Florida shooting -Uma Thurman -Kristaps Porzingis -Elizabeth Blackwell -MS13 -Super Bowl score -Sergei Eisenstein -Meteor -Bitcoin Price -Sergei Eisenstein -Aaron Fies -Kylie Jenner Baby Girl -Meteor -Detroit Lions -Chloe Kim Snowboarder -Elizabeth Blackwell -Super Bowl score -CNN -Super Bowl 2018 -Sergei Eisenstein -Patriots -Rasual Butler -Andrew Cunanan -Pro Bowl 2018 -Patriots -Mueller -Florida shooting -Super Bowl score -Yu Darvish -Kylie Jenner Baby Girl -Patriots -State of the Union -Solo Trailer -Grammys 2018 -Super Bowl score -Elizabeth Blackwell -Winter Olympics -Nba All Star 2018 -Carter G. Woodson -Sabrina Dhowre -Super blue blood Moon -Bitcoin Price -Morgan Freeman -Wilder Penfield -Carter G. Woodson -Paula Modersohn-Becker -Paula Modersohn-Becker -Oscar Nominations 2018 -Otto Warmbier -Dow Jones -Shaun White -Jalen Ramsey -Kentucky shooting -Winter Olympics -Patriots -Winter Olympics -Stormi -John Mahoney -Kentucky shooting -Paula Modersohn-Becker -Red Gerard -Winter Olympics -Sergei Eisenstein -NFC Championship Game 2018 -Joy Villa -Happy Valentines Day -Carter G. Woodson -Paula Modersohn-Becker -What Time Is The Super Bowl -Winter Olympics -Rasual Butler -Josh McDaniels -Black Panther -SpaceX -Valentines Day -Winter Olympics -Dow Jones -Paula Modersohn-Becker -Larry Nassar -What Time Is The Super Bowl -Sergei Eisenstein -Elizabeth Blackwell -Duke Basketball -Paula Modersohn-Becker -Wilder Penfield -Grammys 2018 -XFL -James Baldwin -Celtics -Florida shooting -Black Lightning -Sergei Eisenstein -Paula Modersohn-Becker -Justin Timberlake -Winter Olympics -Government Shutdown -Florida shooting -Paula Modersohn-Becker -Super Bowl 2018 halftime show -Carter G. Woodson -Super Bowl score -SpaceX -Mardi Gras 2018 -Fredo Santana -Justin Timberlake -Did the Groundhog See His Shadow -school closings -Happy Valentines Day -Super Bowl 2018 -Sergei Eisenstein -What Time Is The Super Bowl -Grammys 2018 -Justin Timberlake -Paula Modersohn-Becker -Incredibles 2 -Carter G. Woodson -Terrell Owens -Earthquake Today -Virginia Woolf -Puppy Bowl 2018 -Dua Lipa -Champions League -Super Bowl 2018 -Olympics 2018 -Kentucky shooting -All Star Weekend 2018 -Winter Olympics -VIX -Patriots -Carter G. Woodson -Celebrity Big Brother cast -Virginia Woolf -Sharon Stone -Megan Barry -Cavs -Super Bowl 2018 -Government Shutdown Meaning -Paula Modersohn-Becker -New England Patriots owner -Florida shooting -Andrew Cunanan -Obama portrait -Will Ferrell -Black Panther -Dolly Parton -Childish Gambino -Super Bowl score -Grammys 2018 -Paula Modersohn-Becker -Virginia Woolf -Elton John -Carter G. Woodson -Sergei Eisenstein -Government Shutdown -Wilder Penfield -State of the Union -Virginia Woolf -Black Panther -Paula Modersohn-Becker -Sergei Eisenstein -Wilder Penfield -Groundhog Day 2018 -Super blue blood Moon -Winter Olympics -Super Bowl score -Celtics -Government Shutdown Meaning -Robby Anderson -Shaun White -New England Patriots owner -Winter Olympics -Super Bowl 2018 -Patriots -Patriots -Super Bowl Commercials -Super Bowl score -Joe Kennedy -Carter G. Woodson -NASA -Dow Jones -Carter G. Woodson -Jane Fonda -Kodak Black -Tonga -Sergei Eisenstein -Bitcoin Price -Paula Modersohn-Becker -Happy Valentines Day -Den of Thieves -Grammys 2018 -Blake Griffin Trade -Patriots -Josh McDaniels -Black Panther -Virginia Woolf -Did the Groundhog See His Shadow -Super Bowl score -Kylie Jenner -Florida shooting -Oscar Nominations 2018 -Patriots -Carter G. Woodson -Mark Salling -Donald Trump Jr -Winter Olympics -Did the Groundhog See His Shadow -Alison Brie -Florida shooting -XFL -Patriots -Steve Mcnair -Virginia Woolf -State of the Union -Larry Nassar -Dow Jones industrial average -Government Shutdown -Carter G. Woodson -Chinese New Year 2018 -Mueller -What Time Is The Super Bowl -Betty White -Virginia Woolf -Florida shooting -Larry Nassar -Women's March 2018 -Paula Modersohn-Becker -Paula Modersohn-Becker -Sergei Eisenstein -Winter Olympics -Dane Cook -CNN -Vincent Zhou -Did the Groundhog See His Shadow -John Mahoney -Groundhog Day 2018 -Florida shooting -Virginia Woolf -Joe Kennedy -Patriots -Otto Warmbier -Elizabeth Blackwell -Paula Modersohn-Becker -Patriots -Chris Paul -Virginia Woolf -Valentines Day Memes -Hailee Steinfeld -Lunar eclipse -Happy Valentines Day -Jimmy Garoppolo -Super Bowl score -Sergei Eisenstein -Virginia Woolf -Patriots -Carter G. Woodson -Ursula Le Guin -Carter G. Woodson -Justin Timberlake -Winter Olympics -Google Drive -Justin Timberlake -Zion Williamson -Carter G. Woodson -stock market -Justin Timberlake -Winter Olympics -Elizabeth Blackwell -Super Bowl score -Dow Jones -Super Bowl 2018 -Robert Wagner -Tom Izzo -Royal Rumble 2018 -Memo -Virginia Woolf -Sergei Eisenstein -What Time Is The Super Bowl -Steven Tyler -Virginia Woolf -Cavs -Bitcoin Price -Patriots -Winter Olympics -Paula Modersohn-Becker -Super Bowl 2018 -Virginia Woolf -Patriots -Carter G. Woodson -Kratom -Childish Gambino -Florida shooting -Memo -Adam Rippon -Jennifer Aniston -Patriots -Sergei Eisenstein -Super Bowl 2018 -Justin Timberlake -Carter G. Woodson -Kylie Jenner -Rasual Butler -Florida shooting -Snapchat Update -Larry Nassar -Virginia Woolf -Jemele Hill -Justin Timberlake -H&r Block -Paula Modersohn-Becker -Elizabeth Blackwell -Winter Olympics -Kevin Love -Kesha Grammy -Super blue blood Moon -State of the Union -Florida shooting -Kawhi Leonard -Bitcoin Price -Jen Selter -Winter Olympics -Florida shooting -Patriots -School Closings -Super Bowl score -Florida shooting -Super Bowl score -Ash Wednesday -Super Bowl 2018 -Patriots -Chris Long -Kylie Jenner -Google Classroom -Super Bowl score -Virginia Woolf -Mikaela Shiffrin -Paul Ryan -Kylie Jenner -Virginia Woolf -Ronaldinho -Government Shutdown -Morgan Freeman -Bitcoin Price -Wonder Woman -Kylie Jenner -Tiger Woods -Super Bowl 2018 -Justin Timberlake -Government Shutdown -Virginia Woolf -Fredo Santana -Valentines Day -Sergei Eisenstein -Alex Smith -Kesha Grammy -Alex Smith -Ash Wednesday -Eli Manning -Wilder Penfield -Virginia Woolf -Virginia Woolf -Carter G. Woodson -OKC Thunder -Oscar Nominations 2018 -Florida shooting -Elizabeth Blackwell -Super Bowl 2018 -tsunami -Paula Modersohn-Becker -Kelsey Grammer -Florida shooting -Amy Schumer -Cavs -Dow Jones -Virginia Woolf -Fredo Santana -Government Shutdown -Luke Wilson -Alex Smith -Patriots -Kim Kardashian -Super Bowl score -Emily Sweeney -Grammys 2018 -Carter G. Woodson -Dow Jones -Joe Kennedy -Dua Lipa -Larry Nassar -Groundhog Day 2018 -What Time Is The Super Bowl -NBA Trades -Omarosa -Jimmy Garoppolo -Sergei Eisenstein -Blake Griffin -Meteor -Doomsday Clock -Sarah Barthel -Groundhog Day 2018 -Black Panther -Elizabeth Blackwell -Grammys 2018 -Rett Syndrome -Justin Timberlake -school closings -Super Bowl score -Google docs -Paula Modersohn-Becker -Groundhog Day 2018 -Lakers -Patriots -school closings -Government Shutdown -Super Bowl 2018 -Super Bowl score -Sal Castro Middle School -Grammys 2018 -Alaska earthquake -Call Me by Your Name -NFC Championship Game 2018 -school closings -Kesha Grammy -Tiger Woods -Jane Fonda -Super Bowl score -SpaceX -Carter G. Woodson -national signing day 2018 -When We First Met -Florida shooting -Super Blue Blood Moon -Cloverfield Paradox -Grammys 2018 -Fredo Santana -Sergei Eisenstein -Super Bowl 2018 -Peter Rabbit -Wilder Penfield -Casey Affleck -Hope Hicks -Super Bowl score -Obama portrait -Sergei Eisenstein -Government shutdown 2018 -New England Patriots owner -United States Of America Winter Olympics -Jennifer Aniston -Patriots -SAG Awards 2018 -Mexico -Gregory Salcido -This Is Us -Larry Nassar -Justin Timberlake -Childish Gambino -Women's March 2018 -SpaceX -Winter Olympics -Super Bowl 2018 -Patriots -Amy Schumer -Virginia Woolf -Winter Olympics -Wilder Penfield -Florida shooting -Pro Bowl 2018 -Winter Olympics -Super Bowl score -Wilder Penfield -Earthquake Today -United States Of America Winter Olympics -Wilder Penfield -Super Bowl score -Chloe Kim -Wilder Penfield -Harley Barber -Florida shooting -Once Upon a Time -Sergei Eisenstein -Lindsey Vonn -Sarah Barthel -Winter Olympics -Kylie Jenner -Rett Syndrome -Super Bowl score -Wilder Penfield -Olympic medal count -Florida shooting -UFC 220 -Duke Basketball -Joe Kennedy -Patriots -H&r Block -Olympic Medal Count -Virginia Woolf -Mardi Gras 2018 -Kentucky shooting -Super Bowl 2018 -Isaiah Canaan -school closings -Phantom Thread -Bob Marley -Blue Ivy -Super blue blood Moon -Wilder Penfield -Happy Valentines Day -Carter G. Woodson -Happy Valentines Day -Patriots -Florida shooting -Edwin Jackson -Winter Olympics -Kim Kardashian -Isaiah Thomas -Paula Modersohn-Becker -Rose McGowan -Virginia Woolf -Lunar eclipse -What Time Is The Super Bowl -SAG Awards 2018 -Sergei Eisenstein -Sammy Sosa -Elizabeth Blackwell -Wilder Penfield -Patriots -Mark Salling -Best Superbowl Commercials 2018 -Norovirus -Mikaela Shiffrin -Virginia Woolf -SpaceX -Florida shooting -Carter G. Woodson -Google docs -Florida shooting -SpaceX -Tiger Woods -school closings -Super Bowl 2018 -Virginia Woolf -Sergei Eisenstein -Virginia Woolf -Blake Griffin Trade -NBA Trades -Lil Xan -Wilder Penfield -Carter G. Woodson -Shaun White -Carter G. Woodson -Virginia Woolf -Lee Miglin -Yoel Romero -Johnny Weir -Trump State of the Union -tsunami -Wilder Penfield -Fredo Santana -Wilder Penfield -Joy Villa -Justin Timberlake -Super blue blood Moon -Florida shooting -Sergei Eisenstein -What Time Is The Super Bowl -Naya Rivera -State of the Union -Bernie Sanders -Patriots -Wilder Penfield -Winter Olympics -Larry Nassar -Grammys 2018 -Super Bowl Winners -Rodney Hood -Childish Gambino -Jacob Copeland -Portia de Rossi -Jennifer Aniston -Valentines Day Images -Sergei Eisenstein -Florida shooting -Super Bowl score -Andre Roberson -Cloverfield Paradox -Super Bowl 2018 -Josh McDaniels -Google docs -Justin Timberlake -Justin Timberlake -Winter Olympics -Patriots -Winter Olympics -Logan Paul -Super Bowl score -Mark Salling -Wilder Penfield -Virginia Woolf -Government Shutdown -Elizabeth Blackwell -blue alert -Logan Paul -Kentucky shooting -Omarosa -Patriots -Carter G. Woodson -Yoel Romero -Larry Nassar -Wilder Penfield -Elizabeth Blackwell -What Time Is The Super Bowl -Google Classroom -Wilder Penfield -Tyler Hilinski -Sergei Eisenstein -Dwyane Wade -Patriots -Sergei Eisenstein -Kylie Jenner -Dow Jones industrial average -Pro Bowl 2018 -Wilder Penfield -Dow Jones -What Time Is The Super Bowl -Senior Bowl -Kentucky shooting -Paula Modersohn-Becker -Childish Gambino -AFC Championship Game 2018 -Google Drive -Once Upon a Time -Grammys 2018 -Tyler Hilinski -Winter Olympics -Dow Jones -Fortnite New Map -Patriots -Bruno Mars -Football Playoffs 2018 -Grammys 2018 -Super blue blood Moon -Virginia Woolf -Cloverfield Paradox -Sergei Eisenstein -Johnny Weir -Jason Kelce -Luke Wilson -Grammys 2018 -Kentucky shooting -Paula Modersohn-Becker -Dow Jones -Kylie Jenner -SpaceX -Sergei Eisenstein -New England Patriots owner -UFC 220 -What Time Is The Super Bowl -Black Panther -New England Patriots owner -John Mahoney -Kylie Jenner -Sergei Eisenstein -Larry Nassar -New England Patriots owner -Vikings vs Eagles -Chris Long -Winter Olympics -Sergei Eisenstein -Senior Bowl -Super Bowl 2018 -SpaceX -Florida shooting -Winter Olympics -Florida shooting -Super Bowl Winners -Super Bowl score -Florida shooting -Virginia Woolf -Patriots -Super Bowl 2018 -Virginia Woolf -Pro Bowl 2018 -school closings -Florida shooting -Isaiah Canaan -Super Bowl score -Patriots -Joe Kennedy -UFC 220 -United States Postal Service -Omarosa -Sergei Eisenstein -Elizabeth Blackwell -Justin Timberlake -Vic Damone -Pro Bowl 2018 -Dow Jones -UFC 220 -Winter Olympics -NBA Trades -Timor Leste -Elton John -Super Bowl 2018 -Super Bowl 2018 -SpaceX -Florida shooting -Heath Ledger -Bernie Sanders -Adam Rippon -Florida shooting -Royal Rumble 2018 -Super Bowl score -NBA Trades -Trump State of the Union -NBA Trades -Justin Timberlake -Super Bowl 2018 -Sergei Eisenstein -Fifty Shades Freed -Johnny Weir -Super Bowl 2018 -Kristaps Porzingis -Winter Olympics -Nba All Star Draft -What Time Is The Super Bowl -Patriots -Kentucky shooting -Carter G. Woodson -Early Man -Amtrak -Carter G. Woodson -SpaceX -NBA Trades -Justin Timberlake -Super Bowl score -SAG Awards 2018 -Morgan Freeman -State of the Union -Winter Olympics -Mark Salling -Super Bowl 2018 -What Time Is The Super Bowl -Alaska earthquake -Winter Olympics -Government Shutdown -Super Bowl score -Hillary Clinton -The 15:17 to Paris -Kylie Jenner -Sergei Eisenstein -Bitcoin Price -Johnny Weir -Super Bowl score -Caroline Wozniacki -Luke Wilson -Winter Olympics -Elizabeth Blackwell -Tessa Virtue -Paula Modersohn-Becker -Quincy Jones -Black Panther -Elizabeth Blackwell -Super Bowl 2018 -NBA Trades -Google Classroom -Patriots -Isaiah Thomas -Super Bowl 2018 halftime show -Florida shooting -Alessia Cara -Kentucky shooting -Wilder Penfield -Tammy Duckworth -Florida shooting -Paula Modersohn-Becker -Peter Rabbit -stock market -Kylie Jenner -Lindsey Vonn -Blake Griffin -Carter G. Woodson -Super Bowl 2018 -Chris Paul -Winter Olympics -Vikings Vs Eagles -NBA Trades -Incredibles 2 -Government shutdown 2018 -Carter G. Woodson -AFC Championship Game 2018 -Sabrina Dhowre -Paula Modersohn-Becker -Cavs -Bitcoin Price -Andrew McCabe -Black Panther -Mark Salling -Government Shutdown -National Pizza Day -Super Bowl 2018 -Wilder Penfield -Dennis Edwards -Patriots -Super Bowl 2018 -Sergei Eisenstein -Virginia Woolf -Snapchat Update -Super Bowl 2018 -Florida shooting -Elton John -This Is Us -School closings -Royal Rumble 2018 -Quincy Jones -Patriots -Larry Nassar -Winter Olympics -Nba All Star Draft -Michigan State -Sergei Eisenstein -Sergei Eisenstein -Wilder Penfield -SpaceX -Carter G. Woodson -Elizabeth Blackwell -Royal Rumble 2018 -Super Bowl 2018 -Florida shooting -SpaceX -Robby Anderson -Nascar Schedule -Ash Wednesday -Patriots -Tyler Hilinski -Super Bowl 2018 -Incredibles 2 -What Time Is The Super Bowl -Trey Gowdy -Did the Groundhog See His Shadow -Vikings Vs Eagles -Florida shooting -Sergei Eisenstein -Groundhog Day 2018 -Johnny Weir -Stormi -Grammys 2018 -Super Bowl 2018 -Carter G. Woodson -Sergei Eisenstein -Alaska earthquake -Florida shooting -Winter Olympics -Florida shooting -Obama portrait -Larry Nassar -Elizabeth Blackwell -Mark Salling -Edwin Jackson -Blake Griffin -Super Bowl score -Carter G. Woodson -What Time Is The Super Bowl -Patriots -Taiwan Earthquake Today -Mark Salling -Cavs -Isaiah Canaan -calculator -Memo -Montreal Cognitive Assessment -calculator -Emily Sweeney -Shaun White -Grammys 2018 -Peter Rabbit -KSI -Super Bowl score -Royal Rumble 2018 -Winter Olympics -Kesha -12 Strong -Super Bowl 2018 -Hope Hicks -Sergei Eisenstein -Super Bowl 2018 -Obama portrait -Larry Nassar -Mark Salling -Vikings vs Eagles -earthquake today -Patriots -Mark Salling -Costco Wholesale -Dwyane Wade -Super Bowl score -Paula Modersohn-Becker -Lindsey Vonn -Patriots -Montreal Cognitive Assessment -Oscar Nominations 2018 -Caroline Wozniacki -Yu Darvish -Grammys 2018 -SpaceX -CNN -Toys R Us -Elizabeth Blackwell -Dow Jones -Andrew Cunanan -Paula Modersohn-Becker -Isaiah Thomas -John Mahoney -New England Patriots owner -UFC 220 -Berkshire Hathaway -Patriots -Super Bowl 2018 -Sting -Super Bowl 2018 -Wilder Penfield -One Day At A Time -Did the Groundhog See His Shadow -Patriots -Winter Olympics -Florida shooting -Super Bowl score -stock market -Patriots -Adam Rippon -Jason Kelce -Chinese New Year 2018 -Patriots -Elizabeth Blackwell -Rob Porter -Adam Hicks -State of the Union -Virginia Woolf -Isaiah Thomas -Virginia Woolf -SpaceX -Patriots -Johnny Weir -Groundhog Day 2018 -February -NBA Trades -Carter G. Woodson -Olive Garden -Kylie Jenner -Groundhog Day 2018 -Virginia Woolf -Patriots -Black Panther -Columbine Shooting -Peter Rabbit -Zion Williamson -Super Bowl 2018 -Memo -Paula Modersohn-Becker -Winter Olympics -Paula Modersohn-Becker -Florida shooting -Winter Olympics -State of the Union -Tom Brady -This Is Us -Pegasus World Cup -Wilder Penfield -Super Bowl score -Paula Modersohn-Becker -Sergei Eisenstein -Wilder Penfield -Childish Gambino -Paula Modersohn-Becker -Mardi Gras 2018 -Chloe Kim -Virginia Woolf -Chloe Kim -What Time Is The Super Bowl -Paula Modersohn-Becker -Sergei Eisenstein -Groundhog Day 2018 -Wilder Penfield -Carter G. Woodson -Super Bowl score -Dow Jones -Wilder Penfield -Hope Hicks -Google Drive -Virginia Woolf -Elizabeth Blackwell -Jessica Chastain -Government Shutdown 2018 -Ash Wednesday -Wilder Penfield -Patriots -Super Bowl 2018 -Mardi Gras 2018 -Kylie Jenner -Emily Sweeney -Yu Darvish -Chris Long -Frank Reich -Ursula Le Guin -Carter G. Woodson -Wilder Penfield -Celtics -Early Man -Virginia Woolf -Tonga -Super Bowl 2018 -Tyler Hilinski -Solo Trailer -Kylie Jenner -SpaceX -Virginia Woolf -National Pizza Day -Dow Jones -Justin Timberlake -Carter G. Woodson -Sergei Eisenstein -Florida shooting -Quincy Jones -Sergei Eisenstein -Lady Bird -Yuzuru Hanyu -Patriots -Sean Hannity -Chris Stapleton -Super Bowl score -Sergei Eisenstein -Happy Valentines Day -Winter Olympics -Patriots -Larry Nassar -LeBron James -UFC 220 -Chinese New Year 2018 -Vikings Vs Eagles -tsunami -Carter G. Woodson -Justin Timberlake -Wing Bowl 2018 -Call Me by Your Name -Royal Rumble 2018 -Winter Olympics -Joe Kennedy -Wilder Penfield -Virginia Woolf -Elizabeth Blackwell -Sergei Eisenstein -Justin Timberlake -Wilder Penfield -Sergei Eisenstein -Derrick Rose -Winter Olympics -Patriots -Edwin Jackson -Duke Basketball -Valentines Day Images -Larry Nassar -Mark Salling -Government Shutdown -Super Bowl score -Venom -Florida shooting -Super Bowl 2018 -Stan Lee -Virginia Woolf -Super Bowl score -CNN -Florida shooting -Florida shooting -Dow Jones -What Time Is The Super Bowl -Dow Jones -Brynn Cameron -Super Bowl score -Carter G. Woodson -Amy Schumer -Elizabeth Blackwell -Michigan State -Patriots -Patriots -Jason Momoa -Virginia Woolf -Google docs -Sergei Eisenstein -Wilder Penfield -Justin Timberlake -Valentines Day Images -Winter Olympics -Joe Kennedy -Patriots -Government Shutdown 2018 -Groundhog Day 2018 -UFC 220 -Virginia Woolf -Sergei Eisenstein -NFC Championship Game 2018 -Drive -Lorenzo Cain -Groundhog Day 2018 -Virginia Woolf -Carter G. Woodson -Virginia Woolf -Carter G. Woodson -Florida shooting -United States Of America Winter Olympics -Chris Paul -Florida shooting -Dow Jones -Real Madrid -What Time Is The Super Bowl -Dennis Edwards -Fifty Shades Freed -UFC 220 -Super Bowl score -United States Postal Service -Government Shutdown -UFC 220 -Jo Jo White -Norovirus -Uma Thurman -Robert Wagner -Super Bowl score -SpaceX -School Closings -Carter G. Woodson -Justin Timberlake -Larry Nassar -Florida shooting -Super Bowl 2018 halftime show -Government shutdown 2018 -Lou Anna Simon -Winter Olympics -Reg E Cathey -Oscar Nominations 2018 -School closings -Waco -Elizabeth Blackwell -Florida shooting -Virginia Woolf -Wilder Penfield -Quincy Jones -Bitcoin Price -Alessia Cara -Super Bowl score -Happy Valentines Day -Solo Trailer -Justin Timberlake -Government Shutdown -Florida shooting -Kylie Jenner -Jennifer Aniston -New England Patriots owner -Oscar Nominations 2018 -Super Bowl score -Jennifer Aniston -Carter G. Woodson -Mardi Gras 2018 -Winter Olympics -Sergei Eisenstein -Groundhog Day 2018 -Florida shooting -Justin Timberlake -XFL -Super Bowl score -Bruno Mars -Elton John -Virginia Woolf -Celtics -Venom -Elizabeth Blackwell -Chinese New Year 2018 -Winter Olympics -Obama portrait -UFC 220 -Dwyane Wade -Justin Timberlake -John Mahoney -Winter Olympics -Kylie Jenner -Super Bowl 2018 -Dow Jones -Government Shutdown -Winter Olympics -Elizabeth Blackwell -Florida shooting -Patriots -Virginia Woolf -Gianni Versace -Elizabeth Blackwell -Sergei Eisenstein -SpaceX -Patriots -Elizabeth Blackwell -Jemele Hill -Patti LuPone -Johnny Weir -Elizabeth Blackwell -Presidents Day 2018 -Florida shooting -Cloverfield Paradox -Shaun White -Grammys 2018 -blue alert -Conor McGregor -Justin Timberlake -Peter Rabbit -Patriots -Bitcoin Price -Blake Griffin -Oscar Nominations 2018 -Toys R Us -Anthony Davis -Grammys 2018 -NBA Trades -Florida shooting -Dane Cook -Olympics 2018 -Super Bowl 2018 -Edwin Jackson -State of the Union -Virginia Woolf -Super Bowl score -Government Shutdown Meaning -Cedi Osman -Happy Valentines Day -Zion Williamson -Chloe Kim -Super Bowl 2018 halftime show -Paula Modersohn-Becker -Shaun White -Fredo Santana -Super blue blood Moon -Virginia Woolf -Super Bowl score -Shaun White -Super Bowl 2018 -Sergei Eisenstein -Mark Salling -Alex Smith -Stan Lee -Florida shooting -Alexander Polinsky -Oscar Nominations 2018 -Wilder Penfield -Esteban Loaiza -Kylie Jenner -Happy Valentines Day -Google docs -Wilder Penfield -Elizabeth Blackwell -Super Bowl score -Peter Rabbit -SpaceX -Quincy Jones -Patriots -Virginia Woolf -Super Bowl score -FC Barcelona -Dow Jones -Cavs -Mark Salling -Winter Olympics -Elizabeth Blackwell -Dow Jones -Paul Ryan -Dennis Edwards -Grammys 2018 -Virginia Woolf -H&r Block -Paula Modersohn-Becker -Winter Olympics -Florida shooting -Celtics -Government shutdown 2018 -Rodney Hood -government shutdown -Kylie Jenner -Grammys 2018 -Super Bowl 2018 -Carter G. Woodson -Winter Olympics -Snake -Happy Valentines Day -Patriots -Government Shutdown Meaning -Justin Timberlake -Danielle Herrington -Elizabeth Blackwell -Amy Schumer -Halsey -Jen Selter -Friends movie -Sergei Eisenstein -Juventus -Dow Jones -Grammys 2018 -Winter Olympics -Kim Kardashian -Mavic Air -Robert Mueller -Carter G. Woodson -Sergei Eisenstein -Virginia Woolf -Dow Jones -Grammys 2018 -Virginia Woolf -Shaun White -Patriots -Florida shooting -Jen Selter -Chief Wahoo -Ash Wednesday -Sergei Eisenstein -This Is Us -Virginia Woolf -Florida shooting -Enzo Amore -Trump Hair -Winter Olympics -Patriots -Oscar Nominations 2018 -Patriots -Super Bowl 2018 -Camila Cabello -Black Panther -Kelsey Grammer -Super Bowl score -Vikings vs Eagles -Olive Garden -Valentines Day -Black Panther -Wilder Penfield -Carter G. Woodson -Justin Timberlake -Women's March 2018 -Florida shooting -Outback Steakhouse -Manchester United -Memo -Patriots -Wilder Penfield -Super Bowl 2018 -Kylie Jenner -Patriots -CNN -Patriots -Carter G. Woodson -Ash Wednesday -Trump State of the Union -Valentines Day Memes -What Time Is The Super Bowl -SpaceX -What Time Is The Super Bowl -Olympic medal count -Kesha Grammy -SZA -Patriots -Dwyane Wade -State of the Union -Government shutdown -Grammys 2018 -Jennifer Aniston -Alison Brie -Shaun White -Government Shutdown -Trump State of the Union -Megan Barry -Andrew Cunanan -Blake Griffin -Paula Modersohn-Becker -Super Blue Blood Moon -Sergei Eisenstein -XFL -Rodney Hood -Patriots -NBA Trades -Winter Olympics -This Is Us -Super Bowl score -Carter G. Woodson -Sergei Eisenstein -Google Drive -Winter Olympics -Kentucky shooting -Sergei Eisenstein -Olympic medal count -Vikings Vs Eagles -Lorenzo Cain -Paula Modersohn-Becker -Elizabeth Blackwell -Brynn Cameron -Super Bowl score -Peter Rabbit -Paula Modersohn-Becker -Pro Bowl 2018 -Super Bowl 2018 -Joshua Cooper Ramo -earthquake today -Shaun White -Presidents Day 2018 -Elizabeth Blackwell -Super Bowl score -Wilder Penfield -Paula Modersohn-Becker -Winter Olympics -Wilder Penfield -Grammys 2018 -Winter Olympics -What Time Is The Super Bowl -Super Bowl 2018 -Kylie Jenner -Outback Steakhouse -Solo Trailer -Jason Kelce -Bitcoin Price -Carter G. Woodson -Carter G. Woodson -Super Bowl 2018 -SpaceX -Paula Modersohn-Becker -Super Bowl score -Winter Olympics -State of the Union -Happy Valentines Day -Wilder Penfield -Anna Kournikova -Kesha -Carter G. Woodson -Don Lemon -Google Drive -Government shutdown 2018 -Betty White -Paula Modersohn-Becker -Super Bowl 2018 -Maze Runner: The Death Cure -Black Panther -Paula Modersohn-Becker -Justin Timberlake -Tonga -Kylie Jenner -Elizabeth Blackwell -KSI Vs Weller -Den of Thieves -The Resident -Blake Griffin Trade -Winter Olympics -Bruno Mars -Elizabeth Blackwell -Carter G. Woodson -Justin Timberlake -Trump State of the Union -Super Bowl score -Government Shutdown -Alex Smith -Kim Kardashian -Rodney Hood -State of the Union -Sergei Eisenstein -Tyler Hilinski -Paula Modersohn-Becker -Phantom Thread -Lonzo Ball -Alessia Cara -Deadpool 2 -Sal Castro Middle School -Super Bowl 2018 -Larry Nassar -Kylie Jenner -Super Bowl score -Virginia Woolf -Super Bowl 2018 -Sergei Eisenstein -Sergei Eisenstein -Super Bowl 2018 -National Pizza Day -Tyler Hilinski -Happy Valentines Day -Paula Modersohn-Becker -Super Bowl 2018 -Paula Modersohn-Becker -Kylie Jenner -Cloverfield Paradox -Virginia Woolf -Justin Timberlake -Wilder Penfield -SpaceX -Wilder Penfield -Paula Modersohn-Becker -SpaceX -Meteor -Google docs -calculator -Vikings Vs Eagles -Stormi -Winter Olympics -NBA Trades -Julie Ertz -Johnny Weir -Solo Trailer -Florida shooting -Super Bowl score -stock market -Justin Timberlake -Kylie Jenner -Robert Mueller -Patriots -Winter Olympics -Carter G. Woodson -Sergei Eisenstein -Winter Olympics -Elizabeth Blackwell -Classroom -Enzo Amore -Alaska earthquake -Yoel Romero -Happy Valentines Day -Sergei Eisenstein -Jimmy Kimmel -Early Man -Groundhog Day 2018 -Super Bowl score -Paula Modersohn-Becker -Andrew Cunanan -Super Bowl 2018 -Alessia Cara -Super Bowl 2018 -Virginia Woolf -Wilder Penfield -Edible Arrangements -Rasual Butler -Wilder Penfield -Yoel Romero -Bob Marley -Friends movie -Meteor -NHL All Star Game -Real Madrid -Kylie Jenner -NBA Trades -Paula Modersohn-Becker -Virginia Woolf -Kesha -Juventus -Winter Olympics -Sergei Eisenstein -Andrew Cunanan -Dua Lipa -Justin Timberlake -NBA Trades -VIX -Nadal -Justin Timberlake -Google Drive -Eli Manning -Super Bowl 2018 -Natalie Wood -Kylie Jenner -Super Bowl score -Winchester -XFL -School closings -Kylie Jenner -Government shutdown -Lindsey Vonn -Patriots -Turpin -Deadpool 2 -Winter Olympics -Super Bowl Commercials 2018 -Women's March 2018 -Super Bowl 2018 -Kentucky shooting -Elizabeth Blackwell -Trump State of the Union -Super Bowl score -Cloverfield Paradox -What Time Is The Super Bowl -This Is Us -Super Bowl score -Jennifer Aniston -Kylie Jenner -What Time Is The Super Bowl -Winter Olympics -Rose McGowan -Steven Tyler -Paula Modersohn-Becker -Super Bowl 2018 -Super Bowl score -CNN -tsunami -Elizabeth Blackwell -Kylie Jenner -Kim Kardashian -Florida shooting -Kesha -Memo -Valentines Day Images -Rihanna -Chinese New Year 2018 -Cavs -Paula Modersohn-Becker -Larry Nassar -Virginia Woolf -Groundhog Day 2018 -Grammys 2018 -Adam Hicks -Super Bowl score -Kylie Jenner -John Mahoney -Derrick Rose -Presidents Day 2018 -Release The Memo -Valentines Day Images -Sergei Eisenstein -Tessa Virtue -Kylie Jenner -Carter G. Woodson -Fifty Shades Freed -Oscar Nominations 2018 -Carter G. Woodson -Paula Modersohn-Becker -Dow Jones -Super Bowl 2018 -Justin Timberlake -Valentines Day Memes -Kim Cattrall -Kentucky shooting -Super Bowl score -Sergei Eisenstein -Carter G. Woodson -Bitcoin Price -Vikings Vs Eagles -NHL All Star Game -Super Bowl 2018 -Super Bowl 2018 -Super Bowl score -Justin Timberlake -Bill Paxton -Black Panther -Peter Rabbit -Grammys 2018 -State of the Union -Kesha Grammy -Wilder Penfield -Super Bowl score -Hope Hicks -Caroline Wozniacki -Conor McGregor -Patriots -Duke Basketball -Super blue blood Moon -What Time Is The Super Bowl -Ant Man and the Wasp -Lakers -The Home Depot -Isaiah Canaan -Super Bowl 2018 -Ash Wednesday -Wilder Penfield -Larry Nassar -Tiger Woods -Omarosa -Kentucky shooting -Memo -Happy Valentines Day -Mardi Gras 2018 -Elizabeth Blackwell -Virginia Woolf -Winter Olympics -Carter G. Woodson -Alex Smith -Jason Momoa -Dwyane Wade -Sergei Eisenstein -Erykah Badu -earthquake -Super Bowl 2018 -UFC 220 -Gods Plan -Lari White -Super Bowl score -Paula Modersohn-Becker -Larry Nassar -Carter G. Woodson -Happy Valentines Day -Google docs -Super Bowl 2018 -Adam Rippon -Super Bowl score -SpaceX -Steven Tyler -Larry Nassar -Sergei Eisenstein -Patriots -Kylie Jenner -Blood Moon -Jason Kelce -Larry Nassar -Super Bowl score -Katie Couric -Scott Baio -Stan Lee -Amy Schumer -Government Shutdown 2018 -Patriots -Blake Griffin -Bitcoin Price -Larry Nassar -Super Bowl 2018 -Super Bowl score -Mardi Gras 2018 -Wilder Penfield -Patriots -Grammys 2018 -Super Bowl score -Justin Timberlake -Florida shooting -Carter G. Woodson -Super blue blood Moon -Dane Cook -Bitcoin Price -Winter Olympics -Virginia Woolf -Carter G. Woodson -Patriots -Mark Salling -Government Shutdown 2018 -Carter G. Woodson -Virginia Woolf -Super Bowl Commercials 2018 -Elizabeth Blackwell -Mardi Gras 2018 -UFC 220 -Phantom Thread -Den of Thieves -Olympic medal count -Puppy Bowl 2018 -What Time Is The Super Bowl -Wilder Penfield -Super Bowl score -Carter G. Woodson -Paula Modersohn-Becker -Wilder Penfield -Paula Modersohn-Becker -Wilder Penfield -School Closings -Wilder Penfield -Patriots -What Time Is The Super Bowl -Super blue blood Moon -Meteor -Wilder Penfield -SpaceX -Yahoo Finance -Carter G. Woodson -Wilder Penfield -Super Bowl 2018 halftime show -DeMarcus Cousins -Justin Timberlake -Oscar Nominations 2018 -Roger Federer -Wilder Penfield -Kylie Jenner -Super Bowl score -Justin Timberlake -Joe Kennedy -Government shutdown 2018 -Phantom Thread -Call Me by Your Name -Winter Olympics -Virginia Woolf -National Pizza Day -Groundhog Day 2018 -Government Shutdown Meaning -Sergei Eisenstein -BitConnect -Paula Modersohn-Becker -Walter Payton -Lunar eclipse -Elizabeth Blackwell -Amy Schumer -Valentine's Day -Carter G. Woodson -Patriots -Sergei Eisenstein -Homeland -Florida shooting -Carter G. Woodson -Lunar eclipse -Mikaela Shiffrin -Rodney Hood -Virginia Woolf -Carter G. Woodson -Elizabeth Blackwell -Patti LuPone -Paula Modersohn-Becker -Mexico earthquake -Paula Modersohn-Becker -Elizabeth Blackwell -Kelly Clark -Winter Olympics -Elizabeth Blackwell -school closings -Andrew McCabe -Government Shutdown -Winter Olympics -Dow Jones -Alex Smith -Justin Timberlake -Larry Nassar -Portia de Rossi -Grammys 2018 -Blake Griffin -Jennifer Aniston -Government Shutdown Meaning -Amtrak -NBA Trades -New California -Grammys 2018 -Carrie Underwood -Wilder Penfield -Carter G. Woodson -Kylie Jenner -Virginia Woolf -Government Shutdown -Bitcoin Price -Dua Lipa -Mikaela Shiffrin -Fredo Santana -Kylie Jenner Baby Girl -Florida shooting -Yu Darvish -Winter Olympics -XFL -Carter G. Woodson -Sergei Eisenstein -Mardi Gras 2018 -Super Bowl score -Wilder Penfield -Chris Stapleton -Kylie Jenner Baby Girl -Chloe Kim -Winter Olympics -Chicago West -Super Bowl 2018 -Vince McMahon -Wilder Penfield -Sean McVay -Cavs -Tiger Woods -Happy Valentines Day -Government Shutdown -LeBron James -Virginia Woolf -Dow Jones -Chris Long -Super Bowl score -Super blue blood Moon -Arsenal -Elizabeth Blackwell -Virginia Woolf -Ash Wednesday -Elizabeth Blackwell -Vince McMahon -Den of Thieves -Did the Groundhog See His Shadow -Wilder Penfield -Super Bowl score -Virginia Woolf -Virginia Woolf -Google docs -Government Shutdown 2018 -Adam Rippon -United States Of America Winter Olympics -Arsenal -Sergei Eisenstein -Virginia Woolf -Virginia Woolf -Blue Ivy -Paul Ryan -What Time Is The Super Bowl -Elizabeth Blackwell -Oscar Nominations 2018 -Super blue blood Moon -Kylie Jenner -Virginia Woolf -Virginia Woolf -Wilder Penfield -SpaceX -Winter Olympics -CNN -Kylie Jenner -Winter Olympics -Oscar Nominations 2018 -Mexico earthquake -Florida shooting -Patriots -Super Bowl Commercials 2018 -Chinese New Year 2018 -Florida shooting -What Time Is The Super Bowl -Patriots -Did the Groundhog See His Shadow -Paula Modersohn-Becker -Lari White -Florida shooting -Winter Olympics -Hailee Steinfeld -John Mahoney -Chicago Weather -NBA Trades -Patriots -Russell Wilson -Joe Kennedy -Grammys 2018 -The 15:17 to Paris -XFL -The Home Depot -Taiwan -Elton John -Andrew Cunanan -Kesha -Jennifer Aniston -Tom Petty -Super Bowl 2018 -Patriots -Sergei Eisenstein -Kylie Jenner -Government Shutdown Meaning -Elizabeth Blackwell -Nintendo Labo -Bitcoin Price -NBC Sports -Olympics 2018 -Wilder Penfield -Quincy Jones -Virginia Woolf -Gigi Hadid -Altered Carbon -Fredo Santana -Government Shutdown -SpaceX -Katie Couric -Government Shutdown -Elton John -Luke Wilson -What Time Is The Super Bowl -Hope Hicks -calculator -Jane Fonda -Wilder Penfield -Patriots -Justin Timberlake -Fredo Santana -Virginia Woolf -Lil Xan -Kylie Jenner Baby Girl -Terrell Owens -Virginia Woolf -Wilder Penfield -Winter Olympics -School closings -Patriots -Rasual Butler -Kylie Jenner -Super Bowl 2018 -Shaun White -Kratom -Elizabeth Blackwell -Costco Wholesale -Elizabeth Blackwell -Tom Brady daughter -Wilder Penfield -Super Bowl 2018 -Dow Jones -Carter G. Woodson -Winter Olympics -National Pizza Day -Carter G. Woodson -Patriots -Dow Jones -Halsey -Florida shooting -Virginia Woolf -CNN -Paula Modersohn-Becker -Patriots -Toys R Us -Amazon Stock -Government shutdown -Elizabeth Blackwell -Patriots -State of the Union -What Time Is The Super Bowl -What Time Is The Super Bowl -Winter Olympics -Winter Olympics -Super Bowl 2018 -Kim Cattrall -AFC Championship Game 2018 -Elizabeth Blackwell -Patriots -Winter Olympics -Nba All Star 2018 -Virginia Woolf -Mikaela Shiffrin -Super Bowl score -Real Madrid -The 15:17 to Paris -Drake -Jamie Anderson -Super Bowl 2018 -Mikaela Shiffrin -Super Bowl Commercials 2018 -Wonder Woman -Cloverfield Paradox -What Time Is The Super Bowl -Larry Nassar -Wilder Penfield -Fortnite New Map -Mattie Larson -Paula Modersohn-Becker -Shani Davis -Elizabeth Blackwell -Super Bowl score -JUUL -Wilder Penfield -Super Bowl score -Super Bowl 2018 -Shaun White -Kingdom Come Deliverance -Florida shooting -Virginia Woolf -Winter Olympics -calculator -Winter Olympics -Groundhog Day 2018 -Lil Pump -Rose McGowan -Wilder Penfield -DeMarcus Cousins -Super blue blood Moon -Logan Paul -Houston Rockets -Super blue blood Moon -Johnny Manziel -Lindsey Vonn -Real Madrid -Super Bowl score -Super Bowl score -Natalie Portman -Super Bowl Commercials 2018 -Patriots -Patriots -Carter G. Woodson -SpaceX -Montreal Cognitive Assessment -Quincy Jones -James Maslow -Super Bowl 2018 -Government Shutdown -Patriots -Senior Bowl -Elizabeth Blackwell -SAG Awards 2018 -Super Bowl 2018 -Grammys 2018 -Sergei Eisenstein -Virginia Woolf -Bruno Mars -Wilder Penfield -Government Shutdown Meaning -SAG Awards 2018 -Adam Rippon -Paula Modersohn-Becker -Brynn Cameron -Wilder Penfield -Lunar eclipse -Wilder Penfield -Blake Griffin -State of the Union -Adam Rippon -Super Blue Blood Moon -SpaceX -Virginia Woolf -Red Gerard -Super Bowl 2018 -Lady Bird -Gianni Versace -Patriots -Kesha -Paula Modersohn-Becker -Florida shooting -Pro Bowl 2018 -Vanessa Trump -Super Bowl score -Rose McGowan -Super Bowl score -Pink -Memo -Johnny Weir -Sergei Eisenstein -Kylie Jenner Baby Girl -Paula Modersohn-Becker -Bitcoin Price -Shaun White -Waco -Royal Rumble 2018 -Super Bowl score -Joy Villa -Conor McGregor -Florida shooting -Florida shooting -Fredo Santana -Winter Olympics -Black Panther -Chris Paul -Carter G. Woodson -Call Me by Your Name -Ann Curry -Super Bowl score -Wilder Penfield -Peter Rabbit -Wilder Penfield -Shaun White -Walter Payton -Mark Salling -What Time Is The Super Bowl -SAG Awards 2018 -Hailee Steinfeld -Carter G. Woodson -Elton John -Happy Valentines Day -Groundhog Day 2018 -Super Bowl 2018 -State of the Union -Happy Valentines Day -Florida shooting -Patriots -Wilder Penfield -Wilder Penfield -Mark Salling -Alex Smith -Black Panther -Elizabeth Blackwell -Reg E Cathey -Carter G. Woodson -NBA Trades -School Closings -Super Bowl 2018 -Sergei Eisenstein -Black Panther -Patriots -Elizabeth Blackwell -Sergei Eisenstein -XFL -Shaun White -Patriots -Grammys 2018 -Kylie Jenner -Elizabeth Blackwell -Memo -This Is Us -XFL -Winter Olympics -Forever My Girl -Chinese New Year 2018 -Patriots -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl score -Jason Kidd -SpaceX -Casey Affleck -Kylie Jenner Baby Girl -Red Gerard -This Is Us -Paula Modersohn-Becker -Kylie Jenner -Olympics 2018 -Black Panther -What Time Is The Super Bowl -Grammys 2018 -Tiger Woods -Government shutdown -Sea Of Thieves -Super Bowl score -Super Bowl Commercials -Elizabeth Blackwell -Sergei Eisenstein -Virginia Woolf -Carter G. Woodson -Carter G. Woodson -Winter Olympics -Carter G. Woodson -NHL All Star Game -Mexico earthquake -Morgan Freeman -Obama portrait -What Time Is The Super Bowl -Riverdale -Groundhog Day 2018 -Virginia Woolf -Chloe Kim -Aaliyah -Florida shooting -NBA Trades -Alessia Cara -Paula Modersohn-Becker -Florida shooting -Super Blue Blood Moon -Larry Nassar -Cavs -Carter G. Woodson -Portia de Rossi -Once Upon a Time -Winter Olympics -NBA Trades -Florida shooting -Black Panther -Super Bowl Commercials -Super Bowl 2018 -Patriots -NASCAR -Samson -Chris Paul -Deadpool 2 -Vikings Vs Eagles -Wilder Penfield -What Time Is The Super Bowl -Shaun White -Mardi Gras 2018 -Oscar Nominations 2018 -Carter G. Woodson -Solo Trailer -Grammys 2018 -Virginia Woolf -Super Bowl 2018 -Blue Moon -Kylie Jenner -Shaun White -Paula Modersohn-Becker -Sean Hannity -Trump State of the Union -Government shutdown 2018 -NHL All Star Game -FA Cup -Sergei Eisenstein -Mardi Gras 2018 -Sea of Thieves -Super Bowl 2018 -United States Of America Winter Olympics -Sergei Eisenstein -Jennifer Aniston -Carter G. Woodson -Altered Carbon -Tiger Woods -Elizabeth Blackwell -Super Bowl 2018 -Grammys 2018 -What Time Is The Super Bowl -Alison Brie -Elton John -Left Shark -Virginia Woolf -Shaun White -Jennifer Aniston -Sergei Eisenstein -Kingdom Come Deliverance -Elizabeth Blackwell -Justin Timberlake -NBA Trades -Kesha Grammy -Winter Olympics -Johnny Weir -Winter Olympics -Winter Olympics -Grammys 2018 -Chinese New Year 2018 -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl score -Kylie Jenner -Johnny Weir -Simona Halep -Patriots -Trump State of the Union -Winter Olympics -What Time Is The Super Bowl -Paula Modersohn-Becker -Peter Rabbit -Wilder Penfield -Elizabeth Blackwell -Rob Porter -Mark Salling -Winter Olympics -Winter Olympics -Wilder Penfield -Winter Olympics -Super blue blood Moon -Patriots -Virginia Woolf -Mark Salling -Elizabeth Blackwell -Paula Modersohn-Becker -Kylie Jenner -Chipper Jones -Winter Olympics -Cavs -Virginia Woolf -Carter G. Woodson -Mark Salling -SpaceX -Wilder Penfield -Kesha -Wilder Penfield -Larry Nassar -Winter Olympics -NFC Championship Game 2018 -Wilder Penfield -Obama portrait -UFC 220 -This Is Us -SpaceX -Patriots -Yahoo Finance -Bode Miller -Justin Timberlake -Super Bowl score -Larry Nassar -Tennys Sandgren -Wilder Penfield -Kylie Jenner -Super Bowl score -Football Playoffs 2018 -Cavs -Rasual Butler -Wilder Penfield -calculator -Dwyane Wade -Winter Olympics -Black Panther -blue alert -Kesha Grammy -Nintendo Labo -Valentines Day -Valentines Day -Paula Modersohn-Becker -Childish Gambino -Carter G. Woodson -Carter G. Woodson -Joe Kennedy -What Time Is The Super Bowl -Elton John -Trump State of the Union -Carter G. Woodson -Jo Jo White -Luke Wilson -Kesha Grammy -Government shutdown 2018 -SpaceX -Kylie Jenner -Virginia Woolf -Paula Modersohn-Becker -Tennys Sandgren -Alex Reimer -Katie Couric -SpaceX -What Time Is The Super Bowl -Super Bowl score -Wilder Penfield -What Time Is The Super Bowl -Chinese New Year 2018 -Florida shooting -Florida shooting -Carter G. Woodson -Wilder Penfield -Bitcoin Price -What Time Is The Super Bowl -Super Bowl 2018 -Bob Dole -Johnny Weir -Bitcoin Price -Shaun White -Elizabeth Blackwell -Wilder Penfield -Patriots -The 15:17 to Paris -Groundhog Day 2018 -Trump State of the Union -Virginia Woolf -Sean Hannity -Josh McDaniels -Farmers Insurance Open 2018 -Olympic Medal Count -Amy Schumer -Sergei Eisenstein -Super Bowl 2018 -Tyler Hilinski -Super Bowl 2018 -Government Shutdown -Super Bowl 2018 -Elizabeth Blackwell -Mavic Air -NHL All Star Game -Wilder Penfield -Wilder Penfield -Elizabeth Blackwell -Paula Modersohn-Becker -Trump State of the Union -KSI -Carter G. Woodson -Snake -Carter G. Woodson -Florida shooting -Winter Olympics -NBA Trades -Elizabeth Blackwell -Winter Olympics -Patriots -Wilder Penfield -Black Panther -UFC 220 -SpaceX -Monster Hunter World -Kim Kardashian -Patriots -Shani Davis -Sergei Eisenstein -Google docs -Lil Pump -Ar 15 -Peter Rabbit -Grammys 2018 -Winchester -Amy Schumer -Winter Olympics -Google Drive -Vanity Fair Cover -Sergei Eisenstein -Jen Selter -Grammys 2018 -SpaceX -Blood Moon -What Time Is The Super Bowl -Dennis Edwards -Joe Kennedy -XFL -Kingdom Come Deliverance -Kylie Jenner -Shaun White -Government Shutdown Meaning -shutdown -Virginia Woolf -Florida shooting -Sergei Eisenstein -Kylie Jenner -Sergei Eisenstein -Royal Rumble 2018 -Google Drive -SpaceX -Elizabeth Blackwell -Meteor -Wilder Penfield -Joe Kennedy -Elizabeth Blackwell -Mardi Gras 2018 -Eli Manning -Patriots -What Time Is The Super Bowl -SpaceX -Government Shutdown Meaning -Early Man -Kylie Jenner -Daryle Singletary -Super Bowl score -Amazon Stock -BitConnect -Wilder Penfield -Michelle Obama -Winter Olympics -SpaceX -Super Bowl 2018 -Daryle Singletary -Winter Olympics -Blood Moon -Reg E Cathey -Blake Griffin -Paula Modersohn-Becker -Duke basketball -calculator -Super blue blood Moon -Dwyane Wade -Wilder Penfield -Google docs -Virginia Woolf -Dwyane Wade -This is Us -SpaceX -Paula Modersohn-Becker -Larry Nassar -Super Bowl score -Kylie Jenner Baby Girl -State of the Union -SpaceX -Super Bowl score -Winter Olympics -Patriots -AR-15 -Lonzo Ball -Elizabeth Blackwell -Kylie Jenner -Jacob Copeland -Kylie Jenner -Cloverfield Paradox -Alaska earthquake -Marlon Brando -Cavs -Groundhog Day 2018 -CNN -Kylie Jenner -Patriots -H&r Block -Grammys 2018 -Chinese New Year 2018 -Carter G. Woodson -Sergei Eisenstein -Kristaps Porzingis -Carter G. Woodson -Grammys 2018 -Lee Miglin -Super Bowl 2018 -NFC Championship Game 2018 -Will Ferrell -Florida shooting -Dow Jones -All Star Weekend 2018 -Alaska earthquake -Wilder Penfield -Virginia Woolf -Virginia Woolf -SpaceX -Robert Wagner -Olympic medal count -Peter Rabbit -Adam Rippon -Paula Modersohn-Becker -Patriots -Sergei Eisenstein -Jennifer Aniston -Shaun White -What Time Is The Super Bowl -Super Bowl 2018 -Mike Vrabel -Super Bowl 2018 -SpaceX -Paula Modersohn-Becker -Joy Villa -Oscar Nominations 2018 -Wilder Penfield -Vikings vs Eagles -Government Shutdown -Elizabeth Blackwell -Chloe Kim -Winter Olympics -Winter Olympics -Joe Kennedy -Monster Hunter World -Sarah Barthel -Homeland -Alaska earthquake -Super Bowl 2018 -Wilder Penfield -Larry Nassar -Google Classroom -Sergei Eisenstein -SpaceX -Government Shutdown -Virginia Woolf -Super Bowl 2018 -Carter G. Woodson -State of the Union -SpaceX -Vikings vs Eagles -National Pizza Day -Josh McDaniels -Florida shooting -John Mahoney -Grammys 2018 -Peter Rabbit -Paula Modersohn-Becker -Vikings Vs Eagles -Andrew Cunanan -Patriots -Eli Manning -Wilder Penfield -Carter G. Woodson -Celtics -Tiger Woods -Kylie Jenner -Chris Mazdzer -National Pizza Day -Virginia Woolf -Elizabeth Blackwell -NFC Championship Game 2018 -Winter Olympics -Daryle Singletary -Patriots -Paula Modersohn-Becker -Carter G. Woodson -Dwyane Wade -Florida shooting -Florida shooting -NBA Trades -Virginia Woolf -Reg E Cathey -Montreal Cognitive Assessment -Amazon Stock -Apolo Ohno -Mikaela Shiffrin -Paula Modersohn-Becker -Lauren Davis -Tesla in space -Carter G. Woodson -Winter Olympics -Kesha -Mikaela Shiffrin -Winter Olympics -Adam Rippon -Vikings vs Eagles -Kylie Jenner -The Resident -State of the Union -Oscar Nominations 2018 -Sergei Eisenstein -Vikings Vs Eagles -Bitcoin Price -Super Bowl 2018 -Naya Rivera -Carter G. Woodson -Presidents Day 2018 -Dow Jones -Super Bowl 2018 -Sergei Eisenstein -Caroline Wozniacki -Patriots -Virginia Woolf -Super blue blood Moon -NBA Trades -Robert Wagner -Dwyane Wade -Wilder Penfield -Sergei Eisenstein -Justin Timberlake -Virginia Woolf -Winter Olympics -Patriots -Larry Nassar -Cloverfield Paradox -Sergei Eisenstein -Black Panther -Sergei Eisenstein -Tesla in space -Chloe Kim -Larry Nassar -Kawhi Leonard -Alex Smith -Super Bowl 2018 -Danielle Herrington -Patriots -Solo Trailer -Grammys 2018 -Virginia Woolf -Virginia Woolf -Altered Carbon -Super blue blood Moon -Vikings Vs Eagles -Paula Modersohn-Becker -Solo Trailer -Carter G. Woodson -Kim Kardashian -Larry Nassar -Andrew Cunanan -Devin Nunes -Super Bowl score -Snapchat Update -Paula Modersohn-Becker -Kylie Jenner -Pro Bowl 2018 -Wilder Penfield -Virginia Woolf -Patriots -Jamie Anderson -Super Bowl 2018 -Wilder Penfield -Carter G. Woodson -Red Gerard -Winter Olympics -Winter Olympics -Fredo Santana -United States Of America Winter Olympics -Chicago West -Winter Olympics -Paula Modersohn-Becker -Patriots -Mikaela Shiffrin -Sergei Eisenstein -Dow Jones -Sergei Eisenstein -Conor McGregor -CNN -Paula Modersohn-Becker -Government shutdown 2018 -Olympic medal count -Winter Olympics -The 15:17 to Paris -Patriots -Mexico earthquake -Kylie Jenner -Super Bowl 2018 -Grammys 2018 -Florida shooting -Google Classroom -School Closings -12 Strong -Kylie Jenner -Alex Reimer -Sergei Eisenstein -Cavs -New England Patriots owner -Super Bowl 2018 -Super Bowl score -Vikings Vs Eagles -Mark Salling -Florida shooting -Groundhog Day 2018 -Sergei Eisenstein -Paula Modersohn-Becker -Joshua Cooper Ramo -Den of Thieves -Happy Valentines Day -Justin Timberlake -Bitcoin Price -SpaceX -Wilder Penfield -Super blue blood Moon -Elizabeth Blackwell -Jemele Hill -Steven Tyler -Did the Groundhog See His Shadow -Super blue blood Moon -Meteor -The 15:17 to Paris -LeBron James -Paula Modersohn-Becker -Obama portrait -Jacob Copeland -Kim Kardashian -State of the Union -Justin Timberlake -Paula Modersohn-Becker -UFC 220 -Hope Hicks -Jennifer Aniston -Virginia Woolf -Robinhood -Nathan Chen -Adam Rippon -What Time Is The Super Bowl -NBA Trades -Elizabeth Blackwell -SpaceX -Paula Modersohn-Becker -Paula Modersohn-Becker -Winchester -Wilder Penfield -Wilder Penfield -Mark Salling -Super Bowl 2018 halftime show -Super Bowl 2018 -Super Bowl 2018 -Justin Timberlake -Kim Kardashian -Blake Griffin -Paula Modersohn-Becker -Grammys 2018 -Google Classroom -Google Classroom -Blue Ivy -Carter G. Woodson -Winter Olympics -calculator -weather tomorrow -Sergei Eisenstein -Mark Salling -Carrie Underwood -Elizabeth Blackwell -Eli Manning -Virginia Woolf -Alex Smith -Government Shutdown 2018 -Government Shutdown -Super blue blood Moon -Larry Nassar -Shaun White -Florida shooting -SAG Awards 2018 -Virginia Woolf -Vikings Vs Eagles -Shaun White -Justin Timberlake -Winter Olympics -Jason Kidd -Bill Belichick -Memo -Shaun White -Winter Olympics -Patriots -Justin Timberlake -Florida shooting -CBS Sports -Meteor -Carter G. Woodson -Peter Rabbit -AR-15 -Super Bowl 2018 -Black Panther -Carter G. Woodson -Virginia Woolf -Chris Paul -Florida shooting -What Time Is The Super Bowl -Patriots -Super Bowl score -Royal Rumble 2018 -Larry Nassar -Dow Jones -Justin Timberlake -Sergei Eisenstein -stock market -Super Bowl 2018 -Cloverfield Paradox -Happy Valentines Day -Cavs -Doomsday Clock -Winter Olympics -Carter G. Woodson -What Time Is The Super Bowl -Vikings Vs Eagles -Super Bowl score -Elon Musk -Lindsey Vonn -Super Bowl score -Happy Valentines Day -Rasual Butler -Florida shooting -Grammys 2018 -Chinese New Year 2018 -What Time Is The Super Bowl -Winter Olympics -Elton John -United States Postal Service -Andrew Cunanan -Happy Valentines Day -Blue Ivy -Paula Modersohn-Becker -Super Bowl 2018 -Oscar Nominations 2018 -Cloverfield Paradox -Kylie Jenner -Mark Salling -Sergei Eisenstein -Carter G. Woodson -Real Madrid -Kylie Jenner -Meteor -Rasual Butler -Sergei Eisenstein -Sergei Eisenstein -Wilder Penfield -Winter Olympics -Super Bowl 2018 -Oscar Nominations 2018 -Kesha -Florida shooting -Carter G. Woodson -Elizabeth Blackwell -Eli Manning -Florida shooting -Chipper Jones -Sal Castro Middle School -Carter G. Woodson -What Time Is The Super Bowl -Virginia Woolf -Friends The Movie 2018 -Justin Timberlake -Amy Schumer -Lindsey Vonn -Chris Stapleton -Super Bowl score -Elizabeth Blackwell -Super Bowl 2018 -Paula Modersohn-Becker -Sergei Eisenstein -Patriots -Lena Zawaideh -Elizabeth Blackwell -Vikings Vs Eagles -Vanity Fair Cover -Brie Larson -Super Bowl score -Super Bowl score -calculator -Virginia Woolf -John Mahoney -Super Bowl score -pissant -Did the Groundhog See His Shadow -Super Bowl score -Presidents Day 2018 -Florida shooting -Gods Plan -National Pizza Day -Black Panther -Super Bowl 2018 -Super Bowl 2018 -What Time Is The Super Bowl -Bob Dole -Tesla in space -XFL -What Time Is The Super Bowl -Super Bowl Commercials 2018 -Immaculate Conception -Super Bowl 2018 -Government Shutdown Meaning -Winter Olympics -Super Bowl score -Rodney Hood -Virginia Woolf -Super Bowl score -Government shutdown -Lady Doritos -NBA Trades -Grammys 2018 -Call Me by Your Name -Alaska earthquake -Grammys 2018 -Fidel Castro -earthquake -Amy Schumer -Grammys 2018 -Larry Nassar -Pro Bowl 2018 -Chloe Kim -School closings -Shaun White -Wilder Penfield -Patriots -Elizabeth Blackwell -Valentines Day Cards -Adam Rippon -Government Shutdown -Kesha Grammy -Wilder Penfield -Shiffrin -Friends movie -Virginia Woolf -Super Bowl score -Earthquake Today -Florida shooting -Tiger Woods -Elizabeth Blackwell -Carter G. Woodson -Florida shooting -Paula Modersohn-Becker -Ant Man and the Wasp -Winter Olympics -Sting -XFL -Lari White -Elizabeth Blackwell -Super Bowl score -Super Bowl 2018 -Sergei Eisenstein -Grammys 2018 -Paula Modersohn-Becker -Patriots -Jessica Chastain -Florida shooting -Bradie Tennell -Black Panther -Ursula Le Guin -What Time Is The Super Bowl -Super Bowl Commercials 2018 -Snapchat Update -Super Bowl score -Groundhog Day 2018 -Kesha -NBA Trades -Elizabeth Blackwell -Justin Timberlake -Grammys 2018 -Virginia Woolf -Montreal Cognitive Assessment -Sergei Eisenstein -Kylie Jenner -calculator -Super Bowl score -Trump State of the Union -Robby Anderson -Vanity Fair Cover -national signing day 2018 -Gods Plan -Pro Bowl 2018 -Johnny Weir -Trump State of the Union -Bruno Mars -Patriots -Fredo Santana -Isaiah Thomas -XFL -Carter G. Woodson -Elizabeth Blackwell -NBA Trades -Paula Modersohn-Becker -Cloverfield Paradox -Carter G. Woodson -Paula Modersohn-Becker -Winter Olympics -The Resident -Chicago West -Kylie Jenner -Tom Izzo -Larry Nassar -Paula Modersohn-Becker -Florida shooting -Dwyane Wade -Carter G. Woodson -Grammys 2018 -Shaun White -Pink -Justin Timberlake -Black Panther -Shaun White -Grammys 2018 -Larry Nassar -Carter G. Woodson -Wilder Penfield -Red Gerard -Mickey Jones -Ash Wednesday -National Pizza Day -Paula Modersohn-Becker -Florida shooting -Royal Rumble 2018 -Memo -Virginia Woolf -Wilder Penfield -Super Bowl 2018 -Virginia Woolf -Taiwan Earthquake Today -Carter G. Woodson -Kentucky shooting -Super Bowl 2018 -Chinese New Year 2018 -Super Bowl score -Wilder Penfield -Uma Thurman -Hope Hicks -Taiwan Earthquake Today -Natalie Portman -Football Playoffs 2018 -Carter G. Woodson -Isaiah Thomas -Kentucky shooting -Super Bowl score -Kylie Jenner -Memo -Kylie Jenner -Virginia Woolf -SpaceX -Groundhog Day 2018 -Patriots -Robert Wagner -Paula Modersohn-Becker -Virginia Woolf -Larry Nassar -Patriots -State of the Union -Elizabeth Blackwell -Chicago West -Patriots -Paula Modersohn-Becker -Mark Salling -H&r Block -Carter G. Woodson -Cherry Seaborn -Winter Olympics -Royal Rumble 2018 -What Time Is The Super Bowl -School closings -Elizabeth Blackwell -Kim Kardashian -Patriots -Grammys 2018 -Natalie Portman -Florida shooting -Sergei Eisenstein -Portia de Rossi -Paula Modersohn-Becker -What Time Is The Super Bowl -Google docs -Alison Brie -Virginia Woolf -Grammys 2018 -Duke Basketball -Google docs -Chris Long -tsunami -Toys R Us -Winter Olympics -Jennifer Aniston -12 Strong -Jennifer Aniston -Super Bowl Commercials -Otto Warmbier -Mike Tomlin -Paula Modersohn-Becker -XFL -Paula Modersohn-Becker -Super Bowl 2018 -Super Bowl score -Obama portrait -Sergei Eisenstein -United States Postal Service -Elizabeth Blackwell -Kylie Jenner -Chinese New Year 2018 -Gods Plan -Obama portrait -Elizabeth Blackwell -Super Bowl 2018 -Patti LuPone -Rob Porter -calculator -Winter Olympics -Super Bowl score -Natalie Portman -Wilder Penfield -Chrissy Teigen -Trump State of the Union -Cavs -Lil Pump -weather tomorrow -School Closings -Elizabeth Blackwell -Quincy Jones -Paula Modersohn-Becker -Wilder Penfield -Grammys 2018 -Super Bowl score -Florida shooting -Mardi Gras 2018 -Kylie Jenner -Winter Olympics -Patriots -Kawhi Leonard -Vikings Vs Eagles -Dow Jones -This Is Us -Carter G. Woodson -Super Bowl score -Joe Kennedy -Bitcoin Price -SpaceX -Montreal Cognitive Assessment -Chicago West -Alex Smith -Florida shooting -Obama portrait -Vikings Vs Eagles -Wilder Penfield -Oscar Nominations 2018 -The Home Depot -Jennifer Aniston -Den of Thieves -Super Bowl 2018 -Justin Timberlake -SpaceX -What Time Is The Super Bowl -Altered Carbon -Patriots -Sting -Virginia Woolf -Government shutdown 2018 -Winter Olympics -Gods Plan -Real Madrid -Johnny Manziel -Super Bowl score -Larry Nassar -Chloe Kim -Paula Modersohn-Becker -Quentin Tarantino -Paula Modersohn-Becker -Winter Olympics -Super Bowl 2018 -Paula Modersohn-Becker -Government shutdown -Incredibles 2 -Solo Trailer -Reg E Cathey -Larry Nassar -Wilder Penfield -Wilder Penfield -Olympic medal count -Government Shutdown -Google Drive -Florida shooting -Elizabeth Blackwell -State of the Union -What Time Is The Super Bowl -Super Bowl score -Government Shutdown -Virginia Woolf -Winter Olympics -AR-15 -Paula Modersohn-Becker -Kesha -Florida shooting -NBA Trades -Patriots -Elizabeth Blackwell -Joe Kennedy -Cherry Seaborn -Patriots -Justin Timberlake -Royal Rumble 2018 -Super Bowl score -Lunar eclipse -shutdown -Larry Nassar -Government shutdown 2018 -Kentucky shooting -Virginia Woolf -Kylie Jenner Baby Girl -Ar 15 -Den of Thieves -school closings -AFC Championship Game 2018 -Mikaela Shiffrin -Dennis Edwards -Jennifer Aniston -Shibutani -Vikings Vs Eagles -Paula Modersohn-Becker -Kim Kardashian -Omarosa -Grammys 2018 -Obama portrait -Super Bowl score -State of the Union -Paula Modersohn-Becker -Drake -Super Bowl score -School Closings -Government Shutdown -Winter Olympics -Government Shutdown Meaning -Carter G. Woodson -SpaceX -Quincy Jones -Wilder Penfield -Patriots -Shaun White -Super Bowl 2018 -Black Panther -Luke Wilson -Super Bowl score -Deadpool 2 -Black Panther -Dow Jones -Super Bowl 2018 -Super Bowl score -Carter G. Woodson -SAG Awards 2018 -Joe Kennedy -Carter G. Woodson -Florida shooting -Wilder Penfield -Groundhog Day 2018 -Doomsday Clock -Trump State of the Union -Larry Nassar -Steve Mcnair -Elton John -Waco -Elizabeth Blackwell -Patriots -Peter Rabbit -This Is Us -Paula Modersohn-Becker -Carter G. Woodson -What Time Is The Super Bowl -Elizabeth Blackwell -Peter Rabbit -Super Bowl score -Incredibles 2 -government shutdown -Kelly Clark -Sergei Eisenstein -Justin Timberlake -Florida shooting -Kylie Jenner -Andrew Cunanan -Royal Rumble 2018 -Carter G. Woodson -Kentucky shooting -SAG Awards 2018 -Memo -Wilder Penfield -Celebrity Big Brother cast -Phantom Thread -XFL -Virginia Woolf -Carter G. Woodson -Vikings Vs Eagles -Justin Timberlake -Quincy Jones -Joe Kennedy -Montreal Cognitive Assessment -Justin Timberlake -Mark Salling -Elizabeth Blackwell -Josh McDaniels -Super Bowl score -SZA -Google Classroom -Florida shooting -Patriots -Patriots -Carter G. Woodson -Patriots -SpaceX -Carter G. Woodson -Olympic medal count -Florida shooting -Wilder Penfield -Chinese New Year 2018 -Justin Timberlake -Mardi Gras 2018 -Classroom -calculator -Carter G. Woodson -Fredo Santana -Patriots -Super Bowl 2018 -Sting -Virginia Woolf -Carter G. Woodson -Super Bowl score -Wilder Penfield -Groundhog Day 2018 -Winter Olympics -Winter Olympics -Langston Hughes -Justin Timberlake -Wilder Penfield -Dennis Edwards -SpaceX -DeMarcus Cousins -Wilder Penfield -Elizabeth Blackwell -Elizabeth Blackwell -Justin Timberlake -Super Bowl 2018 -Super Bowl score -Shaun White -Government Shutdown -Happy Valentines Day -Patriots -SpaceX -Patriots -SpaceX -Wilder Penfield -Stormi -Virginia Woolf -Groundhog Day 2018 -Mark Salling -Elizabeth Blackwell -Elizabeth Blackwell -Tyler Hilinski -Gianni Versace -Rasual Butler -Sergei Eisenstein -What Time Is The Super Bowl -XFL -Grammys 2018 -Jamie Anderson -New England Patriots owner -Super Bowl 2018 -Harley Barber -Carter G. Woodson -Grammys 2018 -Kentucky shooting -Sergei Eisenstein -Natalie Wood -Real Madrid -Larry Nassar -Paula Modersohn-Becker -Super Bowl 2018 -Carter G. Woodson -Super Bowl score -Vanessa Trump -Larry Nassar -Monster Hunter World -Paula Modersohn-Becker -Kim Kardashian -Sergei Eisenstein -12 Strong -Mardi Gras 2018 -Winter Olympics -Winter Olympics -Super Bowl score -Terrell Owens -Bitcoin Price -Lil Pump -Super Bowl 2018 -Super Bowl score -FC Barcelona -Florida shooting -Aaliyah -Patriots -Andrew Cunanan -Mardi Gras 2018 -Alex Smith -Bitcoin Price -Wilder Penfield -Carter G. Woodson -Sergei Eisenstein -New England Patriots owner -Florida shooting -Groundhog Day 2018 -Carter G. Woodson -Dwyane Wade -Patriots -SpaceX -Rodney Hood -Super Bowl score -Sergei Eisenstein -Kylie Jenner Baby Girl -Chris Fischer -What Time Is The Super Bowl -Meteor -Sergei Eisenstein -Patriots -Super blue blood Moon -Super Bowl score -Jessica Chastain -Paula Modersohn-Becker -Columbine -Black Panther -shutdown -New England Patriots owner -School Closings -Wilder Penfield -Mardi Gras 2018 -Florida shooting -Tara Lipinski -Rodney Hood -Eric Wood -Patriots -Netflix Stock -Super Bowl 2018 -Hope Hicks -Super Bowl 2018 -Patriots -What Time Is The Super Bowl -Grammys 2018 -Mikaela Shiffrin -Patriots -Grammys 2018 -Kirstjen Nielsen -Roger Federer -Justin Timberlake -Dow Jones industrial average -Larry Nassar -Cherry Seaborn -Super Bowl 2018 -Pro Bowl 2018 -Super Bowl 2018 -Mexico Vs Bosnia -Mikaela Shiffrin -Patriots -Winter Olympics -Florida shooting -Korea -Carter G. Woodson -Black Panther -Omarosa -Marlon Brando -Bradie Tennell -Lakers -Larry Nassar -Virginia Woolf -Incredibles 2 -Hillary Clinton -Kylie Jenner Baby Girl -NSA -Elizabeth Blackwell -Elizabeth Blackwell -Wilder Penfield -Mardi Gras 2018 -CNN -Government shutdown -Wilder Penfield -Justin Timberlake -Vikings Vs Eagles -Elizabeth Blackwell -Government Shutdown -Grammys 2018 -Virginia Woolf -Super Bowl 2018 -Winter Olympics -Paula Modersohn-Becker -Kylie Jenner -Rob Gronkowski -Paula Modersohn-Becker -Omarosa -Paula Modersohn-Becker -Sergei Eisenstein -Wilder Penfield -Kesha Grammy -Larry Nassar -Evgenia Medvedeva -Doomsday Clock -Celtics -Virginia Woolf -Carter G. Woodson -Tiger Woods -Virginia Woolf -Alaska earthquake -Winter Olympics -Tyler Hilinski -Yahoo Finance -Tyler Hilinski -Paula Modersohn-Becker -Megan Barry -Bruno Mars -Dow Jones -Maze Runner: The Death Cure -Sergei Eisenstein -Winter Olympics -Florida shooting -Larry Nassar -Real Madrid -Grammys 2018 -Super Bowl score -Elizabeth Blackwell -fake news awards -Sergei Eisenstein -Solo Trailer -Super blue blood Moon -Meteor -calculator -Chinese New Year 2018 -Larry Nassar -Hailee Steinfeld -Super Bowl 2018 -Todd Haley -Larry Nassar -Patriots -John Mahoney -Wilder Penfield -Manchester United -Real Madrid -Cloverfield Paradox -Carter G. Woodson -Adam Rippon -Florida shooting -Champions League -Drive -Government Shutdown -Shaun White -Utah Jazz -John Mahoney -Carter G. Woodson -Amy Schumer -Florida shooting -Duke Basketball -Isaiah Canaan -Wilder Penfield -Obama portrait -Lakers -Wilder Penfield -Carter G. Woodson -Carter G. Woodson -Dow Jones -Dow Jones -Government Shutdown -Joe Kennedy -Carter G. Woodson -happy new year in Chinese -Carter G. Woodson -Classroom -Kylie Jenner -Obama portrait -Mexico Vs Bosnia -Mcdonald's -Rob Gronkowski -Altered Carbon -Patti LuPone -Happy Valentines Day -Wilder Penfield -Larry Nassar -Government Shutdown -Patti LuPone -Florida shooting -SpaceX -Happy Valentines Day -Lil Pump -Paula Modersohn-Becker -Blake Griffin -Wilder Penfield -Government Shutdown -Winter Olympics -Super Bowl 2018 -Wilder Penfield -Paula Modersohn-Becker -UFC 220 -Tonga -SpaceX -Patriots -The Home Depot -Virginia Woolf -Paula Modersohn-Becker -Government shutdown -Real Madrid -Winter Olympics -Patti LuPone -Paula Modersohn-Becker -NBA Trades -Elizabeth Blackwell -Government shutdown 2018 -Chloe Kim -Did the Groundhog See His Shadow -Josh McDaniels -Elizabeth Blackwell -Justin Timberlake -Super Bowl 2018 -Bitcoin Price -Elton John tickets -Cavs -Football Playoffs 2018 -Kentucky shooting -Wilder Penfield -Blake Griffin -Childish Gambino -Chinese New Year 2018 -Highline College -Paula Modersohn-Becker -Kim Kardashian -Virginia Woolf -Elizabeth Blackwell -Super Bowl score -Super Bowl score -Super Bowl 2018 -Government shutdown -Wilder Penfield -Kim Cattrall -Super Bowl score -NBC Sports -Mikaela Shiffrin -Super Bowl 2018 -Marlon Brando -Virginia Woolf -Chloe Kim -Trey Gowdy -Patriots -Dow Jones -Chipper Jones -Sergei Eisenstein -Nathan Chen -Virginia Woolf -Vikings Vs Eagles -Bitcoin Price -Super Bowl 2018 -Oscar Nominations 2018 -Super Bowl 2018 -Super Bowl score -Virginia Woolf -Kylie Jenner -This Is Us -Elton John -Sabrina Dhowre -Virginia Woolf -Elizabeth Blackwell -Larry Nassar -Larry Nassar -Paula Modersohn-Becker -School closings -Winter Olympics -Julie Ertz -Virginia Woolf -Wilder Penfield -Sergei Eisenstein -Paula Modersohn-Becker -Todd Haley -Kylie Jenner -Eli Manning -Elizabeth Blackwell -Nadal -Portia de Rossi -Super Bowl score -Paula Modersohn-Becker -Mueller -Wilder Penfield -Dow Jones industrial average -Virginia Woolf -Vikings vs Eagles -Government Shutdown -Yahoo Finance -James Harden -Kylie Jenner -Paula Modersohn-Becker -Dow Jones -Patriots -Sergei Eisenstein -What Time Is The Super Bowl -Kylie Jenner -Fredo Santana -Shaun White -Carter G. Woodson -CNN -Patriots -Chinese New Year 2018 -Did the Groundhog See His Shadow -Olympic Medal Count -Super Bowl Commercials 2018 -Kylie Jenner Baby Girl -Chinese New Year 2018 -Grammys 2018 -Paula Modersohn-Becker -Valentines Day -Super Bowl 2018 -Rachel Brand -Florida shooting -Kylie Jenner -Elizabeth Blackwell -Super Bowl score -Memo -Winter Olympics -school closings -Dwyane Wade -SAG Awards 2018 -Patriots -Malcom Butler -Government Shutdown 2018 -Jamie Dornan -What Time Is The Super Bowl -Sergei Eisenstein -Rob Porter -Alaska earthquake -Grammys 2018 -UFC 220 -Kylie Jenner -12 Strong -Sergei Eisenstein -Florida shooting -Wilder Penfield -Virginia Woolf -Patriots -Rampage -Paula Modersohn-Becker -Virginia Woolf -Larry Nassar -Elizabeth Blackwell -NBC Sports -Solo Trailer -SpaceX -Patriots -Virginia Woolf -Super Bowl score -Caroline Wozniacki -Taiwan -Super Bowl 2018 -Paula Modersohn-Becker -New California -Sergei Eisenstein -Carter G. Woodson -Patriots -Amy Schumer -Super Bowl 2018 -National Pizza Day -Wilder Penfield -Carter G. Woodson -Apple stock -Tessa Virtue -Blake Griffin -Solo Trailer -Wilder Penfield -Florida shooting -Justin Timberlake -Kentucky shooting -Patriots -Winchester -Winter Olympics -Sergei Eisenstein -Eli Manning -Super Bowl score -Paula Modersohn-Becker -Florida shooting -State of the Union -Steve Wynn -Alaska earthquake -Mark Salling -What Time Is The Super Bowl -Rasual Butler -Shaun White -Kylie Jenner -Super Bowl 2018 -Justin Timberlake -Solo Trailer -Super Bowl score -Virginia Woolf -Super blue blood Moon -Shaun White -SpaceX -Carter G. Woodson -Government shutdown 2018 -Google Drive -Valentines Day Images -Fifty Shades Freed -Blake Griffin -Super Bowl score -Carter G. Woodson -Government Shutdown -Andrew Cunanan -Super Bowl 2018 -Steve Mcnair -Winter Olympics -Sergei Eisenstein -slides -Paula Modersohn-Becker -Elizabeth Blackwell -Red Gerard -school closings -Omarosa -Larry Nassar -Paula Modersohn-Becker -Patriots -Google docs -Kodak Black -Kylie Jenner -Super Bowl 2018 -Cloverfield Paradox -Virginia Woolf -Winter Olympics -Sergei Eisenstein -Childish Gambino -Justin Timberlake -Laura Ingraham -Florida shooting -Oar Olympics -Vikings Vs Eagles -Justin Timberlake -Super Bowl score -What Time Is The Super Bowl -calculator -Jamie Anderson -Winter Olympics -Senior Bowl -Patriots -Woody Allen -Elizabeth Blackwell -Solo Trailer -Vikings Vs Eagles -school closings -What Time Is The Super Bowl -Cloverfield Paradox -Amy Schumer -Winter Olympics -Carter G. Woodson -Josh McDaniels -Chicago West -Larry Nassar -Florida shooting -Celtics -Paula Modersohn-Becker -Yu Darvish -Elton John -Sergei Eisenstein -Elon Musk -CNN -Google Drive -stock market -Florida shooting -Elizabeth Blackwell -What Time Is The Super Bowl -Isaiah Thomas -Tyler Hilinski -Shaun White -Google docs -Paula Modersohn-Becker -Oscar Nominations 2018 -What Time Is The Super Bowl -SpaceX -Winter Olympics -SpaceX -Tom Brady daughter -Paula Modersohn-Becker -Elizabeth Blackwell -What Time Is The Super Bowl -Paula Modersohn-Becker -Cavs -Sergei Eisenstein -Shibutani -Wilder Penfield -Obama portrait -New England Patriots owner -Paula Modersohn-Becker -Google docs -State of the Union -Super Bowl score -State of the Union -Patriots -Paula Modersohn-Becker -XFL -Did the Groundhog See His Shadow -NBA Trades -Fredo Santana -Chris Mazdzer -Wilder Penfield -Blake Griffin -National Pizza Day -Patti LuPone -Elizabeth Blackwell -Edible Arrangements -Paula Modersohn-Becker -Hillary Clinton -Super Bowl score -Elizabeth Blackwell -Tesla in space -Meteor -Patriots -Phantom Thread -Kim Kardashian -Alessia Cara -Dwyane Wade -Virginia Woolf -Uma Thurman -Super Bowl score -New England Patriots owner -Larry Nassar -Larry Nassar -Obama portrait -Royal Rumble 2018 -Kylie Jenner -Patriots -Virginia Woolf -Snapchat Update -Mark Salling -Google Classroom -Wilder Penfield -Virginia Woolf -Chinese New Year 2018 -Super Bowl 2018 -MS13 -Happy Valentines Day -What Time Is The Super Bowl -Super Bowl 2018 -Winter Olympics -State of the Union -Trump State of the Union -Oscar Nominations 2018 -Elizabeth Blackwell -Florida shooting -Florida shooting -Patriots -Trump State of the Union -Government Shutdown -Patti LuPone -Groundhog Day 2018 -Elizabeth Blackwell -Government Shutdown -Elizabeth Blackwell -Andrew Cunanan -CNN -James Baldwin -Virginia Woolf -Virginia Woolf -Patriots -Kris Dunn -Obama portrait -Virginia Woolf -Vikings vs Eagles -Jessica Chastain -Carter G. Woodson -Pro Bowl 2018 -Larry Nassar -Chicago West -Patriots -Sergei Eisenstein -Alessia Cara -CNN -Winter Olympics -What Time Is The Super Bowl -Farmers Insurance Open 2018 -Happy Valentines Day -Justin Timberlake -Shaun White -Grammys 2018 -All Star Weekend 2018 -State of the Union -Black Panther -Paula Modersohn-Becker -Alex Smith -Groundhog Day 2018 -Google Drive -Duke basketball -XFL -Andrew Cunanan -Paula Modersohn-Becker -Wilder Penfield -Josh McDaniels -Immaculate Conception -Chris Paul -Ash Wednesday -Patriots -SpaceX -Champions League -Larry Nassar -Solo Trailer -Sergei Eisenstein -Virginia Woolf -Elizabeth Blackwell -Cedi Osman -Super blue blood Moon -Meteor -earthquake today -Alessia Cara -Obama portrait -Wilder Penfield -Florida shooting -Fifty Shades Freed -This Is Us -Call Me by Your Name -New England Patriots owner -National Pizza Day -Super Bowl score -Super Bowl 2018 -Carter G. Woodson -The 15:17 to Paris -Dow Jones -Logan Paul -Government Shutdown -Patti LuPone -Virginia Woolf -Dow Jones -XFL -Olympic medal count -Adam Rippon -Lil Pump -Super Bowl 2018 -Kylie Jenner Baby Girl -Bellator 192 -Joe Kennedy -Kelly Clark -Winter Olympics -Alex Smith -Super blue blood Moon -Betty White -Jennifer Aniston -Wilder Penfield -Red Gerard -Shaun White -Paula Modersohn-Becker -Chloe Kim -Winter Olympics -Wilder Penfield -Florida shooting -Virginia Woolf -Black Panther -Sergei Eisenstein -State of the Union -Elizabeth Blackwell -Get Out -Patriots -Government Shutdown Meaning -Patti LuPone -United States Of America Winter Olympics -Valentines Day -Florida shooting -Patti LuPone -Virginia Woolf -Mikaela Shiffrin -Lady Doritos -Chicago West -Eli Manning -Virginia Woolf -Paula Modersohn-Becker -Jennifer Aniston -Kylie Jenner -Government Shutdown Meaning -State of the Union -Super Bowl score -Google docs -Justin Timberlake -Patriots -Vikings Vs Eagles -Government Shutdown -Carrie Underwood -Ann Curry -Carter G. Woodson -SAG Awards 2018 -Waco -Super Bowl score -Elizabeth Blackwell -Kim Kardashian -Caroline Wozniacki -Sabrina Dhowre -Yuzuru Hanyu -Grammys 2018 -Florida shooting -Winter Olympics -Dow Jones -Paula Modersohn-Becker -Shaun White -Super Bowl 2018 -Elizabeth Blackwell -Jennifer Aniston -Winter Olympics -Oscar Nominations 2018 -Aliona Savchenko -Adam Rippon -Did the Groundhog See His Shadow -Esteban Loaiza -What Time Is The Super Bowl -Larry Nassar -Super Bowl score -Andre Roberson -Super blue blood Moon -Super Bowl score -Sergei Eisenstein -Super Bowl 2018 -SpaceX -Winter Olympics -Oscar Nominations 2018 -Samson -Carter G. Woodson -Florida shooting -Shaun White -SAG Awards 2018 -Red Gerard -Justin Timberlake -Super Bowl score -New England Patriots owner -Wilder Penfield -Matt Patricia -Dow Jones -Wilder Penfield -Paula Modersohn-Becker -Carter G. Woodson -Shani Davis -Chinese New Year 2018 -Hope Hicks -Mark Salling -Super Bowl score -Elizabeth Blackwell -Paula Modersohn-Becker -Carter G. Woodson -Call Me by Your Name -Football Playoffs 2018 -Grammys 2018 -Dow Jones -The Home Depot -Kylie Jenner -NBA Trades -Kylie Jenner -Juventus -Carter G. Woodson -Kylie Jenner Baby Girl -Super Bowl 2018 -Elizabeth Blackwell -Mardi Gras 2018 -Jason Kidd -Costco Wholesale -Lunar eclipse -Patriots -Carter G. Woodson -Patriots -Warren Miller -Super Bowl 2018 -Cavs -Paula Modersohn-Becker -Vikings Vs Eagles -NBA Trades -Chinese New Year 2018 -Royal Rumble 2018 -Super Bowl 2018 -Government Shutdown -What Time Is The Super Bowl -Carter G. Woodson -Super Bowl 2018 -Justin Timberlake -State of the Union -Wilder Penfield -Virginia Woolf -What Time Is The Super Bowl -Elizabeth Blackwell -Sergei Eisenstein -Elizabeth Blackwell -Government Shutdown -Winter Olympics -Winter Olympics -Red Gerard -Russell Wilson -Elizabeth Blackwell -Alison Brie -NBA Trades -Government Shutdown 2018 -Vikings Vs Eagles -Alaska earthquake -Solo Trailer -Grammys 2018 -Super Bowl score -Rampage -Sergei Eisenstein -Paula Modersohn-Becker -Cavs -LeBron James -Grammys 2018 -Sergei Eisenstein -Super Bowl score -Peter Rabbit -Celebrity Big Brother cast -Super blue blood Moon -school closings -Super Bowl 2018 -Paula Modersohn-Becker -Florida shooting -Florida shooting -What Time Is The Super Bowl -Mcdonald's -Valentines Day Images -Super Bowl score -Elizabeth Blackwell -Super blue blood Moon -Trump State of the Union -Wilder Penfield -Patriots -Government Shutdown -Super Bowl score -Hope Hicks -national signing day 2018 -Blake Griffin -SpaceX -Josh McDaniels -Carter G. Woodson -Kesha Grammy -Tomi Lahren -Justin Timberlake -Valentines Day -UFC 220 -Black Panther -Vikings Vs Eagles -12 Strong -Blake Griffin -Super Bowl score -Johnny Weir -Paula Modersohn-Becker -Winter Olympics -Government Shutdown 2018 -Super Bowl score -Tom Brady -Kylie Jenner -NBA Trades -Super Bowl 2018 -Red Gerard -Elizabeth Blackwell -Emily Sweeney -Government Shutdown -Culture 2 -Edwin Jackson -Kim Cattrall -Mary And The Witch's Flower -Winter Olympics -Super Bowl 2018 -Government shutdown -Megan Barry -Emily Sweeney -Cherry Seaborn -Chris Fischer -Trey Gowdy -Super blue blood Moon -Megan Barry -Carter G. Woodson -Hope Hicks -This Is Us -Mattie Larson -XFL -Virginia Woolf -James Maslow -Vikings vs Eagles -Bellator 192 -Carter G. Woodson -Sergei Eisenstein -Paula Modersohn-Becker -Cavs -Government Shutdown -Justin Timberlake -Virginia Woolf -Paula Modersohn-Becker -What Time Is The Super Bowl -Sergei Eisenstein -Paula Modersohn-Becker -Florida shooting -AR-15 -Virginia Woolf -Valentines Day Images -Sergei Eisenstein -AFC Championship Game 2018 -Winter Olympics -CNN -State of the Union -Winter Olympics -This Is Us -Kylie Jenner -Cloverfield Paradox -Florida shooting -Westminster Dog Show 2018 -Elon Musk -Oscar Nominations 2018 -Winter Olympics -Super Bowl score -NSA -Sergei Eisenstein -Paula Modersohn-Becker -Dane Cook -Sergei Eisenstein -Wilder Penfield -Super Bowl 2018 -Wilder Penfield -Winter Olympics -Did the Groundhog See His Shadow -Memo -Wilder Penfield -Prince William -Kodak Black -Den of Thieves -Virginia Woolf -Elizabeth Blackwell -Russell Wilson -Grammys 2018 -Patriots -Trump State of the Union -New England Patriots owner -Patriots -Tony Romo -Cbs -Peter Rabbit -12 Strong -Sergei Eisenstein -Super Bowl score -Florida shooting -Dow Jones -Kylie Jenner -Yura Min -Jon Huntsman -Google Classroom -Carter G. Woodson -Grammys 2018 -Mark Salling -Justin Timberlake -Alex Smith -Jen Selter -Edible Arrangements -Mardi Gras 2018 -Johnny Weir -calculator -Red Gerard -Monster Hunter World -Luke Wilson -Kim Kardashian -Altered Carbon -Dow Jones -Grammys 2018 -Larry Nassar -Bob Dole -Sergei Eisenstein -Wilder Penfield -Winter Olympics -Super blue blood Moon -Patriots -Government Shutdown -Patriots -Sergei Eisenstein -Carter G. Woodson -Carter G. Woodson -Justin Timberlake -Shaun White -Sergei Eisenstein -Groundhog Day 2018 -Bitcoin Price -Winter Olympics -Virginia Woolf -Josh McDaniels -OKC Thunder -Fifty Shades Freed -Celtics -New England Patriots owner -Sergei Eisenstein -Florida shooting -Florida shooting -Sabrina Dhowre -Bob Dole -Patriots -Johnny Weir -Groundhog Day 2018 -Larry Nassar -Paula Modersohn-Becker -Super Bowl score -Patriots -Carter G. Woodson -Caroline Wozniacki -Groundhog Day 2018 -Chinese New Year 2018 -Paula Modersohn-Becker -Winter Olympics -Chris Paul -Tonga -Super Bowl 2018 -Government Shutdown -Sergei Eisenstein -Sting -Super Bowl score -Chloe Kim -Robert Wagner -Super Bowl 2018 -Virginia Woolf -Virginia Woolf -Paula Modersohn-Becker -Winter Olympics -Super Bowl score -Virginia Woolf -Dow Jones -Alaska earthquake -Sergei Eisenstein -Virginia Woolf -Winter Olympics -Winter Olympics -Peter Rabbit -Carter G. Woodson -Earthquake -Carter G. Woodson -Dane Cook -Sea of Thieves -Carter G. Woodson -Winter Olympics -Blue Ivy -Vikings Vs Eagles -XFL -Paula Modersohn-Becker -Super Bowl 2018 -Bitcoin Price -This is Us -Chloe Kim -Winter Olympics -Esteban Loaiza -What Time Is The Super Bowl -Happy Valentines Day -Florida shooting -United States Of America Winter Olympics -Justin Timberlake -Super Bowl 2018 -CNN -Cbs -Peter Rabbit -Forever My Girl -Elizabeth Blackwell -Kylie Jenner -SpaceX -Russell Wilson -Black Panther -Waco -Carter G. Woodson -What Time Is The Super Bowl -Robert Wagner -Winter Olympics -Blood Moon -Super blue blood Moon -Winter Olympics -Patriots -Elizabeth Blackwell -Kylie Jenner -Justin Timberlake -Florida shooting -Chris Mazdzer -Virginia Woolf -Sergei Eisenstein -SpaceX -Super Bowl 2018 -Paula Modersohn-Becker -Super Bowl 2018 -Cavs -Sergei Eisenstein -Pro Bowl 2018 -Peter Rabbit -Adam Rippon -Winter Olympics -Winchester -Sergei Eisenstein -Purdue basketball -Stormi -Paula Modersohn-Becker -SpaceX -Wilder Penfield -Vanessa Trump -Patriots -Cavs -Oscar Nominations 2018 -Kim Kardashian -Cavs -Super blue blood Moon -Super Bowl Commercials 2018 -Solo Trailer -Paula Modersohn-Becker -Winter Olympics -What Time Is The Super Bowl -Natalie Portman -Sergei Eisenstein -Super Bowl 2018 halftime show -Wilder Penfield -Elizabeth Blackwell -SpaceX -Mark Salling -Olympic medal count -Super Blue Blood Moon -Kitty Kat West -Dane Cook -Lady Doritos -SAG Awards 2018 -Virginia Woolf -Government Shutdown -Justin Timberlake -Olympics 2018 -Cloverfield Paradox -Quincy Jones -Florida shooting -Justin Timberlake -Elizabeth Blackwell -Super Bowl 2018 -Carter G. Woodson -Rob Gronkowski -What Time Is The Super Bowl -Google Classroom -Justin Timberlake -Robert Wagner -Jessica Biel -Waco -Otto Warmbier -Russell Wilson -What Time Is The Super Bowl -Jeremy London -Pro Bowl 2018 -Uma Thurman -Black Panther -Wilder Penfield -Paula Modersohn-Becker -Snapchat Update -What Time Is The Super Bowl -Virginia Woolf -What Time Is The Super Bowl -Paula Modersohn-Becker -Royal Rumble 2018 -State of the Union -Dwyane Wade -Elizabeth Blackwell -Eli Manning -Sergei Eisenstein -Gods Plan -weather tomorrow -Houston Rockets -Patriots -Virginia Woolf -Den of Thieves -Neil Diamond -Isaiah Thomas -Patriots -Terrell Owens -Florida shooting -Super Bowl 2018 -Solo Trailer -Government Shutdown Meaning -Carter G. Woodson -Adam Rippon -XFL -Yu Darvish -Kylie Jenner -Carter G. Woodson -Government Shutdown -UFC 220 -Lindsey Vonn -Chicago West -Jennifer Aniston -SAG Awards 2018 -Virginia Woolf -Robert Wagner -SpaceX -Scott Baio -Adam Rippon -Bitcoin Price -Winter Olympics -Trump State of the Union -Elizabeth Blackwell -Winter Olympics -Super Bowl 2018 halftime show -Dwyane Wade -Reg E Cathey -Blake Griffin -Rasual Butler -Super Bowl score -Jessica Chastain -Patriots -Kylie Jenner -Patriots -What Time Is The Super Bowl -Carter G. Woodson -Sergei Eisenstein -Sergei Eisenstein -Patriots -Virginia Woolf -Dow Jones -Sergei Eisenstein -Virginia Woolf -Vikings Vs Eagles -Dow Jones -Google Drive -Super Bowl score -Sting -Grammys 2018 -Alaska earthquake -National Pizza Day -Kylie Jenner -Justin Timberlake -The 15:17 to Paris -Andrew McCabe -Virginia Woolf -Patriots -Adam Hicks -Justin Timberlake -Super Bowl score -earthquake -Amy Schumer -Chipper Jones -Mark Salling -Wilder Penfield -Government shutdown 2018 -Paula Modersohn-Becker -Mark Salling -Wilder Penfield -Patriots -Ursula Le Guin -Paula Modersohn-Becker -fake news awards -Solo Trailer -Caroline Wozniacki -Real Madrid -Dwyane Wade -Virginia Woolf -Sergei Eisenstein -Josh McDaniels -Elizabeth Blackwell -Earthquake -This Is Us -H&r Block -Olivia Culpo -Kentucky shooting -Blake Griffin -Elizabeth Blackwell -Paula Modersohn-Becker -Patriots -Kylie Jenner -Vikings Vs Eagles -Cory Booker -Snapchat Update -SAG Awards 2018 -Carter G. Woodson -Sal Castro Middle School -What Time Is The Super Bowl -Chinese New Year 2018 -Phantom Thread -Isaiah Canaan -Obama portrait -Winter Olympics -Larry Nassar -Virginia Woolf -NSA -Jenna Morasca -Florida shooting -Government shutdown 2018 -Megan Barry -SpaceX -Paula Modersohn-Becker -Steve Wynn -Carter G. Woodson -Jen Selter -Elizabeth Blackwell -Friends movie -Kylie Jenner -Black Panther -Paula Modersohn-Becker -Florida shooting -Grey's Anatomy -Valentines Day -Sergei Eisenstein -Virginia Woolf -Paula Modersohn-Becker -Mark Salling -Wilder Penfield -Lil Pump -Natalie Wood -Paula Modersohn-Becker -Super Bowl 2018 -Carter G. Woodson -Solo Trailer -Real Madrid -Fredo Santana -Wilder Penfield -Ann Curry -government shutdown -Trump State of the Union -Grammys 2018 -Kylie Jenner -Super Bowl 2018 -Winter Olympics -Frederick Douglass -Real Madrid -Red Gerard -Adam Rippon -Patriots -This is Us -Chrissy Teigen -Amtrak -What Time Is The Super Bowl -Winter Olympics -Carter G. Woodson -Wilder Penfield -Happy Valentines Day -Robinhood -Super Bowl score -Government Shutdown -Florida shooting -Sergei Eisenstein -Black Panther -School closings -Paula Modersohn-Becker -What Time Is The Super Bowl -SpaceX -Joe Kennedy -SpaceX -Memo -Wilder Penfield -Florida shooting -State of the Union -Isaiah Thomas -Florida shooting -Alex Reimer -Chicago Weather -Disneyland tickets -Wilder Penfield -Virginia Woolf -Childish Gambino -Chris Fischer -calculator -Peter Rabbit -Patriots -Paula Modersohn-Becker -Hope Hicks -Memo -Carter G. Woodson -Government Shutdown -Andrew Cunanan -SpaceX -NBA Trades -Carter G. Woodson -Valentines Day -Super Bowl score -Sergei Eisenstein -Elizabeth Blackwell -Elizabeth Blackwell -Chinese New Year 2018 -FC Barcelona -Childish Gambino -Champions League -The Alienist -What Time Is The Super Bowl -Happy Valentines Day -Carter G. Woodson -Virginia Woolf -Sergei Eisenstein -Bitcoin Price -LeBron James -Patriots -Dow Jones -Kylie Jenner -SpaceX -Florida shooting -Paula Modersohn-Becker -Florida shooting -Paula Modersohn-Becker -Paula Modersohn-Becker -Presidents Day 2018 -Edwin Jackson -Black Panther -Wilder Penfield -Government shutdown 2018 -Government shutdown -Mark Salling -Vikings vs Eagles -Patriots -Puppy Bowl 2018 -Super Bowl 2018 -Paula Modersohn-Becker -calculator -Eli Manning -Winter Olympics -Johnny Weir -Wilder Penfield -Grammys 2018 -Patriots -Dow Jones -Virginia Woolf -Florida shooting -Sting -Jo Jo White -Sea Of Thieves -Josh Allen -SpaceX -United States Of America Winter Olympics -Kesha Grammy -Paula Modersohn-Becker -Sergei Eisenstein -Natalie Portman -Carter G. Woodson -NBA Trades -Paula Modersohn-Becker -Patti LuPone -Jason Kelce -Elton John -Patriots -Dwyane Wade -Red Gerard -Super Bowl 2018 -Rodney Hood -Lena Zawaideh -Winter Olympics -Paula Modersohn-Becker -Drake -Dow Jones -Brie Larson -Winter Olympics -Carter G. Woodson -Google docs -Wilder Penfield -Russell Wilson -Andrew Cunanan -Wilder Penfield -Patriots -Childish Gambino -Google Drive -Sergei Eisenstein -Toys R Us -Childish Gambino -Alaska earthquake -Memo -Hailee Steinfeld -Patriots -Florida shooting -Winter Olympics -Bitcoin Price -Logan Paul -Grammys 2018 -Virginia Woolf -Elizabeth Blackwell -Mardi Gras 2018 -Kate Upton -Winter Olympics -Shaun White -Cherry Seaborn -Carter G. Woodson -Chinese New Year 2018 -Elizabeth Blackwell -12 Strong -Jason Kidd -Outback Steakhouse -Virginia Woolf -XFL -Elizabeth Blackwell -Kylie Jenner -Larry Nassar -Sergei Eisenstein -Deadpool 2 -Sal Castro Middle School -Virginia Woolf -Winter Olympics -Samson -Obama portrait -Super Bowl 2018 -Luke Wilson -Dow Jones -Government Shutdown -What Time Is The Super Bowl -Harley Barber -Devin Nunes -Kim Kardashian -Kim Cattrall -Friends The Movie 2018 -Florida shooting -Super Bowl 2018 -Danielle Herrington -SpaceX -Lunar eclipse -Paula Modersohn-Becker -Ursula Le Guin -Patriots -Lunar eclipse -Elizabeth Blackwell -Paula Modersohn-Becker -CNN -calculator -Elizabeth Blackwell -Cnbc -Virginia Woolf -Earthquake Today -Mike Vrabel -Paula Modersohn-Becker -Florida shooting -Monster Hunter World -Tom Petty -Government shutdown -Carter G. Woodson -Winter Olympics -Hillary Clinton -Virginia Woolf -Matt Czuchry -Mark Salling -Kylie Jenner -Grammys 2018 -Alaska earthquake -Shaun White -Mueller -Ash Wednesday -Black Panther -Senior Bowl -What Time Is The Super Bowl -Google docs -Elizabeth Blackwell -Super Bowl score -Olive Garden -SpaceX -Blue Moon -Olympic Medal Count -Grammys 2018 -Elizabeth Blackwell -Winter Olympics -Dow Jones -SpaceX -Johnny Weir -School Closings -Jennifer Aniston -Virginia Woolf -Carter G. Woodson -Justin Timberlake -Olympic medal count -Wilder Penfield -Super Bowl 2018 -LeBron James -Kylie Jenner -Black Panther -John Mahoney -Kylie Jenner -Patriots -Super Bowl score -Andrew Cunanan -Paula Modersohn-Becker -Bellator 192 -Grammys 2018 -Lindsey Vonn -State of the Union -Florida shooting -Fredo Santana -Elizabeth Blackwell -XFL -Justin Timberlake -Jennifer Aniston -Super Bowl 2018 -Lunar eclipse -Grammys 2018 -Super Bowl score -Google Classroom -Google Classroom -Patriots -SpaceX -Virginia Woolf -NBA Trades -Hostiles -Super Bowl Commercials 2018 -Patriots -Virginia Woolf -Pro Bowl 2018 -Government Shutdown Meaning -Winter Olympics -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl score -Groundhog Day 2018 -Wilder Penfield -Sergei Eisenstein -What Time Is The Super Bowl -Government Shutdown 2018 -Virginia Woolf -Carter G. Woodson -Super Bowl score -Real Madrid -Terrell Owens -Puppy Bowl 2018 -Florida shooting -Paula Modersohn-Becker -earthquake -Super Bowl score -Justin Timberlake -Groundhog Day 2018 -Sarah Barthel -Ash Wednesday -Patriots -Samson -Elizabeth Blackwell -Melania Trump -Virginia Woolf -Florida shooting -SpaceX -Sergei Eisenstein -Kodak Black -Shaun White -Montreal Cognitive Assessment -Mavic Air -Paula Modersohn-Becker -Government Shutdown -Paula Modersohn-Becker -Kylie Jenner Baby Girl -Elton John -Wilder Penfield -Royal Rumble 2018 -Winter Olympics -Carter G. Woodson -Mark Salling -Super Bowl 2018 -Dow Jones -Patriots -Wilder Penfield -Patriots -Winter Olympics -Paula Modersohn-Becker -Lee Miglin -Valentines Day Images -Winter Olympics -Florida shooting -Hillary Clinton -Kesha Grammy -Kentucky shooting -Justin Timberlake -Phantom Thread -Gus Kenworthy -Sergei Eisenstein -Cloverfield Paradox -Elizabeth Blackwell -Shaun White -Mardi Gras 2018 -Oscar Nominations 2018 -Andrew Cunanan -Dwyane Wade -Winter Olympics -Happy Valentines Day -Kylie Jenner -Ash Wednesday -Sergei Eisenstein -Royal Rumble 2018 -Pro Bowl 2018 -Kim Kardashian -Super Bowl 2018 -Winter Olympics -Winter Olympics -This Is Us -Chrissy Teigen -Grammys 2018 -Grammys 2018 -Lauren Davis -Valentines Day -Carter G. Woodson -Florida shooting -Carter G. Woodson -Virginia Woolf -Amy Schumer -Patti LuPone -New England Patriots owner -Super Bowl Winners -Dow Jones industrial average -Fredo Santana -Obama portrait -Mark Salling -Winter Olympics -Patriots -Wilder Penfield -Sergei Eisenstein -Larry Nassar -Obama portrait -SpaceX -Super blue blood Moon -Justin Timberlake -Blake Griffin -Mardi Gras 2018 -Virginia Woolf -Lonzo Ball -Patriots -Super Bowl score -Super Bowl score -Paula Modersohn-Becker -Yahoo Finance -Carter G. Woodson -Pro Bowl 2018 -Government Shutdown Meaning -Eli Manning -Super Bowl score -Patriots -Happy Valentines Day -Terry Bradshaw -Happy Valentines Day -Florida shooting -Natalie Portman -Blue Moon -Hope Hicks -Wilder Penfield -Paul Ryan -Dennis Edwards -Government Shutdown -Obama portrait -Super Bowl 2018 -Chinese New Year 2018 -Obama portrait -Super Bowl score -Black Panther -Government Shutdown -Carter G. Woodson -Elizabeth Blackwell -Sergei Eisenstein -Tessa Virtue -Government shutdown -Elizabeth Blackwell -Super Bowl score -What Time Is The Super Bowl -National Pizza Day -Super blue blood Moon -Caitlin McHugh -Winter Olympics -Paula Modersohn-Becker -Virginia Woolf -Wilder Penfield -Real Madrid -Patriots -Super Bowl 2018 -Patriots -Winter Olympics -Government shutdown 2018 -Winter Olympics -This is Us -Laura Ingraham -Kevin Love -Elizabeth Blackwell -Florida shooting -Virginia Woolf -Dow Jones -Marlon Brando -Super Bowl score -Government Shutdown Meaning -Paula Modersohn-Becker -Super Bowl score -Paula Modersohn-Becker -Elton John -National Pizza Day -Government Shutdown -Evgenia Medvedeva -Hillary Clinton -Patriots -Sergei Eisenstein -Elizabeth Blackwell -Super Bowl 2018 -weather tomorrow -Yu Darvish -Paula Modersohn-Becker -Frank Reich -Paula Modersohn-Becker -Justin Timberlake -Blake Griffin -MS13 -Dow Jones -Jason Kelce -shutdown -Montreal Cognitive Assessment -School Closings -Adam Rippon -Oscar Nominations 2018 -Markelle Fultz -Paula Modersohn-Becker -SpaceX -The Alienist -BitConnect -Government Shutdown Meaning -Memo -Kesha -Patriots -Carter G. Woodson -Larry Nassar -Vikings Vs Eagles -Carter G. Woodson -Paula Modersohn-Becker -Larry Nassar -Super Bowl score -Wilder Penfield -Childish Gambino -Solo Trailer -Winter Olympics -Joe Kennedy -Doomsday Clock -Virginia Woolf -Justin Timberlake -Memo -Earthquake Today -Elizabeth Blackwell -Peter Rabbit -Dwyane Wade -Grammys 2018 -Carter G. Woodson -Fifty Shades Freed -Earthquake Today -NBA Trades -Otto Warmbier -Red Gerard -Government shutdown 2018 -School Closings -Justin Timberlake -John Mahoney -Lunar eclipse -Winter Olympics -Puppy Bowl 2018 -Wilder Penfield -Carter G. Woodson -Super Bowl 2018 -Government shutdown -Kim Kardashian -Larry Nassar -Super Bowl score -Emily Sweeney -Fifty Shades Freed -Wilder Penfield -Chinese New Year 2018 -Justin Timberlake -Gianni Versace -Wilder Penfield -Super Bowl 2018 -Phantom Thread -What Time Is The Super Bowl -Paula Modersohn-Becker -Tammy Duckworth -Elizabeth Blackwell -Alex Smith -Carter G. Woodson -Winter Olympics -Patti LuPone -Paula Modersohn-Becker -Vikings Vs Eagles -All Star Weekend 2018 -Dwyane Wade -Chris Stapleton -Winter Olympics -Florida shooting -Sergei Eisenstein -Virginia Woolf -Edwin Jackson -Edible Arrangements -Matt Patricia -Presidents Day 2018 -Scott Baio -Kesha Grammy -Super Bowl score -Den of Thieves -Virginia Woolf -Fredo Santana -Elizabeth Blackwell -Lonzo Ball -Wilder Penfield -National Pizza Day -calculator -Adam Rippon -Winter Olympics -Virginia Woolf -Wilder Penfield -Virginia Woolf -Dow Jones -Rose McGowan -Paula Modersohn-Becker -Government Shutdown -Sergei Eisenstein -Elizabeth Blackwell -Fifty Shades Freed -SpaceX -Government Shutdown -Florida shooting -Virginia Woolf -Kylie Jenner -Florida shooting -Super Bowl 2018 -Super Bowl 2018 -Memo -What Time Is The Super Bowl -luge -Farmers Insurance Open 2018 -Virginia Woolf -This Is Us -Dow Jones -Winter Olympics -Florida shooting -Patriots -Carter G. Woodson -Alaska earthquake -Jessica Chastain -Zion Williamson -Wilder Penfield -Happy Valentines Day -Government shutdown 2018 -SpaceX -Wilder Penfield -Carter G. Woodson -SAG Awards 2018 -Carter G. Woodson -Paula Modersohn-Becker -Wonder Woman -Valentines Day -Carter G. Woodson -Justin Timberlake -Wilder Penfield -Jamie Anderson -Sergei Eisenstein -Virginia Woolf -Elizabeth Blackwell -Winter Olympics -Trump State of the Union -Wilder Penfield -Mark Salling -Alex Reimer -Chrissy Teigen -Football Playoffs 2018 -Shaun White -National Pizza Day -Patriots -What Time Is The Super Bowl -Scott Baio -Sergei Eisenstein -Winter Olympics -Sergei Eisenstein -SpaceX -Carter G. Woodson -Super Bowl score -Super Bowl Winners -Kesha Grammy -Naya Rivera -Blake Griffin -Super Bowl score -Alessia Cara -Westminster Dog Show 2018 -Rachel Brand -Larry Nassar -Paula Modersohn-Becker -UFC 221 -Larry Nassar -Kristaps Porzingis -Paula Modersohn-Becker -Paula Modersohn-Becker -Elizabeth Blackwell -Yahoo Finance -Florida shooting -What Time Is The Super Bowl -State of the Union -Super Bowl score -Paula Modersohn-Becker -Carl Higbie -Carrie Underwood -Virginia Woolf -Grammys 2018 -Paula Modersohn-Becker -Larry Nassar -Ash Wednesday -Florida shooting -Paula Modersohn-Becker -Camila Cabello -Virginia Woolf -Valentines Day Cards -Vikings Vs Eagles -Trump State of the Union -Patriots -Uma Thurman -Drake -Wilder Penfield -NSA -New England Patriots owner -What Time Is The Super Bowl -Virginia Woolf -Elizabeth Blackwell -Google docs -Virginia Woolf -Jason Kidd -Florida shooting -Winter Olympics -Winter Olympics -SpaceX -Sammy Sosa -Virginia Woolf -Paula Modersohn-Becker -Government Shutdown -Happy Valentines Day -Shaun White -Rose McGowan -Larry Nassar -Grammys 2018 -Elizabeth Blackwell -Super Bowl 2018 -Kylie Jenner -Ash Wednesday -Sergei Eisenstein -Paula Modersohn-Becker -Alex Smith -Joe Kennedy -Ar 15 -Friends The Movie 2018 -NBA Trades -Virginia Woolf -Wilder Penfield -Alaska earthquake -Kingdom Come Deliverance -Ash Wednesday -Patriots -Elizabeth Blackwell -What Time Is The Super Bowl -Justin Timberlake -Sergei Eisenstein -Grammys 2018 -Otto Warmbier -Government Shutdown -Patriots -Super Bowl 2018 -Wilder Penfield -Vikings Vs Eagles -Happy Valentines Day -Amazon stock -Alaska earthquake -Kylie Jenner -Chloe Kim -Elizabeth Blackwell -Olympic medal count -Shaun White -Super Bowl score -Camila Cabello -Patriots -Olympic medal count -Sergei Eisenstein -Celebrity Big Brother cast -Winter Olympics -Patriots -What Time Is The Super Bowl -Super blue blood Moon -Shaun White -Shaun White -Vikings vs Eagles -Dwyane Wade -Carter G. Woodson -Florida shooting -Grammys 2018 -Lil Pump -Sarah Barthel -Vikings Vs Eagles -Government Shutdown -Elizabeth Blackwell -Super Bowl score -Sergei Eisenstein -SpaceX -Florida shooting -Grammys 2018 -New England Patriots owner -Grammys 2018 -Elizabeth Blackwell -Patriots -Daryle Singletary -Otto Warmbier -Patriots -Justin Timberlake -Super Bowl score -Kylie Jenner -Super Bowl 2018 -Mickey Jones -Virginia Woolf -Chinese New Year 2018 -Groundhog Day 2018 -Justin Timberlake -Fredo Santana -Florida shooting -Super Bowl score -Wilder Penfield -Paula Modersohn-Becker -Dwyane Wade -Trump State of the Union -Solo Trailer -Super Bowl score -Bob Marley -Tesla in space -Virginia Woolf -Shaun White -Google Classroom -Paula Modersohn-Becker -Super Bowl 2018 -Quincy Jones -Elizabeth Blackwell -Kristaps Porzingis -Wilder Penfield -Patriots -Super Bowl 2018 -Elizabeth Blackwell -Steven Tyler -Cloverfield Paradox -Shaun White -Solo Trailer -Super Bowl score -State of the Union -Westminster Dog Show 2018 -Black Panther -Vikings vs Eagles -Hope Hicks -Justin Timberlake -Daryle Singletary -Winter Olympics -Cnbc -Alaska earthquake -Wilder Penfield -Sergei Eisenstein -Super Bowl 2018 -Vikings Vs Eagles -Happy Valentines Day -Google docs -Larry Nassar -Cloverfield Paradox -Fifty Shades Freed -Wilder Penfield -Vince McMahon -Justin Timberlake -Classroom -Bitcoin Price -Jen Selter -Wilder Penfield -Florida shooting -Paul Ryan -Memo -Paula Modersohn-Becker -Larry Nassar -Justin Timberlake -Elizabeth Blackwell -What Time Is The Super Bowl -Ash Wednesday -Florida shooting -Wilder Penfield -Government Shutdown -Tyler Hilinski -SpaceX -Solo Trailer -Arsenal -Cloverfield Paradox -Patriots -Chicago Weather -Hope Hicks -This Is Us -What Time Is The Super Bowl -Trump State of the Union -Paula Modersohn-Becker -This Is Us -Vikings Vs Eagles -Mark Salling -Carter G. Woodson -Sergei Eisenstein -Florida shooting -Puppy Bowl 2018 -Larry Nassar -Virginia Woolf -NBA Trades -Cavs -Carter G. Woodson -Obama portrait -Puppy Bowl 2018 -Patriots -Government shutdown -Danielle Herrington -Harry Styles -Alex Smith -Grammys 2018 -Shaun White -Super Bowl score -Patriots -Grammys 2018 -Den of Thieves -stock market -Cavs -Virginia Woolf -Super Bowl score -Football Playoffs 2018 -SpaceX -Tom Petty -Paula Modersohn-Becker -NBA Trades -Kim Kardashian -Chicago West -Will Ferrell -Justin Timberlake -Florida shooting -Jason Kelce -Virginia Woolf -Winter Olympics -Childish Gambino -Shiffrin -Sergei Eisenstein -Football Playoffs 2018 -Fredo Santana -Kesha Grammy -Paula Modersohn-Becker -New California -Lena Zawaideh -Wilder Penfield -Carter G. Woodson -UFC 220 -Winter Olympics -Government Shutdown Meaning -Rasual Butler -Vikings Vs Eagles -Justin Timberlake -Groundhog Day 2018 -Ash Wednesday -Virginia Woolf -Patti LuPone -Virginia Woolf -Kylie Jenner Baby Girl -Government Shutdown -Super Bowl score -Trump State of the Union -Super Bowl score -Wilder Penfield -Kylie Jenner -Shaun White -Terrell Owens -Elizabeth Blackwell -Larry Nassar -Patriots -Justin Timberlake -Super Bowl score -Get Out -Larry Nassar -Elizabeth Blackwell -Did the Groundhog See His Shadow -Larry Nassar -Super Bowl Commercials 2018 -Winter Olympics -Government shutdown -Winter Olympics -Grammys 2018 -Super Bowl score -Cavs -What Time Is The Super Bowl -Florida shooting -Mikaela Shiffrin -Patriots -Shaun White -school closings -LeBron James -Justin Timberlake -Waco -Super Bowl score -Paula Modersohn-Becker -Terrell Owens -Wilder Penfield -Super Bowl 2018 -Sergei Eisenstein -Mikaela Shiffrin -February -stock market -Elizabeth Blackwell -Dwyane Wade -School Closings -Classroom -Super Bowl 2018 -Megan Barry -Winter Olympics -United States Postal Service -Memo -Elton John -Virginia Woolf -Shaun White -Get Out -Shaun White -What Time Is The Super Bowl -Hope Hicks -The 15:17 to Paris -Winter Olympics -Puppy Bowl 2018 -Super Bowl 2018 -Justin Timberlake -Virginia Woolf -Chris Stapleton -SpaceX -What Time Is The Super Bowl -Winter Olympics -Vikings vs Eagles -Patriots -Wilder Penfield -Larry Nassar -Justin Timberlake -Larry Nassar -AR-15 -Drive -Winter Olympics -Presidents Day 2018 -Super Bowl Commercials 2018 -Olive Garden -Happy Valentines Day -Tesla in space -All Star Weekend 2018 -Celtics -Wilder Penfield -Jalen Ramsey -Sergei Eisenstein -Dow Jones -Oscar Nominations 2018 -Carter G. Woodson -Wilder Penfield -Sergei Eisenstein -Super Bowl score -Government Shutdown Meaning -SpaceX -Super Bowl 2018 -Super Bowl 2018 -Paula Modersohn-Becker -Sarah Barthel -Paula Modersohn-Becker -Winter Olympics -Adam Rippon -Jalen Ramsey -The Alienist -Carrie Underwood -Virginia Woolf -State of the Union -Brynn Cameron -Super Bowl 2018 -Super Bowl score -Mardi Gras 2018 -Nba All Star Draft -Groundhog Day 2018 -Sergei Eisenstein -Patriots -Elizabeth Blackwell -Virginia Woolf -Incredibles 2 -Justin Timberlake -Grammys 2018 -Evgenia Medvedeva -Super Bowl score -Patti LuPone -Tom Brady -Steven Tyler -Altered Carbon -Super Bowl score -LeBron James -Sergei Eisenstein -Real Madrid -Winter Olympics -Super Bowl 2018 -Super Bowl 2018 -Paula Modersohn-Becker -Happy Valentines Day -Happy Valentines Day -Florida shooting -Puppy Bowl 2018 -Super Bowl 2018 -Elizabeth Blackwell -Carter G. Woodson -Chinese New Year 2018 -Meteor -Government Shutdown -Lunar eclipse -Justin Timberlake -Wilder Penfield -Harley Barber -Super Bowl score -Solo Trailer -Super Bowl 2018 -SAG Awards 2018 -Lil Pump -Elizabeth Blackwell -Super Bowl score -Patti LuPone -Government Shutdown 2018 -Solo Trailer -Elizabeth Blackwell -Mark Salling -Chinese New Year 2018 -Carter G. Woodson -Winter Olympics -Shaun White -Black Panther -Super Bowl score -government shutdown -Best Superbowl Commercials 2018 -Winter Olympics -Kirstjen Nielsen -Patriots -Vikings Vs Eagles -Super Bowl 2018 -Justin Timberlake -Super Bowl score -Dow Jones -Den of Thieves -Pro Bowl 2018 -Florida shooting -Tennys Sandgren -Meteor -XIV -Justin Timberlake -This is Us -Bill Paxton -Super Bowl score -Winter Olympics -Montreal Cognitive Assessment -Meteor -Happy Valentines Day -Justin Timberlake -Valentines Day -CNN -Dwyane Wade -Government Shutdown Meaning -The 15:17 to Paris -Government Shutdown Meaning -Chris Stapleton -earthquake -Patriots -Virginia Woolf -Montgomery County Public Schools -Super Bowl score -Virginia Woolf -What Time Is The Super Bowl -Celebrity Big Brother cast -Larry Nassar -Carter G. Woodson -Super Bowl 2018 -Happy Valentines Day -Sergei Eisenstein -Grammys 2018 -Government Shutdown -earthquake -Carter G. Woodson -Super Bowl 2018 -Valentines Day Cards -Happy Valentines Day -Shaun White -Super Bowl score -NBA Trades -State of the Union -Patriots -Mardi Gras 2018 -Mikaela Shiffrin -Larry Nassar -Adam Hicks -Sergei Eisenstein -Dow Jones -Shaun White -Tom Petty -Super Bowl score -Google docs -Eli Manning -Elizabeth Blackwell -Bitcoin Price -Joe Kennedy -What Time Is The Super Bowl -Chloe Kim -Larry Nassar -Celebrity Big Brother cast -Louise Linton -Ash Wednesday -Virginia Woolf -Blake Griffin Trade -Wilder Penfield -Obama portrait -H&r Block -Mardi Gras 2018 -Outback Steakhouse -Winter Olympics -Super Bowl score -Wilder Penfield -Pyeongchang 2018 Olympic Winter Games -Government shutdown -Duke basketball -Wilder Penfield -Carter G. Woodson -Celebrity Big Brother cast -Bitcoin Price -XFL -Trump State of the Union -Super Bowl Commercials 2018 -Sergei Eisenstein -Paula Modersohn-Becker -Florida shooting -Elizabeth Blackwell -Carter G. Woodson -Winter Olympics -Patriots -Chinese New Year 2018 -Hostiles -Justin Timberlake -Trump State of the Union -Edwin Jackson -Wilder Penfield -Adam Rippon -Patriots -Carter G. Woodson -Winter Olympics -Real Madrid -Florida shooting -Zuleyka Rivera -Memo -Patriots -Grammys 2018 -Blood Moon -Patriots -Lunar eclipse -Larry Nassar -Bitcoin Price -Real Madrid -Wilder Penfield -Wilder Penfield -Winter Olympics -Bode Miller -United States Of America Winter Olympics -Elizabeth Blackwell -XFL -Super Bowl score -Aliona Savchenko -Joe Kennedy -Patriots -Peter Rabbit -Kylie Jenner -Blake Griffin -Dwyane Wade -Super Bowl score -Lindsey Vonn -Virginia Woolf -Super Bowl 2018 -school closings -Justin Timberlake -Sergei Eisenstein -Fredo Santana -stock market -Robert Mueller -NBA Trades -Isaiah Thomas -Paula Modersohn-Becker -school closings -Virginia Woolf -SpaceX -Meteor -Florida shooting -Shaun White -Government Shutdown Meaning -Florida shooting -State of the Union -Mikaela Shiffrin -Sea Of Thieves -Elizabeth Blackwell -School Closings -SAG Awards 2018 -Mikaela Shiffrin -Kylie Jenner -Blake Griffin -Winter Olympics -Black Panther -Paula Modersohn-Becker -Virginia Woolf -Memo -Happy Valentines Day -Grammys 2018 -Wilder Penfield -Florida shooting -Wilder Penfield -Tyler Hilinski -Scandal -Patriots -Luke Wilson -Florida shooting -Super Bowl 2018 -Patriots -Oscar Nominations 2018 -Patriots -Florida shooting -Super Bowl 2018 -CNN -Wilder Penfield -Florida shooting -Super Bowl 2018 -Vikings Vs Eagles -Florida shooting -Florida shooting -NFC Championship Game 2018 -Sergei Eisenstein -Virginia Woolf -Olive Garden -Cloverfield Paradox -Edible Arrangements -Jacob Copeland -Government Shutdown -Carter G. Woodson -State of the Union -Sea Of Thieves -Government Shutdown -Chicago West -Paula Modersohn-Becker -Trump State of the Union -Fredo Santana -Isaiah Thomas -Despacito -Carter G. Woodson -Valentines Day -Carter G. Woodson -Friends The Movie 2018 -Carter G. Woodson -Super Bowl 2018 -Super Bowl 2017 -Andrew McCabe -Vikings Vs Eagles -Government Shutdown Meaning -Sting -Winter Olympics -Bitcoin Price -Happy Valentines Day -Wilder Penfield -Rasual Butler -Luke Wilson -Sergei Eisenstein -Phantom Thread -Winter Olympics -Johnny Weir -State of the Union -Virginia Woolf -Virginia Woolf -CNN -Tom Petty -Virginia Woolf -Super Bowl 2018 -Wilder Penfield -Florida shooting -Justin Timberlake -Alex Smith -Cavs -Wilder Penfield -Oscar Nominations 2018 -Kylie Jenner -What Time Is The Super Bowl -Mikaela Shiffrin -NBA Trades -Rodney Hood -Celtics -School Closings -Elizabeth Blackwell -Winter Olympics -Shiffrin -Trey Gowdy -Super Bowl score -Did the Groundhog See His Shadow -Isaiah Canaan -Kylie Jenner -Super Bowl score -Mardi Gras 2018 -Kesha -Julie Bowen -Did the Groundhog See His Shadow -Paula Modersohn-Becker -Chloe Kim -Justin Timberlake -Luke Wilson -Wilder Penfield -Patriots -Government Shutdown -Virginia Woolf -Sergei Eisenstein -Paula Modersohn-Becker -Friends movie -Winter Olympics -Ash Wednesday -Grammys 2018 -Patriots -Grammys 2018 -Wilder Penfield -SpaceX -Sergei Eisenstein -Obama portrait -Elizabeth Blackwell -Super Bowl 2018 -Kesha -Sergei Eisenstein -Kylie Jenner -Vanessa Trump -SpaceX -Carter G. Woodson -Lakers -Mardi Gras 2018 -Black Panther -Chicago West -Alaska earthquake -Justin Timberlake -tsunami -Larry Nassar -Sergei Eisenstein -Justin Timberlake -Dow Jones -Sergei Eisenstein -Patriots -Virginia Woolf -Florida shooting -Mardi Gras 2018 -shutdown -Dow Jones -Virginia Woolf -Mardi Gras 2018 -What Time Is The Super Bowl -Logan Paul -United States Of America Winter Olympics -Blood Moon -Patriots -Virginia Woolf -Tiger Woods -State of the Union -Elizabeth Blackwell -Paula Modersohn-Becker -Joe Kennedy -Black Panther -Kylie Jenner -Government shutdown 2018 -Black Panther -Elizabeth Blackwell -Florida shooting -Childish Gambino -What Time Is The Super Bowl -Andrew Cunanan -Super Bowl 2018 -Winter Olympics -Trump State of the Union -Farmers Insurance Open 2018 -NBA Trades -Florida shooting -Vikings Vs Eagles -Super Bowl 2018 -Tessa Virtue -What Time Is The Super Bowl -Elizabeth Blackwell -Champions League -Wilder Penfield -Paula Modersohn-Becker -New England Patriots owner -Snake -Wilder Penfield -Mickey Jones -Sergei Eisenstein -Carter G. Woodson -Chinese New Year 2018 -Alaska earthquake -Virginia Woolf -Patriots -Lunar eclipse -Patriots -Google docs -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl 2018 -Sergei Eisenstein -school closings -Super Bowl 2018 -Cloverfield Paradox -Elizabeth Blackwell -Elizabeth Blackwell -Adam Rippon -Justin Timberlake -NBA Trades -Florida shooting -Oscar Nominations 2018 -Memo -Government Shutdown Meaning -Sergei Eisenstein -Alex Smith -Immaculate Conception -Omarosa -Winter Olympics -Bitcoin Price -Florida shooting -Government Shutdown -Super Bowl score -Super Bowl 2018 -Paula Modersohn-Becker -Sergei Eisenstein -Kesha -Patti LuPone -Grey's Anatomy -Justin Timberlake -Government Shutdown -Patriots -Larry Nassar -Vikings Vs Eagles -Tara Lipinski -Grammys 2018 -Winter Olympics -Wilder Penfield -Celtics -Rodney Hood -Virginia Woolf -Carter G. Woodson -Government shutdown 2018 -Brie Larson -Royal Rumble 2018 -Black Panther -This Is Us -Wilder Penfield -Solo Trailer -This Is Us -Elizabeth Blackwell -What Time Is The Super Bowl -Dow Jones -Sergei Eisenstein -Patriots -Sean Hannity -Yuzuru Hanyu -Winter Olympics -Fredo Santana -Winter Olympics -Virginia Woolf -Halsey -Super blue blood Moon -Google Classroom -Wilder Penfield -Government Shutdown -Larry Nassar -Tom Petty -Florida shooting -AR-15 -State of the Union -Vikings vs Eagles -Paula Modersohn-Becker -Oscar Nominations 2018 -Super Bowl score -NBC Sports -Todd Haley -Winter Olympics -Carter G. Woodson -Mark Salling -Daryle Singletary -Larry Nassar -Sergei Eisenstein -Lonzo Ball -Carter G. Woodson -Kylie Jenner -Elizabeth Blackwell -Carter G. Woodson -Super Bowl 2018 -Vikings Vs Eagles -Paula Modersohn-Becker -Sergei Eisenstein -Wilder Penfield -Paula Modersohn-Becker -Mark Salling -Winter Olympics -Joe Kennedy -Larry Nassar -Patriots -Government Shutdown -Bitcoin Price -Champions League -Patriots -SpaceX -Elton John -Super Bowl score -Puppy Bowl 2018 -Patriots -Shaun White -Carter G. Woodson -Jimmy Garoppolo -Oscar Nominations 2018 -Elizabeth Blackwell -Winter Olympics -Camila Cabello -Super Bowl Commercials 2018 -Winter Olympics -Google Drive -Patriots -Kylie Jenner -Fifty Shades Freed -Virginia Woolf -Westminster Dog Show 2018 -Virginia Woolf -Virginia Woolf -Pro Bowl 2018 -Altered Carbon -What Time Is The Super Bowl -Government Shutdown -Elizabeth Blackwell -Black Panther -Carter G. Woodson -Cloverfield Paradox -Obama portrait -Amazon stock -Mardi Gras 2018 -Florida shooting -Toys R Us -Patriots -Winter Olympics -Super Bowl score -Patriots -Forever My Girl -SpaceX -Joe Kennedy -Drive -Robert Wagner -Eli Manning -Super Bowl 2018 -Did the Groundhog See His Shadow -Florida shooting -Virginia Woolf -New California -State of the Union -Larry Nassar -Mark Salling -Winter Olympics -Wilder Penfield -Once Upon a Time -Malcom Butler -Wilder Penfield -Lady Bird -Mark Salling -SpaceX -XIV -Dwyane Wade -Elizabeth Blackwell -Florida shooting -Black Panther -Carter G. Woodson -School Closings -Super blue blood Moon -Daryle Singletary -Wilder Penfield -Kesha Grammy -Shaun White -Mark Salling -Super blue blood Moon -Robert Wagner -government shutdown -Pro Bowl 2018 -school closings -Elizabeth Blackwell -Patriots -Elizabeth Blackwell -Columbine -Black Panther -Florida shooting -Elizabeth Blackwell -Winter Olympics -Groundhog Day 2018 -Winter Olympics -Sea of Thieves -SpaceX -Blue Ivy -Black Panther -Super Bowl score -SpaceX -Wilder Penfield -Solo Trailer -Super Bowl 2018 -Dow Jones -Carter G. Woodson -Memo -Vikings Vs Eagles -Virginia Woolf -Pro Bowl 2018 -Dow Jones -Tom Petty -Shaun White -Omarosa -Memo -Juventus -Government Shutdown -Oscar Nominations 2018 -Luke Wilson -United States Of America Winter Olympics -Lakers -Rob Porter -Sergei Eisenstein -Grammys 2018 -Mark Salling -Winter Olympics -Super Bowl score -Mark Salling -Scott Baio -Carter G. Woodson -FC Barcelona -Larry Nassar -Adam Rippon -Patriots -Sarah Barthel -Super Bowl 2018 -Conor McGregor -Adam Hicks -Valentines Day Images -NBA Trades -Florida shooting -H&r Block -Valentines Day Memes -Alexa Commercial -Carter G. Woodson -What Time Is The Super Bowl -Super blue blood Moon -CNN -This Is Us -Tammy Duckworth -Elizabeth Blackwell -Paula Modersohn-Becker -Walter Payton -Joe Kennedy -calculator -Winter Olympics -Mark Salling -Virginia Woolf -Ohio State basketball -Wilder Penfield -Memo -Shaun White -Alex Smith -Florida shooting -Lindsey Vonn -Den of Thieves -Government Shutdown Meaning -Olympic Medal Count -Happy Valentines Day -Mark Salling -Trayvon Martin -Carter G. Woodson -Josh McDaniels -Super Bowl 2018 -Google docs -Chloe Kim -Groundhog Day 2018 -Rodney Hood -Johnny Weir -Patriots -State of the Union -Carter G. Woodson -OKC Thunder -Winter Olympics -Super blue blood Moon -Carter G. Woodson -Virginia Woolf -Jennifer Aniston -Wilder Penfield -Friends movie -Paula Modersohn-Becker -Mike Tomlin -Chinese New Year 2018 -Paula Modersohn-Becker -luge -Google Classroom -Wilder Penfield -Super Bowl 2018 -Larry Nassar -Winter Olympics -Fifty Shades Freed -Kratom -Government shutdown 2018 -Super Bowl Winners -Larry Nassar -Wilder Penfield -Dow Jones -Super blue blood Moon -Omarosa -Oscar Nominations 2018 -Dog Food Recall -Conor McGregor -Virginia Woolf -Jimmy Kimmel -Kylie Jenner -Super Bowl 2018 -Terrell Owens -United States Of America Winter Olympics -Elizabeth Blackwell -Virginia Woolf -Super Bowl 2018 -Shaun White -Super Bowl 2018 -This Is Us -Melania Trump -Hope Hicks -Mardi Gras 2018 -stock market -Tammy Duckworth -Government shutdown 2018 -Black Panther -Carter G. Woodson -Elizabeth Blackwell -Patriots -Florida shooting -Kris Dunn -Groundhog Day 2018 -Carter G. Woodson -Patriots -CNN -Grammys 2018 -What Time Is The Super Bowl -Virginia Woolf -Carter G. Woodson -Kylie Jenner -stock market -Lari White -Patriots -NFL Honors -Super Bowl 2018 -Terrell Owens -Patriots -Elizabeth Blackwell -Anna Kournikova -Patriots -Groundhog Day 2018 -Ohio State basketball -United States Of America Winter Olympics -Elizabeth Blackwell -What Time Is The Super Bowl -Elizabeth Blackwell -Winter Olympics -Obama portrait -Elizabeth Blackwell -Nintendo Labo -Fifty Shades Freed -Super Bowl score -Dow Jones -Robert Wagner -Cavs -Wilder Penfield -Super Bowl 2018 -Virginia Woolf -Super Bowl 2018 -Detroit Lions -Groundhog Day 2018 -Scandal -Kim Kardashian -Fortnite New Map -Google docs -Wilder Penfield -Florida shooting -Carter G. Woodson -Super Bowl 2017 -Paula Modersohn-Becker -Virginia Woolf -Justin Timberlake -Super Bowl score -Winter Olympics -Real Madrid -Patriots -Elizabeth Blackwell -SpaceX -Childish Gambino -Kylie Jenner -Winter Olympics -Kesha Grammy -Jimmy Kimmel -United States Postal Service -Florida shooting -LeBron James -Esteban Loaiza -Elizabeth Blackwell -Winter Olympics -Carter G. Woodson -Carter G. Woodson -Florida shooting -Amazon stock -Kawhi Leonard -Carter G. Woodson -Carter G. Woodson -Super Bowl 2018 -Elton John -Super Bowl 2018 -Groundhog Day 2018 -Elizabeth Blackwell -Government Shutdown -Fifty Shades Freed -Did the Groundhog See His Shadow -Happy Valentines Day -Cloverfield Paradox -Celtics -Justin Timberlake -Patriots -Alex Reimer -Justin Timberlake -LeBron James -Joshua Cooper Ramo -Florida shooting -Virginia Woolf -Winter Olympics -Justin Timberlake -Get Out -Dennis Edwards -Larry Nassar -Maze Runner: The Death Cure -Cherry Seaborn -Super Bowl 2018 -Florida shooting -XFL -UFC 220 -AR-15 -Wilder Penfield -Mike Tomlin -Google Classroom -Virginia Woolf -Super Bowl 2018 -Did the Groundhog See His Shadow -Elizabeth Blackwell -Super Bowl score -Larry Nassar -Paula Modersohn-Becker -Elizabeth Blackwell -Riverdale -Patriots -Ash Wednesday -Elizabeth Blackwell -SAG Awards 2018 -Fortnite New Map -Winter Olympics -Carter G. Woodson -Mardi Gras 2018 -Bob Marley -SpaceX -Paul Ryan -Drake -Stock Market Crash Today -Friends The Movie 2018 -Bitcoin Price -Forever My Girl -Paula Modersohn-Becker -Mark Salling -Cavs -Winter Olympics -Harley Barber -Google docs -Venom -Winter Olympics -Chinese New Year 2018 -Robert Wagner -NASA -Daytona 500 -Patriots -Florida shooting -Patriots -Winter Olympics -Super blue blood Moon -Monster Hunter World -Lady Gaga -State of the Union -calculator -Frank Reich -Super Bowl 2018 -Kesha Grammy -Winter Olympics -Nintendo Labo -Nba All Star Draft -Blake Griffin -Paula Modersohn-Becker -Sergei Eisenstein -Carter G. Woodson -Patriots -Wilder Penfield -Vikings Vs Eagles -Josh McDaniels -Super Bowl score -Dwyane Wade -Jason Kidd -Trump State of the Union -Wilder Penfield -Valentines Day -Markelle Fultz -Patriots -Virginia Woolf -Real Madrid -Elizabeth Blackwell -Winter Olympics -Patriots -Tyler Hilinski -Patriots -Kesha Grammy -Natalie Wood -Super Bowl score -Sergei Eisenstein -February -Cavs -Justin Timberlake -Florida shooting -Jennifer Aniston -Mike Tomlin -This Is Us -Government shutdown 2018 -Justin Timberlake -Carter G. Woodson -Valentines Day -Patriots -Betty White -Sergei Eisenstein -Google Classroom -Earthquake Today -Kylie Jenner -Chief Wahoo -Amazon Stock -Carter G. Woodson -SpaceX -Paula Modersohn-Becker -Super Bowl score -Best Superbowl Commercials 2018 -Kylie Jenner -Kylie Jenner Baby Girl -Mark Salling -Carter G. Woodson -Sergei Eisenstein -CNN -Virginia Woolf -calculator -Mark Salling -Sergei Eisenstein -Carter G. Woodson -Frank Reich -Chloe Kim -Oscar Nominations 2018 -NBA Trades -Super Bowl 2018 -What Time Is The Super Bowl -Elizabeth Blackwell -Super Bowl score -Oscar Nominations 2018 -Tyler Hilinski -Hailee Steinfeld -Ash Wednesday -Josh McDaniels -Call Me by Your Name -Carter G. Woodson -Black Panther -Oscar Nominations 2018 -Bitcoin Price -SpaceX -Virginia Woolf -Alex Smith -Super blue blood Moon -SpaceX -Carter G. Woodson -Virginia Woolf -Blake Griffin -Winter Olympics -Paula Modersohn-Becker -Chief Wahoo -Cavs -Shani Davis -Grammys 2018 -Paula Modersohn-Becker -Memo -Larry Nassar -Omarosa -Altered Carbon -Champions League -Super Bowl score -NBA Trades -Blue Moon -school closings -Elizabeth Blackwell -Adam Rippon -Sergei Eisenstein -Carrie Underwood -Dwyane Wade -Government Shutdown -Gigi Hadid -Shaun White -Google Classroom -Super Bowl score -Alaska earthquake -Wilder Penfield -Olympic Medal Count -calculator -Virginia Woolf -Florida shooting -Nba All Star Draft -Amy Schumer -Kodak Black -What Time Is The Super Bowl -Elizabeth Blackwell -Lunar eclipse -Wilder Penfield -Patriots -Nancy Pelosi -Wilder Penfield -Sergei Eisenstein -Pink -calculator -Earthquake -Wilder Penfield -Carter G. Woodson -Caroline Wozniacki -Winter Olympics -XFL -Groundhog Day 2018 -Blake Griffin -Valentines Day Memes -Vikings Vs Eagles -Government Shutdown 2018 -Paula Modersohn-Becker -Black Panther -Houston Rockets -Super Bowl score -Virginia Woolf -Black Panther -Sergei Eisenstein -Wilder Penfield -SAG Awards 2018 -Dwyane Wade -Jimmy Garoppolo -H&r Block -Elizabeth Blackwell -Paula Modersohn-Becker -Pro Bowl 2018 -Simona Halep -Patriots -Monster Hunter World -Groundhog Day 2018 -Elizabeth Blackwell -Paula Modersohn-Becker -State of the Union -Amtrak -Kylie Jenner -Patriots -The 15:17 to Paris -Florida shooting -Elizabeth Blackwell -Jennifer Aniston -Sergei Eisenstein -Florida shooting -Tomi Lahren -Paula Modersohn-Becker -Black Panther -Chicago West -Football Playoffs 2018 -What Time Is The Super Bowl -The Resident -Winter Olympics -Sharon Stone -Elizabeth Blackwell -Adam Rippon -Florida shooting -Release The Memo -Patriots -Memo -Florida shooting -Carter G. Woodson -Government Shutdown Meaning -School Closings -Despacito -Super Bowl 2018 -Steven Tyler -Patriots -SpaceX -Sergei Eisenstein -Jimmy Garoppolo -Danielle Herrington -Sergei Eisenstein -AR-15 -Carter G. Woodson -Gods Plan -Florida shooting -Mark Salling -Snapchat Update -Alessia Cara -Dwyane Wade -Super Bowl score -What Time Is The Super Bowl -Kylie Jenner Baby Girl -Super Bowl score -Government Shutdown -Carter G. Woodson -Winter Olympics -Google Classroom -Sergei Eisenstein -Jessica Chastain -Natalie Wood -Oscar Nominations 2018 -What Time Is The Super Bowl -Jason Kelce -Kesha Grammy -Ursula Le Guin -Super Bowl 2018 -What Time Is The Super Bowl -Patriots -Cherry Seaborn -Paula Modersohn-Becker -Patriots -Larry Nassar -Super Bowl score -Carter G. Woodson -Kylie Jenner -Oscar Nominations 2018 -John Mahoney -Cherry Seaborn -Zuleyka Rivera -SpaceX -Elizabeth Blackwell -Patriots -What Time Is The Super Bowl -Justin Timberlake -Wilder Penfield -Kylie Jenner -Sergei Eisenstein -Florida shooting -Carter G. Woodson -Jason Kidd -Paula Modersohn-Becker -Paula Modersohn-Becker -calculator -Alaska earthquake -earthquake today -Virginia Woolf -Blake Griffin -Zuleyka Rivera -Sergei Eisenstein -Florida shooting -12 Strong -Amy Schumer -Winter Olympics -Aaliyah -Elizabeth Blackwell -Paula Modersohn-Becker -Elizabeth Blackwell -Groundhog Day 2018 -Florida shooting -What Time Is The Super Bowl -Maria Menounos -Carter G. Woodson -Winter Olympics -United States Of America Winter Olympics -BitConnect -Carter G. Woodson -Carter G. Woodson -Sergei Eisenstein -State of the Union -Patriots -Logan Paul -Grammys 2018 -Super Bowl score -Florida shooting -Super Bowl score -Memo -NBA Trades -Super Bowl score -Super Bowl 2018 -Elizabeth Blackwell -Mark Salling -Elizabeth Blackwell -Dwyane Wade -Carter G. Woodson -Paula Modersohn-Becker -Florida shooting -Kylie Jenner -Evgenia Medvedeva -Winter Olympics -NBA Trades -Florida shooting -SpaceX -Real Madrid -Carter G. Woodson -Solo Trailer -Super Bowl score -Cloverfield Paradox -Sergei Eisenstein -Patriots -Obama portrait -Stock Market Crash Today -Carter G. Woodson -Super Bowl score -SpaceX -Joe Kennedy -Black Panther -Steve Wynn -Government Shutdown 2018 -Super Bowl score -Carter G. Woodson -Kratom -This Is Us -Super Bowl score -Sergei Eisenstein -Larry Nassar -Super Bowl score -Carter G. Woodson -Virginia Woolf -Olympic Medal Count -Lena Zawaideh -Isaiah Thomas -Kingdom Come Deliverance -Winter Olympics -Edible Arrangements -Shaun White -National Pizza Day -Super Bowl 2018 -Cryptocurrency News -Wilder Penfield -Sergei Eisenstein -Simona Halep -Dow Jones -Elizabeth Blackwell -Super Bowl score -Paula Modersohn-Becker -Dow Jones -Super Bowl 2018 -Patriots -One Day At A Time -Carter G. Woodson -This Is Us -AR-15 -State of the Union -Greg Monroe -Wilder Penfield -school closings -Chloe Kim -Oscar Nominations 2018 -Government shutdown -Joe Kennedy -12 Strong -Chicago West -Bitcoin Price -What Time Is The Super Bowl -Happy Valentines Day -Patriots -Royal Rumble 2018 -James Baldwin -Government Shutdown -Patriots -Kylie Jenner -calculator -Patriots -Larry Nassar -Elizabeth Blackwell -Walter Payton -AR-15 -national signing day 2018 -Patriots -Justin Timberlake -Wilder Penfield -Super Bowl score -Sergei Eisenstein -Mark Salling -Meteor -What Time Is The Super Bowl -Alaska earthquake -Carter G. Woodson -Sergei Eisenstein -Virginia Woolf -Super Bowl Commercials 2018 -Elizabeth Blackwell -stock market -Adam Rippon -Happy Valentines Day -Patriots -XFL -Elizabeth Blackwell -Patriots -Oscar Nominations 2018 -Sergei Eisenstein -Sergei Eisenstein -Elizabeth Blackwell -State of the Union -Justin Timberlake -Winter Olympics -Winter Olympics -Winter Olympics -Winter Olympics -Sergei Eisenstein -Real Madrid -Florida shooting -Terry Bradshaw -Sergei Eisenstein -Carter G. Woodson -Super Blue Blood Moon -Eric Wood -National Pizza Day -Virginia Woolf -Senior Bowl -Super Bowl score -Chinese New Year 2018 -Grammys 2018 -Kylie Jenner -Happy Valentines Day -Winter Olympics -Early Man -calculator -Florida shooting -Justin Timberlake -Patriots -Farmers Insurance Open 2018 -Shaun White -Kylie Jenner -Reg E Cathey -Shaun White -Paula Modersohn-Becker -Government Shutdown -Alex Smith -Paula Modersohn-Becker -Bruno Mars -Adam Rippon -Call Me by Your Name -Black Panther -Super Bowl 2018 -Alex Smith -Kim Kardashian -Isaiah Thomas -Kylie Jenner -Super Bowl 2018 -Winter Olympics -Kylie Jenner -Obama portrait -Reg E Cathey -Wilder Penfield -Super Bowl score -Elizabeth Blackwell -Alex Reimer -Paula Modersohn-Becker -Obama portrait -Den of Thieves -Super Bowl score -Ash Wednesday -Pro Bowl 2018 -Sabrina Dhowre -Bitcoin Price -Florida shooting -Royal Rumble 2018 -Winter Olympics -Super Bowl score -Mikaela Shiffrin -XFL -Super Bowl score -Lena Zawaideh -Best Superbowl Commercials 2018 -Chloe Kim Snowboarder -Olivia Culpo -Kim Kardashian -Kylie Jenner Baby Girl -Happy Valentines Day -Florida shooting -Virginia Woolf -Meteor -Real Madrid -Cloverfield Paradox -Grammys 2018 -Did the Groundhog See His Shadow -JUUL -Rasual Butler -Natalie Wood -Kylie Jenner -Patriots -Paula Modersohn-Becker -Super Bowl score -Virginia Woolf -Fredo Santana -calculator -Virginia Woolf -Justin Timberlake -Kylie Jenner -Winter Olympics -Mardi Gras 2018 -Kylie Jenner -What Time Is The Super Bowl -Ohio State basketball -Sergei Eisenstein -What Time Is The Super Bowl -Natalie Portman -Government Shutdown -Carter G. Woodson -Mark Salling -Memo -Kentucky shooting -Winter Olympics -Carter G. Woodson -Elizabeth Blackwell -Paula Modersohn-Becker -Patti LuPone -Super Bowl Commercials 2018 -Winter Olympics -Patriots -Grammys 2018 -Frank Reich -Super Bowl 2018 -Elizabeth Blackwell -Winter Olympics -Larry Nassar -Winter Olympics -Super Bowl score -Super Bowl 2018 -Mardi Gras 2018 -Meteor -UFC 220 -New England Patriots owner -Carter G. Woodson -Patriots -Real Madrid -Oscar Nominations 2018 -Sea Of Thieves -Larry Nassar -State of the Union -Trump Hair -AFC Championship Game 2018 -NBA Trades -Olympic Medal Count -Super Bowl score -Quincy Jones -Mexico earthquake -Will Ferrell -Alaska earthquake -Patriots -Justin Timberlake -School Closings -Erykah Badu -Warren Miller -Warren Miller -Alaska earthquake -Mardi Gras 2018 -Sergei Eisenstein -Virginia Woolf -Sergei Eisenstein -Winter Olympics -Heath Ledger -Winter Olympics -Puppy Bowl 2018 -Florida shooting -Yura Min -Celebrity Big Brother cast -UFC 220 -Super Bowl 2018 -Google Classroom -Jason Kelce -Elton John -What Time Is The Super Bowl -Winter Olympics -Tom Petty -State of the Union -Mardi Gras 2018 -Obama portrait -Winter Olympics -Super Bowl Commercials 2018 -Florida shooting -Kylie Jenner Baby Girl -Wilder Penfield -Presidents Day 2018 -Walter Payton -Elizabeth Blackwell -Florida shooting -Eli Manning -Wilder Penfield -Wilder Penfield -Super Bowl score -fake news awards -Kylie Jenner -Wilder Penfield -Rob Gronkowski -SpaceX -Grammys 2018 -Super Bowl 2018 -Florida shooting -Patriots -Donald Trump Jr -Grammys 2018 -Valentines Day Images -Kim Kardashian -Paula Modersohn-Becker -Patriots -Carter G. Woodson -Patriots -Virginia Woolf -Larry Nassar -Kylie Jenner -Chris Stapleton -Government Shutdown Meaning -Steven Tyler -Larry Nassar -Paula Modersohn-Becker -Naya Rivera -Winter Olympics -Vikings vs Eagles -Sergei Eisenstein -Did the Groundhog See His Shadow -Rasual Butler -Meteor -Ash Wednesday -Super blue blood Moon -Tyler Hilinski -Edwin Jackson -Wilder Penfield -Black Panther -Super Bowl score -Wilder Penfield -Mikaela Shiffrin -Paula Modersohn-Becker -Larry Nassar -National Pizza Day -Kesha Grammy -Meteor -John Mahoney -Don Lemon -Rob Porter -Winter Olympics -Elizabeth Blackwell -Costco Wholesale -Costco Wholesale -Florida shooting -Super Bowl score -Nathan Chen -Wilder Penfield -Super blue blood Moon -Bradie Tennell -12 Strong -What Time Is The Super Bowl -Larry Nassar -Larry Nassar -Elizabeth Blackwell -Virginia Woolf -Winter Olympics -John Mahoney -Kratom -Kylie Jenner -Rihanna -Oscar Nominations 2018 -Stan Lee -Paula Modersohn-Becker -Wilder Penfield -Sergei Eisenstein -Cherry Seaborn -Super Bowl score -Paula Modersohn-Becker -Olympic Medal Count -Jennifer Aniston -fake news awards -Super Bowl 2018 -Super Bowl score -Virginia Woolf -Government Shutdown -Wilder Penfield -Larry Nassar -Sergei Eisenstein -Carter G. Woodson -Alex Smith -Joe Kennedy -Bitcoin Price -Patriots -Kentucky shooting -Black Panther -Florida shooting -Florida shooting -Tomi Lahren -Virginia Woolf -Dow Jones -Jamie Anderson -School closings -Meteor -Florida shooting -Carter G. Woodson -Sergei Eisenstein -Women's March 2018 -Paula Modersohn-Becker -SAG Awards 2018 -Cavs -Sergei Eisenstein -Super Bowl 2018 -Paula Modersohn-Becker -Mardi Gras 2018 -Patriots -Super Bowl 2018 -Kingdom Come Deliverance -State of the Union -Nathan Chen -Lunar eclipse -Valentines Day -Jennifer Aniston -Super Bowl score -Super Bowl 2018 -Cherry Seaborn -Ash Wednesday -Government shutdown -Paula Modersohn-Becker -Super Bowl score -Elizabeth Blackwell -Mike Tomlin -Trayvon Martin -Virginia Woolf -Gods Plan -Turpin -Super Bowl 2018 -Justin Timberlake -Paula Modersohn-Becker -Obama portrait -Patriots -Groundhog Day 2018 -Grammys 2018 -Florida shooting -Winter Olympics -Lady Doritos -Grammys 2018 -Chloe Kim Snowboarder -Super Bowl score -Winter Olympics -Harley Barber -The 15:17 to Paris -Ash Wednesday -Caroline Wozniacki -Rasual Butler -Obama portrait -Florida shooting -Dow Jones -Winter Olympics -XFL -tsunami -Paula Modersohn-Becker -This Is Us -Tennys Sandgren -Paula Modersohn-Becker -State of the Union -The 15:17 to Paris -Super Bowl 2018 -Lindsey Vonn -Wilder Penfield -Sergei Eisenstein -Virginia Woolf -Alaska earthquake -SAG Awards 2018 -Aaron Feis -Lunar eclipse -Justin Timberlake -Super Bowl 2018 -AFC Championship Game 2018 -Chloe Kim -Kylie Jenner -Elizabeth Blackwell -12 Strong -Chicago West -SAG Awards 2018 -Meteor -Memo -Carter G. Woodson -Steve Mcnair -Lee Miglin -KSI Vs Weller -Blake Griffin -Yu Darvish -Carter G. Woodson -Super Bowl 2018 -Super blue blood Moon -Winter Olympics -DeMarcus Cousins -Larry Nassar -Did the Groundhog See His Shadow -Super Bowl 2018 -SAG Awards 2018 -Virginia Woolf -Florida shooting -Bitcoin Price -AR-15 -Farmers Insurance Open 2018 -Vikings Vs Eagles -Westerville Ohio -Patriots -Sergei Eisenstein -Paula Modersohn-Becker -VIX -Sergei Eisenstein -Virginia Woolf -Dow Jones -Government Shutdown -Elizabeth Blackwell -Valentines Day Images -Super Bowl 2018 -Wilder Penfield -Kylie Jenner -Winter Olympics -Black Panther -Terrell Owens -Justin Timberlake -Louise Linton -What Time Is The Super Bowl -Virginia Woolf -Omarosa -Patriots -Government Shutdown -Government shutdown -Elizabeth Blackwell -Florida shooting -Paula Modersohn-Becker -Elizabeth Blackwell -Alaska earthquake -New California -Senior Bowl -Kentucky shooting -Kentucky shooting -Super Blue Blood Moon -Andrew McCabe -Wilder Penfield -Carrie Underwood -Alessia Cara -Google Drive -Patriots -Super Bowl score -Mark Salling -Mark Salling -Happy Valentines Day -Paula Modersohn-Becker -Virginia Woolf -LeBron James -Jennifer Aniston -Super Bowl 2018 -Alaska earthquake -Will Ferrell -Venom -Elizabeth Blackwell -NBA Trades -Cavs -Todd Haley -Patriots -Fredo Santana -Yuzuru Hanyu -Black Panther -Chloe Kim -Super Bowl score -Cavs -Blake Griffin -New England Patriots owner -The 15:17 to Paris -Olive Garden -Sergei Eisenstein -UFC 221 -Frank Reich -Dua Lipa -Vikings Vs Eagles -Kesha -Quincy Jones -NBA Trades -Florida shooting -Valentines Day Cards -Super Bowl 2018 -Steve Mcnair -Super Bowl 2018 -Royal Rumble 2018 -Grammys 2018 -Justin Timberlake -Virginia Woolf -Doomsday Clock -Paula Modersohn-Becker -Grammys 2018 -Super blue blood Moon -Mark Salling -Sergei Eisenstein -Tom Brady -Ar 15 -Wilder Penfield -Elizabeth Blackwell -Super Bowl 2018 -Meteor -Trey Gowdy -Alaska earthquake -Justin Timberlake -Government shutdown -Altered Carbon -Wilder Penfield -Justin Timberlake -Mikaela Shiffrin -Sergei Eisenstein -Altered Carbon -Aliona Savchenko -Virginia Woolf -Atlanta Weather -Grammys 2018 -Carter G. Woodson -Julie Ertz -Winter Olympics -Memo -Florida shooting -Paula Modersohn-Becker -Kentucky shooting -Kesha -Trump State of the Union -Super Bowl 2018 -Elizabeth Blackwell -Kodak Black -Super Bowl score -Alex Smith -Virginia Woolf -Patriots -Kylie Jenner -Morgan Freeman -Bitcoin Price -SpaceX -Carter G. Woodson -This Is Us -Royal Rumble 2018 -Super Bowl 2018 -Winter Olympics -What Time Is The Super Bowl -Paul Ryan -Winter Olympics -Adam Rippon -Dow Jones -Super Bowl score -Sarah Barthel -Wilder Penfield -Olympic medal count -Elton John -Justin Timberlake -Pro Bowl 2018 -Highline College -Erykah Badu -Presidents Day 2018 -United States Of America Winter Olympics -Virginia Woolf -Josh McDaniels -The Home Depot -Justin Timberlake -Virginia Woolf -UFC 220 -Joe Kennedy -Virginia Woolf -Vikings Vs Eagles -Release The Memo -Happy Valentines Day -Robby Anderson -Super Bowl score -DeMarcus Cousins -Sergei Eisenstein -UFC 220 -Winter Olympics -Elizabeth Blackwell -Carter G. Woodson -Tom Izzo -Outback Steakhouse -Shaun White -SpaceX -When We First Met -Ar 15 -Winter Olympics -Culture 2 -Winter Olympics -Super Bowl 2018 -school closings -Winter Olympics -Winter Olympics -Edwin Jackson -SpaceX -What Time Is The Super Bowl -Nadal -Oscar Nominations 2018 -Paula Modersohn-Becker -Florida shooting -Blue Moon -Elon Musk -Winchester -Elizabeth Blackwell -NBA Trades -Elizabeth Blackwell -What Time Is The Super Bowl -Ohio State basketball -Dow Jones -Kim Cattrall -Kylie Jenner -Patriots -Kylie Jenner -Grammys 2018 -Grammys 2018 -Valentines Day Images -Larry Nassar -Elizabeth Blackwell -NBA Trades -What Time Is The Super Bowl -Tyler Hilinski -Mikaela Shiffrin -Patriots -AR-15 -Groundhog Day 2018 -Justin Timberlake -Patriots -Virginia Woolf -Den of Thieves -What Time Is The Super Bowl -Cryptocurrency News -Wilder Penfield -Patriots -Carter G. Woodson -Virginia Woolf -Paula Modersohn-Becker -Carter G. Woodson -Government Shutdown -Matt Patricia -Adam Rippon -Hillary Clinton -Wilder Penfield -Virginia Woolf -Dwyane Wade -Olympic medal count -Rasual Butler -Super Bowl Winners -UFC 220 -Wilder Penfield -Happy Valentines Day -Super Bowl score -Paula Modersohn-Becker -Memo -Chloe Kim -Kim Kardashian -Government shutdown 2018 -Winter Olympics -SAG Awards 2018 -SpaceX -Winter Olympics -Justin Timberlake -Elizabeth Blackwell -Winter Olympics -Shaun White -Wilder Penfield -Rampage -Obama portrait -Patriots -Super Bowl 2018 -Winter Olympics -Kylie Jenner -Super Bowl 2018 -Winter Olympics -Elizabeth Blackwell -Elizabeth Blackwell -Paula Modersohn-Becker -Super Bowl 2018 -Carter G. Woodson -Alex Smith -Government Shutdown -Winter Olympics -Winter Olympics -SpaceX -Sergei Eisenstein -Winter Olympics -Edwin Jackson -Elizabeth Blackwell -Paula Modersohn-Becker -Reg E Cathey -Super Bowl score -Grammys 2018 -Super blue blood Moon -Edwin Jackson -Grammys 2018 -Patriots -Chicago West -Chloe Kim -Jimmy Kimmel -Carter G. Woodson -Government Shutdown -Patriots -Elizabeth Blackwell -Sergei Eisenstein -Alexander Polinsky -Mark Salling -Black Panther -Friends movie -Trump State of the Union -Wilder Penfield -Elizabeth Blackwell -Rodney Hood -Paula Modersohn-Becker -Florida shooting -Dow Jones -Kylie Jenner -Florida shooting -Chicago West -Paula Modersohn-Becker -Joe Kennedy -Paula Modersohn-Becker -Paula Modersohn-Becker -Winter Olympics -Robert Wagner -Shaun White -Joshua Cooper Ramo -Dow Jones -Google Classroom -Edwin Jackson -school closings -What Time Is The Super Bowl -Elizabeth Blackwell -Rasual Butler -SAG Awards 2018 -Kentucky shooting -Winter Olympics -Dow Jones -Vikings vs Eagles -Wilder Penfield -Government Shutdown -Patriots -Mikaela Shiffrin -Wilder Penfield -Quincy Jones -CNN -Amazon HQ2 -Lunar eclipse -Stock Market Crash Today -Celtics -Virginia Woolf -Vikings Vs Eagles -NBA Trades -Wonder Woman -Trump State of the Union -Patriots -Adam Rippon -Dow Jones -Government Shutdown -Robinhood -What Time Is The Super Bowl -Sergei Eisenstein -Elizabeth Blackwell -Evgenia Medvedeva -Elizabeth Blackwell -Carter G. Woodson -Vikings vs Eagles -Enzo Amore -Steve Mcnair -Sergei Eisenstein -Paula Modersohn-Becker -Timor Leste -CBS Sports -What Time Is The Super Bowl -Kylie Jenner -Paula Modersohn-Becker -Tonga -Classroom -Patriots -Florida shooting -Winter Olympics -Paula Modersohn-Becker -Kodak Black -Dog Food Recall -Patriots -SAG Awards 2018 -Virginia Woolf -Super Blue Blood Moon -Carter G. Woodson -Nintendo Labo -Bitcoin Price -Virginia Woolf -Winter Olympics -Chloe Kim -This Is Us -Super Bowl score -calculator -Bill Belichick -Chicago West -Justin Timberlake -Shaun White -Jessica Chastain -Kentucky shooting -Virginia Woolf -Groundhog Day 2018 -Larry Nassar -Sergei Eisenstein -Super Bowl 2018 -lady gaga grammys -Sergei Eisenstein -Ronaldinho -Elizabeth Blackwell -Grammys 2018 -calculator -Steve Wynn -curling -Super Bowl score -What Time Is The Super Bowl -Virginia Woolf -Kylie Jenner -Rasual Butler -Champions League -Lee Miglin -Virginia Woolf -Houston Rockets -NFC Championship Game 2018 -Government Shutdown Meaning -Lindsey Vonn -Government Shutdown Meaning -Larry Nassar -Virginia Woolf -SpaceX -Super Bowl 2018 -SpaceX -Grammys 2018 -Patriots -Walter Payton -Wilder Penfield -Uma Thurman -Super Bowl score -Camila Cabello -Sergei Eisenstein -Super Bowl Commercials 2018 -SpaceX -Oscar Nominations 2018 -Super Bowl 2018 -Carter G. Woodson -Winter Olympics -Patriots -Kylie Jenner -SpaceX -SpaceX -Mardi Gras 2018 -stock market -JUUL -Kim Kardashian -Classroom -Grammys 2018 -CNN -Virginia Woolf -Winter Olympics -Florida shooting -Royal Rumble 2018 -State of the Union -Trump State of the Union -Carter G. Woodson -Patriots -Grammys 2018 -Justin Timberlake -Elizabeth Blackwell -Valentines Day Memes -Government Shutdown -This Is Us -Winter Olympics -Steven Tyler -Elizabeth Blackwell -Tyler Hilinski -Carter G. Woodson -Elon Musk -School Closings -What Time Is The Super Bowl -Fredo Santana -Obama portrait -Jennifer Aniston -Heath Ledger -Grammys 2018 -Women's March 2018 -Virginia Woolf -Robert Wagner -Groundhog Day 2018 -Groundhog Day 2018 -Grammys 2018 -Elizabeth Blackwell -Memo -State of the Union -State of the Union -Sergei Eisenstein -Patriots -Chinese New Year 2018 -Paula Modersohn-Becker -Super Bowl 2018 -Lady Doritos -Super Bowl Commercials 2018 -Johnny Weir -Grammys 2018 -AFC Championship Game 2018 -Grammys 2018 -Elizabeth Blackwell -Government Shutdown -Virginia Woolf -Mary And The Witch's Flower -Florida shooting -Grammys 2018 -Oscar Nominations 2018 -Winter Olympics -Government shutdown 2018 -Winter Olympics -Taiwan Earthquake Today -Carter G. Woodson -School closings -SpaceX -Pro Bowl 2018 -Kim Kardashian -Patriots -Groundhog Day 2018 -Blake Griffin -Vikings Vs Eagles -Super Blue Blood Moon -This Is Us -Super Bowl Commercials -Morgan Freeman -Government Shutdown -Sal Castro Middle School -Virginia Woolf -Winter Olympics -Wilder Penfield -Dow Jones -Doomsday Clock -Groundhog Day 2018 -Louise Linton -Larry Nassar -Patriots -Sergei Eisenstein -Government Shutdown -February -Virginia Woolf -Winter Olympics -Dwyane Wade -stock market -Groundhog Day 2018 -Winter Olympics -Kylie Jenner -Daryle Singletary -Wilder Penfield -Virginia Woolf -Dwyane Wade -Olympic Medal Count -Deadpool 2 -Patriots -Kylie Jenner -Mardi Gras 2018 -UFC 220 -Super Bowl 2018 -Brynn Cameron -What Time Is The Super Bowl -Virginia Woolf -tsunami -Gods Plan -Westerville Ohio -Super Bowl 2018 -AFC Championship Game 2018 -Wilder Penfield -Elizabeth Blackwell -Valentines Day -Super Bowl score -Fredo Santana -Trey Gowdy -Sergei Eisenstein -Florida shooting -Chris Mazdzer -Joe Kennedy -This Is Us -Super Bowl 2018 -Super Bowl score -Mexico Vs Bosnia -Wilder Penfield -Dwyane Wade -What Time Is The Super Bowl -All Star Weekend 2018 -Winter Olympics -Pro Bowl 2018 -Altered Carbon -Virginia Woolf -Carter G. Woodson -Rodney Hood -Isaiah Thomas -Cavs -Mark Salling -Rob Porter -Robert Mueller -Larry Nassar -School closings -School Closings -What Time Is The Super Bowl -Shaun White -Elizabeth Blackwell -Black Panther -Bitcoin Price -Carter G. Woodson -Justin Timberlake -Winter Olympics -Chris Stapleton -Happy Valentines Day -Super Bowl score -Dow Jones industrial average -Florida shooting -Wilder Penfield -Den of Thieves -Blake Griffin -Chloe Kim Snowboarder -Dow Jones -Carter G. Woodson -Larry Nassar -Mark Salling -12 Strong -Virginia Woolf -Super Bowl score -Chris Mazdzer -Emily Sweeney -Sergei Eisenstein -Larry Nassar -Alex Smith -Adam Rippon -Super Bowl score -Government Shutdown -Super Bowl 2018 -Carter G. Woodson -Alaska earthquake -Carter G. Woodson -Wilder Penfield -Groundhog Day 2018 -stock market -Aaron Feis -Wilder Penfield -Patriots -Chinese New Year 2018 -Winter Olympics -Cloverfield Paradox -Super Bowl score -Danielle Herrington -Justin Timberlake -State of the Union -Grammys 2018 -Nancy Pelosi -Kylie Jenner -What Time Is The Super Bowl -Happy Valentines Day -Sergei Eisenstein -Fredo Santana -Wilder Penfield -Reg E Cathey -Den of Thieves -Chinese New Year 2018 -SAG Awards 2018 -Patriots -Happy Valentines Day -Olympic Medal Count -Blood Moon -Virginia Woolf -Winter Olympics -Chloe Kim -New California -Virginia Woolf -Quincy Jones -Zion Williamson -Government Shutdown -Grammys 2018 -Winter Olympics -Super Bowl score -Virginia Woolf -Florida shooting -United States Postal Service -Sergei Eisenstein -Wilder Penfield -Patriots -Paula Modersohn-Becker -Elizabeth Blackwell -Phantom Thread -Forever My Girl -Paula Modersohn-Becker -Wilder Penfield -National Pizza Day -Rasual Butler -Super Bowl 2018 -Elizabeth Blackwell -LeBron James -Tom Brady -Google Classroom -Government shutdown 2018 -Government Shutdown -Winter Olympics -Super Bowl 2018 -Florida shooting -Elton John -Joe Kennedy -Winter Olympics -Kentucky shooting -Football Playoffs 2018 -Carter G. Woodson -Oscar Nominations 2018 -Justin Timberlake -Paula Modersohn-Becker -Winter Olympics -Super Bowl score -Solo Trailer -Patriots -Black Panther -NBA Trades -Vikings vs Eagles -Bitcoin Price -Carter G. Woodson -Super Bowl 2018 -Florida shooting -This Is Us -Sergei Eisenstein -New California -Meteor -Carter G. Woodson -The 15:17 to Paris -What Time Is The Super Bowl -Kylie Jenner -Elizabeth Blackwell -XFL -Memo -Sergei Eisenstein -Government Shutdown -Wilder Penfield -Nintendo Labo -Celtics -Elizabeth Blackwell -Cedi Osman -Oscar Nominations 2018 -Chinese New Year 2018 -Memo -Olympic medal count -Mike Fisher -Tom Petty -Elizabeth Blackwell -Mikaela Shiffrin -Patriots -Government Shutdown -Solo Trailer -Super Bowl score -Florida shooting -Don Lemon -February -Paula Modersohn-Becker -SpaceX -SZA -LL Bean -Costco Wholesale -Ursula Le Guin -Grammys 2018 -Justin Timberlake -Virginia Woolf -Mike Vrabel -Super Bowl 2018 -Sergei Eisenstein -OKC Thunder -Ellen DeGeneres -Simona Halep -Elizabeth Blackwell -Quincy Jones -Patriots -SpaceX -Alaska earthquake -This Is Us -Mark Salling -Manchester United -Super Bowl score -Super Bowl 2018 -Sandy Hook -PlayStation Network -Justin Timberlake -Kelsey Grammer -Super Bowl score -Larry Nassar -Chris Stapleton -Kylie Jenner -Super Bowl Commercials 2018 -Yoel Romero -Larry Nassar -Super blue blood Moon -Google Drive -Carter G. Woodson -Vikings Vs Eagles -Grammys 2018 -Patriots -Virginia Woolf -Grammys 2018 -Cherry Seaborn -Paula Modersohn-Becker -SpaceX -Grammys 2018 -Quincy Jones -Google Classroom -NBA Trades -SAG Awards 2018 -Kylie Jenner -Justin Timberlake -Super Bowl 2018 -Elizabeth Blackwell -Sergei Eisenstein -Sergei Eisenstein -The Home Depot -Paula Modersohn-Becker -Chief Wahoo -Government Shutdown -Shaun White -Paula Modersohn-Becker -Fifty Shades Freed -Chipper Jones -Justin Timberlake -Sergei Eisenstein -NHL All Star Game -Paula Modersohn-Becker -Olympic medal count -UFC 220 -Virginia Woolf -Sergei Eisenstein -Jemele Hill -Paula Modersohn-Becker -Florida shooting -Chloe Kim -Carter G. Woodson -Florida shooting -Chicago West -Vanessa Marcil -Patriots -Carter G. Woodson -Rodney Hood -Kratom -Justin Timberlake -Sergei Eisenstein -Winter Olympics -Dwyane Wade -Yu Darvish -Virginia Woolf -SAG Awards 2018 -Phantom Thread -Grammys 2018 -Florida shooting -Mark Salling -Super Bowl score -Carter G. Woodson -Super Bowl 2018 -Duke basketball -Dolly Parton -pissant -Carter G. Woodson -Oscar Nominations 2018 -Super Bowl score -Daytona 500 -Elizabeth Blackwell -Oscar Nominations 2018 -Justin Timberlake -Florida shooting -Happy Valentines Day -SZA -Kim Kardashian -Wilder Penfield -Oscar Nominations 2018 -Johnny Weir -Elizabeth Blackwell -Sergei Eisenstein -Rasual Butler -Virginia Woolf -Nintendo Labo -Oscar Nominations 2018 -Altered Carbon -Gods Plan -Mark Salling -Patriots -Omarosa -Virginia Woolf -12 Strong -Super blue blood Moon -Carter G. Woodson -Rodney Hood -Netflix Stock -Olympic medal count -UFC 220 -Super Bowl 2018 -Mark Salling -Florida shooting -Wilder Penfield -Royal Rumble 2018 -Government shutdown 2018 -Adam Rippon -Happy Valentines Day -Childish Gambino -Alaska earthquake -Lindsey Vonn -Florida shooting -Grammys 2018 -Fredo Santana -Patriots -Johnny Weir -Super Bowl 2018 -Elizabeth Blackwell -This Is Us -Doomsday Clock -Larry Nassar -Justin Timberlake -Winter Olympics -Black Lightning -Meteor -Google Classroom -Government Shutdown -Sergei Eisenstein -Super Bowl score -Juventus -Kesha -Kesha Grammy -Kim Kardashian -Purdue basketball -Virginia Woolf -NBC Sports -Dennis Edwards -Altered Carbon -Patriots -Virginia Woolf -Patriots -Carter G. Woodson -Alison Brie -Brynn Cameron -Super Bowl score -Shaun White -Government Shutdown -SpaceX -Sergei Eisenstein -Virginia Woolf -Wilder Penfield -Dow Jones -Florida shooting -NBA Trades -Winter Olympics -SZA -Russell Wilson -Danielle Herrington -Wilder Penfield -Patriots -Paula Modersohn-Becker -Ash Wednesday -Blake Griffin -Wilder Penfield -Paula Modersohn-Becker -The 15:17 to Paris -Omarosa -Super Bowl 2018 -State of the Union -Elizabeth Blackwell -Tom Petty -Hailee Steinfeld -Government Shutdown Meaning -Heath Ledger -Virginia Woolf -Jeff Flake -Tyler Hilinski -CNN -Kylie Jenner -Cloverfield Paradox -Phantom Thread -Peter Rabbit -Super Bowl score -Paula Modersohn-Becker -Puppy Bowl 2018 -Lorenzo Cain -Super Bowl 2018 -Prince William -Virginia Woolf -tsunami -Groundhog Day 2018 -Isaiah Thomas -State of the Union -Larry Nassar -Puppy Bowl 2018 -Grammys 2018 -Joe Kennedy -Super Bowl 2018 -Wonder Woman -Super Bowl 2018 -Florida shooting -Elizabeth Blackwell -Dwyane Wade -What Time Is The Super Bowl -Virginia Woolf -What Time Is The Super Bowl -Daniel Kaluuya -Justin Timberlake -Super Bowl score -What Time Is The Super Bowl -Winchester -Winter Olympics -Grammys 2018 -Paula Modersohn-Becker -Rasual Butler -Larry Nassar -Carter G. Woodson -Tom Brady -Virginia Woolf -Cherry Seaborn -SpaceX -Kevin Durant -Elizabeth Blackwell -John Mahoney -Super Bowl score -Carter G. Woodson -school closings -Chinese New Year 2018 -Super Blue Blood Moon -Harley Barber -Kylie Jenner -Carter G. Woodson -Florida shooting -Paula Modersohn-Becker -Wilder Penfield -Dwyane Wade -Wilder Penfield -Julie Ertz -Patriots -Super Bowl 2018 -Andrew McCabe -Solo Trailer -Larry Nassar -What Time Is The Super Bowl -Classroom -Friends movie -Google Classroom -Florida shooting -Carter G. Woodson -Winter Olympics -Greg Monroe -Sergei Eisenstein -Nba All Star Draft -school closings -Elizabeth Blackwell -Happy Valentines Day -earthquake today -SpaceX -Super Bowl 2018 -Trey Gowdy -Anthony Davis -John Mahoney -Carter G. Woodson -Sergei Eisenstein -Winter Olympics -Westminster Dog Show 2018 -Royal Rumble 2018 -Steven Tyler -Bitcoin Price -Kentucky shooting -Virginia Woolf -Paula Modersohn-Becker -School Closings -Bitcoin Price -Government shutdown -Virginia Woolf -Luke Wilson -IXL -Elizabeth Blackwell -State of the Union -Trey Gowdy -Winter Olympics -Chris Mazdzer -Call Me by Your Name -Elizabeth Blackwell -Fredo Santana -Sergei Eisenstein -Government Shutdown 2018 -Cavs -Wilder Penfield -Rasual Butler -Andrew Cunanan -Cherry Seaborn -New England Patriots owner -What Time Is The Super Bowl -Google Drive -Larry Nassar -United States Postal Service -Real Madrid -Sergei Eisenstein -Mark Salling -Outback Steakhouse -Wilder Penfield -Wilder Penfield -Tom Petty -Justin Timberlake -Kylie Jenner -Winter Olympics -Florida shooting -Isaiah Thomas -Wilder Penfield -What Time Is The Super Bowl -Grammys 2018 -Cherry Seaborn -Adam Rippon -Government Shutdown -Winter Olympics -Sergei Eisenstein -Jimmy Garoppolo -Florida shooting -Sergei Eisenstein -luge -Winter Olympics -Alex Smith -Julie Ertz -Winter Olympics -Super Bowl score -Tesla in space -Super Bowl 2018 -Andre the Giant -This Is Us -Did the Groundhog See His Shadow -Winter Olympics -Carter G. Woodson -Winter Olympics -Dwyane Wade -Florida shooting -Bitcoin Price -Ash Wednesday -Bruno Mars -Grammys 2018 -Devin Nunes -Florida shooting -Carter G. Woodson -Black Panther -Tesla in space -Adam Rippon -Nathan Chen -Shibutani -Brie Larson -Joy Villa -Waco -Vikings Vs Eagles -Matt Patricia -Peter Rabbit -Winter Olympics -Justin Timberlake -Sergei Eisenstein -Edwin Jackson -Earthquake Today -Jessica Chastain -Government Shutdown -Patriots -Paula Modersohn-Becker -Childish Gambino -Florida shooting -Olympic medal count -Justin Timberlake -Kelly Clark -Virginia Woolf -Justin Timberlake -Patriots -Justin Timberlake -State of the Union -Florida shooting -Kylie Jenner -Paula Modersohn-Becker -Meteor -Super Bowl 2018 -Paula Modersohn-Becker -Andre the Giant -Fredo Santana -Phantom Thread -Alexander Polinsky -Adam Rippon -Black Panther -Super Bowl score -Florida shooting -Super Bowl score -Pro Bowl 2018 -Cherry Seaborn -Winter Olympics -Mikaela Shiffrin -Patriots -Carter G. Woodson -Super blue blood Moon -State of the Union -Chicago West -Paula Modersohn-Becker -Dow Jones -XFL -Super Bowl score -Super blue blood Moon -Florida shooting -Wilder Penfield -Sergei Eisenstein -Justin Timberlake -State of the Union -Maze Runner: The Death Cure -Super Bowl score -NFC Championship Game 2018 -Kylie Jenner -Patriots -Chipper Jones -Kylie Jenner -Joe Kennedy -Virginia Woolf -calculator -Justin Timberlake -Wilder Penfield -Super Bowl score -All Star Weekend 2018 -Dow Jones -Super Bowl score -Google docs -Shaun White -Super Bowl 2018 -Super Bowl 2018 -Omarosa -Super Bowl 2018 -NBA Trades -Government Shutdown -Virginia Woolf -Super Bowl score -Patriots -Trump State of the Union -Patriots -Super blue blood Moon -Celtics -Super Bowl 2018 -Winter Olympics -Kylie Jenner -Florida shooting -Wilder Penfield -Government Shutdown -Winter Olympics -Patriots -Virginia Woolf -Paula Modersohn-Becker -Elizabeth Blackwell -Cloverfield Paradox -Government Shutdown -Kylie Jenner Baby Girl -Carter G. Woodson -Carter G. Woodson -Cavs -Cryptocurrency News -Florida shooting -Dow Jones -Jennifer Aniston -Elizabeth Blackwell -Amazon stock -Larry Nassar -Obama portrait -Vince McMahon -Isaiah Canaan -Winter Olympics -Did the Groundhog See His Shadow -Winter Olympics -Hostiles -SAG Awards 2018 -SpaceX -Sergei Eisenstein -Wilder Penfield -Jennifer Aniston -Carter G. Woodson -Virginia Woolf -Super Bowl score -Dow Jones -Government Shutdown -Winter Olympics -Groundhog Day 2018 -Paula Modersohn-Becker -Cavs -Winchester -Bitcoin Price -Yuzuru Hanyu -Grammys 2018 -Carter G. Woodson -Groundhog Day 2018 -Adam Rippon -Vikings Vs Eagles -Carter G. Woodson -Carter G. Woodson -Den of Thieves -Paula Modersohn-Becker -What Time Is The Super Bowl -Florida shooting -Obama portrait -Nba All Star Draft -Football Playoffs 2018 -Virginia Woolf -Yahoo Finance -Virginia Woolf -Patriots -Paul Ryan -Kylie Jenner -Super Bowl score -Shaun White -Trump State of the Union -SpaceX -Elizabeth Blackwell -Paula Modersohn-Becker -Peter Rabbit -Happy Valentines Day -Jamie Dornan -Sabrina Dhowre -government shutdown -Hailee Steinfeld -Happy Valentines Day -Cloverfield Paradox -Patriots -Wilder Penfield -Patriots -Florida shooting -Slender Man -Wilder Penfield -Luke Wilson -Caroline Wozniacki -Winter Olympics -Grammys 2018 -Elizabeth Blackwell -Dow Jones -Super Bowl score -Rasual Butler -Paula Modersohn-Becker -Super Bowl 2018 -Danielle Herrington -Wilder Penfield -Sergei Eisenstein -Rob Porter -Elizabeth Blackwell -Patriots -Amy Schumer -Florida shooting -Did the Groundhog See His Shadow -Carter G. Woodson -Cavs -Childish Gambino -Super Bowl score -Super Bowl 2018 -Shaun White -Wilder Penfield -Virginia Woolf -Nba All Star Draft -Jason Kelce -Joe Kennedy -Deadpool 2 -Paula Modersohn-Becker -Jennifer Aniston -Sting -Wilder Penfield -Zion Williamson -Bitcoin Price -Paula Modersohn-Becker -This is Us -SAG Awards 2018 -FC Barcelona -Virginia Woolf -Virginia Woolf -Ohio State basketball -Winter Olympics -Sergei Eisenstein -Highline College -Culture 2 -Vikings vs Eagles -Winter Olympics -Johnny Weir -Winter Olympics -Andrew McCabe -What Time Is The Super Bowl -Elizabeth Blackwell -Patriots -Sergei Eisenstein -State of the Union -Winter Olympics -Ted Bundy -Paula Modersohn-Becker -Elizabeth Blackwell -Shaun White -Black Panther -Justin Timberlake -Vikings Vs Eagles -Super Bowl Commercials 2018 -Puppy Bowl 2018 -Sergei Eisenstein -Super Bowl 2018 -Sergei Eisenstein -Patriots -Real Madrid -Sergei Eisenstein -Wilder Penfield -Sergei Eisenstein -Mr Rogers -Super Bowl 2018 -Naya Rivera -Patriots -Sergei Eisenstein -Valentines Day -Outback Steakhouse -Patriots -Wilder Penfield -Fredo Santana -Google Classroom -calculator -Pink -Shibutani -Winter Olympics -Red Gerard -Chinese New Year 2018 -SpaceX -Wilder Penfield -Virginia Woolf -Super Bowl 2018 -Paula Modersohn-Becker -Wilder Penfield -Women's March 2018 -Virginia Woolf -Olympic Medal Count -Kylie Jenner -Happy Valentines Day -Super Bowl score -United States Of America Winter Olympics -Dow Jones -Sergei Eisenstein -Reg E Cathey -Amazon Stock -Super blue blood Moon -Vikings Vs Eagles -Kylie Jenner -Paula Modersohn-Becker -Happy Valentines Day -Mark Salling -SpaceX -Kylie Jenner -Grammys 2018 -Red Gerard -Sergei Eisenstein -Super Bowl 2018 -Oscar Nominations 2018 -Government Shutdown -Duke Basketball -Super Bowl score -Vikings Vs Eagles -Super Bowl 2018 -Elizabeth Blackwell -Patriots -Carter G. Woodson -Adam Rippon -Ash Wednesday -UFC 220 -Mikaela Shiffrin -Jalen Ramsey -Paula Modersohn-Becker -Justin Timberlake -Shiffrin -Kylie Jenner -United States Of America Winter Olympics -SAG Awards 2018 -Florida shooting -Super blue blood Moon -Tom Petty -Super Bowl 2018 -Super Bowl 2018 -Vikings Vs Eagles -Government Shutdown -Winter Olympics -Devin Nunes -Trey Gowdy -Kim Cattrall -Carter G. Woodson -Shani Davis -Charissa Thompson -Elizabeth Blackwell -Government Shutdown Meaning -Winter Olympics -What Time Is The Super Bowl -Winter Olympics -Larry Nassar -Super Bowl 2018 -Florida shooting -Kylie Jenner -Greg Monroe -Taiwan Earthquake Today -Wilder Penfield -What Time Is The Super Bowl -Sergei Eisenstein -New England Patriots owner -Virginia Woolf -Kylie Jenner -State of the Union -Larry Nassar -Patriots -Winter Olympics -Kentucky shooting -Joel Taylor -New England Patriots owner -Justin Timberlake -Super Bowl 2018 -Johnny Weir -Super Bowl 2017 -Carter G. Woodson -Jennifer Aniston -What Time Is The Super Bowl -Childish Gambino -Aliona Savchenko -Chloe Kim Snowboarder -Carter G. Woodson -Patriots -Winter Olympics -SAG Awards 2018 -CNN -Solo Trailer -Winter Olympics -Real Madrid -Groundhog Day 2018 -Virginia Woolf -Red Gerard -Virginia Woolf -Happy Valentines Day -Kylie Jenner -Steve Wynn -Larry Nassar -Groundhog Day 2018 -Rodney Hood -Mexico earthquake -Super Bowl score -Super Bowl 2018 -What Time Is The Super Bowl -Super Bowl 2018 -Super Bowl score -Tammy Duckworth -Government shutdown 2018 -Government Shutdown -Florida shooting -Paula Modersohn-Becker -Justin Timberlake -National Pizza Day -Kentucky shooting -Mark Salling -Kylie Jenner -Government Shutdown -SpaceX -Snapchat Update -Black Panther -Kim Kardashian -Fredo Santana -Government Shutdown -Zion Williamson -Despacito -Patty Hearst -James Baldwin -Wilder Penfield -Arsenal -Carter G. Woodson -Childish Gambino -Peter Rabbit -What Time Is The Super Bowl -XFL -Mark Salling -James Maslow -Wilder Penfield -Florida shooting -Hope Hicks -Florida shooting -SpaceX -Black Panther -Evgenia Medvedeva -Vikings Vs Eagles -Patti LuPone -Dow Jones -Rasual Butler -Adam Rippon -Tyler Hilinski -National Pizza Day -Florida shooting -Elizabeth Blackwell -Elton John tickets -What Time Is The Super Bowl -Paula Modersohn-Becker -stock market -Patriots -Kylie Jenner -Justin Timberlake -Carter G. Woodson -Kristaps Porzingis -Mark Salling -Super blue blood Moon -What Time Is The Super Bowl -Riverdale -Mark Salling -Rasual Butler -Patriots -Elizabeth Blackwell -Elizabeth Blackwell -Government Shutdown Meaning -Luke Wilson -Kentucky shooting -National Pizza Day -What Time Is The Super Bowl -Paula Modersohn-Becker -Tessa Virtue -Paula Modersohn-Becker -Emily Sweeney -Super Bowl 2018 -Government Shutdown -Tessa Virtue -Google docs -Valentines Day Memes -Government shutdown -Patriots -Jemele Hill -Super Bowl 2018 -Gigi Hadid -SpaceX -Florida shooting -Super Bowl score -Carter G. Woodson -Lady Bird -Tesla in space -shutdown -Grammys 2018 -Super Bowl score -Winter Olympics -Winter Olympics -Tiger Woods -Sergei Eisenstein -Paula Modersohn-Becker -Wilder Penfield -Lakers -What Time Is The Super Bowl -Winter Olympics -Justin Timberlake -UFC 220 -earthquake -Larry Nassar -Incredibles 2 -Patriots -Patriots -Obama portrait -Jamie Anderson -Den of Thieves -Berkshire Hathaway -Kylie Jenner -SpaceX -Grammys 2018 -Wilder Penfield -This Is Us -Super Blue Blood Moon -Sergei Eisenstein -Pro Bowl 2018 -Patriots -Justin Timberlake -CNN -Real Madrid -NFL Honors -Marlon Brando -Shaun White -Justin Timberlake -Sergei Eisenstein -Patriots -Olympic medal count -Virginia Woolf -Government Shutdown -UFC 220 -Sergei Eisenstein -Den of Thieves -What Time Is The Super Bowl -Bitcoin Price -Zion Williamson -Super Bowl 2018 -Virginia Woolf -school closings -Google Classroom -Super Bowl score -Bitcoin Price -Sergei Eisenstein -Peter Rabbit -Red Gerard -Will Ferrell -Kate Upton -Aaron Fies -Florida shooting -Valentines Day Cards -Super Bowl score -Vikings vs Eagles -Carter G. Woodson -Grammys 2018 -Winter Olympics -Solo Trailer -Wilder Penfield -Red Gerard -Hostiles Movie -Grammys 2018 -Ellen Pompeo -Hostiles -Kylie Jenner -Chloe Kim -Shaun White -Government shutdown -Shaun White -Kylie Jenner -Dwyane Wade -SZA -The Home Depot -What Time Is The Super Bowl -Halsey -AR-15 -Puppy Bowl 2018 -Blake Griffin -Shaun White -Sergei Eisenstein -Blake Griffin Trade -Government Shutdown -Carter G. Woodson -Dow Jones -Andrew Cunanan -Google docs -Waco -Grammys 2018 -State of the Union -Groundhog Day 2018 -Government Shutdown -Adam Rippon -Carter G. Woodson -SpaceX -Dow Jones -Sergei Eisenstein -Patriots -Virginia Woolf -Valentines Day Cards -Yura Min -Tammy Duckworth -Super Bowl 2018 -Super Bowl 2018 -Jemele Hill -Dow Jones industrial average -Justin Timberlake -Super blue blood Moon -What Time Is The Super Bowl -Carter G. Woodson -SpaceX -Shaun White -Super Bowl score -Virginia Woolf -Florida shooting -Nadal -Wilder Penfield -SAG Awards 2018 -Carter G. Woodson -Happy Valentines Day -Carter G. Woodson -Fredo Santana -Government shutdown 2018 -Vikings Vs Eagles -school closings -Super Bowl score -Super Bowl score -Kylie Jenner -Kylie Jenner -Kylie Jenner -Kesha -Esteban Loaiza -Tiger Woods -Government shutdown 2018 -Super Bowl 2018 -Trey Gowdy -NBA Trades -Did the Groundhog See His Shadow -Malcom Butler -Patriots -Wilder Penfield -Larry Nassar -Sergei Eisenstein -Eli Manning -Kylie Jenner -Kodak Black -Justin Timberlake -Quincy Jones -SpaceX -Release The Memo -Tom Izzo -Memo -Forever My Girl -Virginia Woolf -Shani Davis -Brynn Cameron -Super Bowl score -Super Bowl score -Super Bowl Commercials 2018 -Luke Wilson -Sergei Eisenstein -SAG Awards 2018 -Super Bowl 2018 -Lil Xan -Sammy Sosa -Kylie Jenner -Elizabeth Blackwell -Super Bowl 2018 -Morgan Freeman -Wilder Penfield -Virginia Woolf -Kylie Jenner -Grammys 2018 -SAG Awards 2018 -Frederick Douglass -Paula Modersohn-Becker -Paula Modersohn-Becker -Cory Booker -Florida shooting -Toys R Us -Grammys 2018 -Terrell Owens -12 Strong -Vikings Vs Eagles -Google Classroom -Oscar Nominations 2018 -Outback Steakhouse -Despacito -Shaun White -Dwyane Wade -Patriots -Justin Timberlake -Winter Olympics -Justin Timberlake -Friends The Movie 2018 -Memo -Oscar Nominations 2018 -Elizabeth Blackwell -Elizabeth Blackwell -Justin Timberlake -SpaceX -Tom Petty -Paula Modersohn-Becker -Dow Jones -Government Shutdown -Super Bowl score -Government Shutdown -Winter Olympics -Sergei Eisenstein -Jemele Hill -Dennis Edwards -Government shutdown -Ash Wednesday -This Is Us -Alex Smith -Grammys 2018 -Netflix Stock -Patriots -Virginia Woolf -Dow Jones -Justin Timberlake -Florida shooting -Rasual Butler -Oscar Nominations 2018 -Grammys 2018 -What Time Is The Super Bowl -Dow Jones -Sergei Eisenstein -Government Shutdown 2018 -This Is Us -Rasual Butler -Shaun White -Florida shooting -Cbs -Wilder Penfield -Edible Arrangements -Super blue blood Moon -Alaska earthquake -Paula Modersohn-Becker -SpaceX -SpaceX -Super Bowl 2018 -Carter G. Woodson -Sergei Eisenstein -Wilder Penfield -Florida shooting -Florida shooting -XFL -Elton John -Elizabeth Blackwell -Bitcoin Price -Carter G. Woodson -Larry Nassar -Den of Thieves -Grammys 2018 -Government Shutdown Meaning -Super Bowl 2018 -SpaceX -Childish Gambino -Sergei Eisenstein -Patriots -Wilder Penfield -Waco -stock market -Patriots -Patriots -Oscar Nominations 2018 -Luke Wilson -Florida shooting -Megan Barry -Super blue blood Moon -Google Classroom -Kylie Jenner -Virginia Woolf -Wilder Penfield -Royal Rumble 2018 -Carter G. Woodson -Paula Modersohn-Becker -Patriots -Sergei Eisenstein -Sergei Eisenstein -Paula Modersohn-Becker -LeBron James -Sergei Eisenstein -Super Bowl 2018 -Cavs -Emily Sweeney -Government Shutdown -SpaceX -Elizabeth Blackwell -Virginia Woolf -Larry Nassar -Carter G. Woodson -Paula Modersohn-Becker -Korea -Kylie Jenner -United States Of America Winter Olympics -Adam Rippon -Virginia Woolf -Luke Wilson -Mark Salling -Paula Modersohn-Becker -Carter G. Woodson -Kentucky shooting -Carter G. Woodson -Government Shutdown -Government Shutdown -Yahoo Finance -Paula Modersohn-Becker -Aaliyah -Dwyane Wade -The Alienist -Florida shooting -What Time Is The Super Bowl -Vikings Vs Eagles -Mark Salling -Culture 2 -Super Bowl score -United States Postal Service -UFC 220 -Kylie Jenner -Zion Williamson -NSA -Patriots -SpaceX -Government Shutdown -Vikings Vs Eagles -Super Bowl score -Super Bowl Commercials 2018 -Government shutdown -Sergei Eisenstein -Elizabeth Blackwell -Florida shooting -tsunami -Trump State of the Union -Super Bowl 2018 -Bode Miller -Virginia Woolf -Virginia Woolf -Rodney Hood -Farmers Insurance Open 2018 -Carter G. Woodson -Apple stock -Otto Warmbier -Winchester -Elizabeth Blackwell -Alex Smith -Solo Trailer -Alessia Cara -Mardi Gras 2018 -Super blue blood Moon -Roger Federer -Mark Salling -Kentucky shooting -Justin Timberlake -Josh McDaniels -Winter Olympics -State of the Union -Government Shutdown 2018 -UFC 220 -What Time Is The Super Bowl -Paula Modersohn-Becker -Winter Olympics -Carter G. Woodson -Jessica Chastain -Florida shooting -Winter Olympics -Ncaa Basketball Top 25 -Elon Musk -Elizabeth Blackwell -Kentucky shooting -Hope Hicks -Florida shooting -Jennifer Aniston -Sal Castro Middle School -Jennifer Aniston -Florida shooting -Vikings Vs Eagles -Bitcoin Price -Super Bowl score -Government shutdown -James Harden -Wilder Penfield -Florida shooting -Carter G. Woodson -Jamie Anderson -Florida shooting -Larry Nassar -Winter Olympics -Paula Modersohn-Becker -Black Panther -Trump State of the Union -Tammy Duckworth -Jessica Chastain -Larry Nassar -Zion Williamson -Costco Wholesale -Memo -Virginia Woolf -Carter G. Woodson -Patriots -Wilder Penfield -Meteor -Montreal Cognitive Assessment -Wilder Penfield -Dwyane Wade -Patriots -Shaun White -Alaska earthquake -Blake Griffin -Google Drive -Lindsey Vonn -Kim Cattrall -CNN -Otto Warmbier -Puppy Bowl 2018 -Royal Rumble 2018 -Tyler Hilinski -What Time Is The Super Bowl -Adam Rippon -Cloverfield Paradox -Kylie Jenner -Olympic Medal Count -What Time Is The Super Bowl -Winter Olympics -Valentines Day -Celtics -Wilder Penfield -Elizabeth Blackwell -Alex Reimer -Taiwan Earthquake Today -Robert Mueller -Justin Timberlake -Pro Bowl 2018 -School Closings -Pro Bowl 2018 -12 Strong -Patriots -Cherry Seaborn -Justin Timberlake -AFC Championship Game 2018 -Carter G. Woodson -luge -What Time Is The Super Bowl -Paula Modersohn-Becker -What Time Is The Super Bowl -Larry Nassar -Paula Modersohn-Becker -Malcom Butler -Virginia Woolf -Chipper Jones -Carter G. Woodson -Carter G. Woodson -Puppy Bowl 2018 -Winter Olympics -Paula Modersohn-Becker -Carter G. Woodson -Tammy Duckworth -Virginia Woolf -Government Shutdown -Carter G. Woodson -Virginia Woolf -Super Bowl score -Larry Nassar -Carter G. Woodson -Adam Rippon -Blue Ivy -Kylie Jenner -Elizabeth Blackwell -Johnny Weir -Kylie Jenner -Elizabeth Blackwell -Amy Schumer -Carter G. Woodson -Shaun White -Black Panther -Virginia Woolf -Super Bowl score -United States Postal Service -Robinhood -Vikings vs Eagles -Super Bowl 2018 halftime show -Florida shooting -Winter Olympics -Florida shooting -Government Shutdown -Sergei Eisenstein -Jason Kidd -Sergei Eisenstein -Elizabeth Blackwell -Gregory Salcido -Elton John -Grammys 2018 -Patti LuPone -SpaceX -Blake Griffin -XFL -Super Bowl score -Kesha -Alexa Commercial -Carter G. Woodson -Wilder Penfield -Google docs -Amy Schumer -Ash Wednesday -Florida shooting -Johnny Weir -Andrew McCabe -Valentines Day -Eli Manning -Amy Schumer -NBA Trades -Bill Paxton -Rose McGowan -Carter G. Woodson -Winter Olympics -Carter G. Woodson -Black Panther -Wilder Penfield -Super Bowl 2018 -Bitcoin Price -Google Classroom -Paula Modersohn-Becker -NHL All Star Game -Tesla in space -Justin Timberlake -Wilder Penfield -Happy Valentines Day -Scott Baio -New England Patriots owner -Virginia Woolf -Pro Bowl 2018 -Carter G. Woodson -Super Bowl 2018 -Megan Barry -Terrell Owens -Grammys 2018 -Government Shutdown -Real Madrid -Cloverfield Paradox -Sergei Eisenstein -Ash Wednesday -Lindsey Vonn -Fredo Santana -Florida shooting -Yu Darvish -Justin Timberlake -Terrell Owens -Florida shooting -Virginia Woolf -Women's March 2018 -Virginia Woolf -Caroline Wozniacki -Justin Timberlake -Patriots -Groundhog Day 2018 -Paula Modersohn-Becker -Government Shutdown -Fortnite New Map -Kylie Jenner -Carter G. Woodson -Kylie Jenner -Groundhog Day 2018 -Justin Timberlake -Super Bowl score -Eli Manning -Elizabeth Blackwell -State of the Union -shutdown -Super Bowl score -Ann Curry -Paula Modersohn-Becker -Paula Modersohn-Becker -Wilder Penfield -Adam Rippon -Winter Olympics -Super Bowl 2018 -Justin Timberlake -Government Shutdown -Grammys 2018 -Quincy Jones -Trey Gowdy -calculator -Chicago Weather -Vikings Vs Eagles -Government Shutdown -Super Bowl score -Lindsey Vonn -Carter G. Woodson -Super Bowl 2018 -Carter G. Woodson -Friends The Movie 2018 -SAG Awards 2018 -Super Bowl score -Patriots -Justin Timberlake -Shaun White -Trump State of the Union -Virginia Woolf -Sergei Eisenstein -Tonga -Justin Timberlake -Eli Manning -Culture 2 -Oscar Nominations 2018 -Venom -Nathan Chen -Elizabeth Blackwell -Memo -Patriots -Super Blue Blood Moon -Kawhi Leonard -James Baldwin -Virginia Woolf -Elton John -Elizabeth Blackwell -Paula Modersohn-Becker -Super Bowl 2018 -Quincy Jones -Winter Olympics -Paula Modersohn-Becker -Winter Olympics -Cory Booker -Jeff Flake -NBA Trades -Florida shooting -Jennifer Aniston -Elizabeth Blackwell -Larry Nassar -Pro Bowl 2018 -Snapchat Update -What Time Is The Super Bowl -Den of Thieves -Paula Modersohn-Becker -DeMarcus Cousins -Patriots -Paula Modersohn-Becker -Virginia Woolf -Mardi Gras 2018 -Mexico -Grammys 2018 -Sergei Eisenstein -Sergei Eisenstein -Joe Kennedy -Alaska earthquake -Ohio State basketball -Blake Griffin Trade -Patriots -Olympic Medal Count -Super Bowl 2018 -UFC 220 -Florida shooting -Wilder Penfield -Tom Izzo -H&r Block -Bitcoin Price -Pro Bowl 2018 -Obama portrait -Paula Modersohn-Becker -Kylie Jenner -United States Of America Winter Olympics -Grammys 2018 -Super Bowl Commercials 2018 -Chloe Kim -Virginia Woolf -Kentucky shooting -Did the Groundhog See His Shadow -Will Ferrell -Super blue blood Moon -Elizabeth Blackwell -Winter Olympics -New England Patriots owner -Government shutdown -Valentines Day Cards -Tsunami Warning -Super Bowl 2018 -Ar 15 -Elizabeth Blackwell -Chinese New Year 2018 -Florida shooting -Obama portrait -Carter G. Woodson -Eli Manning -Patriots -Happy Valentines Day -Dow Jones -Olympics 2018 -Winter Olympics -Super Bowl score -Florida shooting -Groundhog Day 2018 -Adam Rippon -Russell Wilson -Super Bowl score -Zion Williamson -Justin Timberlake -Virginia Woolf -Super Bowl 2018 -Carter G. Woodson -Lindsey Vonn -Paula Modersohn-Becker -Chinese New Year 2018 -Black Panther -Sergei Eisenstein -Carter G. Woodson -Justin Timberlake -Cloverfield Paradox -Justin Timberlake -Alessia Cara -Oscar Nominations 2018 -Dwyane Wade -Virginia Woolf -Anastasia Bryzgalova -Kesha Grammy -Sal Castro Middle School -SpaceX -Black Panther -Super Bowl 2018 -Super Bowl score -Super Bowl Commercials 2018 -SpaceX -Florida shooting -Government Shutdown -Super Bowl score -Steven Tyler -Pro Bowl 2018 -Shaun White -Kylie Jenner Baby Girl -Elizabeth Blackwell -Wilder Penfield -Jason Momoa -Eli Manning -Justin Timberlake -Patriots -Carter G. Woodson -Pro Bowl 2018 -Super Bowl score -Jessica Chastain -Andrew Cunanan -Groundhog Day 2018 -Sergei Eisenstein -SpaceX -fake news awards -Super Bowl score -Omarosa -Dane Cook -Justin Timberlake -Mike Vrabel -Mark Salling -What Time Is The Super Bowl -Paula Modersohn-Becker -Neil Diamond -Sergei Eisenstein -Super Bowl 2018 -Super Bowl 2018 -Google Classroom -Super Bowl 2018 -Elizabeth Blackwell -Wilder Penfield -Princess Eugenie -Winter Olympics -Winter Olympics -NBA Trades -What Time Is The Super Bowl -Vikings vs Eagles -Kylie Jenner -Dow Jones -Larry Nassar -Justin Timberlake -Winter Olympics -Kylie Jenner Baby Girl -Memo -Chloe Kim -Sergei Eisenstein -Jennifer Aniston -Patriots -Super Bowl 2018 -Bitcoin Price -Dwyane Wade -Elizabeth Blackwell -Paula Modersohn-Becker -Jeremy London -Justin Timberlake -Florida shooting -Elizabeth Blackwell -Super Bowl 2018 -Carter G. Woodson -Solo Trailer -Trump State of the Union -Bob Dole -Grammys 2018 -Virginia Woolf -Larry Nassar -Carter G. Woodson -Larry Nassar -Florida shooting -Black Panther -Chinese New Year 2018 -Wilder Penfield -Terrell Owens -SAG Awards 2018 -Sergei Eisenstein -Super Bowl score -Rihanna -Carter G. Woodson -Olympic Medal Count -Uma Thurman -Houston Rockets -Blake Griffin -Florida shooting -Jemele Hill -Oscar Nominations 2018 -Yu Darvish -Childish Gambino -Vikings Vs Eagles -Wilder Penfield -Elizabeth Blackwell -Real Madrid -Wilder Penfield -Google Classroom -Rasual Butler -Mark Salling -Megan Barry -Super Bowl score -Google Drive -What Time Is The Super Bowl -Larry Nassar -Cavs -Justin Timberlake -Super Bowl score -Super Bowl score -Sergei Eisenstein -Blake Griffin -Neil Diamond -Mardi Gras 2018 -New California -Patriots -Elizabeth Blackwell -Winter Olympics -Gods Plan -Super Bowl 2018 -Trump State of the Union -Grammys 2018 -calculator -Sergei Eisenstein -Florida shooting -Eli Manning -Paula Modersohn-Becker -Olympic Medal Count -Justin Timberlake -Dow Jones -Super Bowl 2018 -Carter G. Woodson -Oscar Nominations 2018 -Isaiah Thomas -Cloverfield Paradox -Pro Bowl 2018 -Ash Wednesday -Virginia Woolf -Jamie Anderson -Kim Kardashian -Carter G. Woodson -Virginia Woolf -Alison Brie -Sergei Eisenstein -Shaun White -Florida shooting -Terrell Owens -Mark Salling -Vikings vs Eagles -Royal Rumble 2018 -SAG Awards 2018 -Doomsday Clock -SAG Awards 2018 -Super Bowl score -Johnny Weir -Memo -Larry Nassar -Laura Ingraham -Jemele Hill -Johnny Weir -Winter Olympics -Riverdale -Groundhog Day 2018 -Super Bowl Commercials 2018 -Dennis Edwards -Alex Smith -Florida shooting -Virginia Woolf -Paula Modersohn-Becker -Super Bowl score -Lindsey Vonn -Virginia Woolf -Larry Nassar -Amazon Stock -National Pizza Day -Elizabeth Blackwell -What Time Is The Super Bowl -Valentines Day -Walter Payton -What Time Is The Super Bowl -Kentucky shooting -Paula Modersohn-Becker -Women's March 2018 -Sarah Barthel -NBA Trades -Tom Brady daughter -Blake Griffin -Wilder Penfield -Wilder Penfield -What Time Is The Super Bowl -Terrell Owens -Super Bowl 2018 -Kentucky shooting -Groundhog Day 2018 -Florida shooting -Super blue blood Moon -Eli Manning -Groundhog Day 2018 -Grammys 2018 -Virginia Woolf -Happy Valentines Day -Kim Kardashian -Virginia Woolf -XFL -Groundhog Day 2018 -Fortnite New Map -Duke Basketball -Florida shooting -Blake Griffin Trade -Kylie Jenner -Florida shooting -Virginia Woolf -Omarosa -Virginia Woolf -Shani Davis -Vanessa Trump -Sergei Eisenstein -Winter Olympics -Happy Valentines Day -Paula Modersohn-Becker -Virginia Woolf -Winter Olympics -Winter Olympics -Halsey -Virginia Woolf -XFL -Super Bowl Commercials 2018 -Super Bowl 2018 -Carter G. Woodson -Carter G. Woodson -Tessa Virtue -Bitcoin Price -This Is Us -Florida shooting -Sergei Eisenstein -Tyler Hilinski -Shaun White -Justin Timberlake -Patriots -Carter G. Woodson -What Time Is The Super Bowl -Champions League -Dow Jones -State of the Union -Tom Petty -Paula Modersohn-Becker -Super Bowl score -Mark Salling -Cavs -State of the Union -Wilder Penfield -Timor Leste -Bitcoin Price -Kylie Jenner -State of the Union -Mike Vrabel -Winter Olympics -Black Panther -Doomsday Clock -Patriots -Pink -Yuzuru Hanyu -Drake -Florida shooting -Alex Smith -Wilder Penfield -Steve Wynn -Meteor -Carter G. Woodson -Chinese New Year 2018 -Paula Modersohn-Becker -SpaceX -Oscar Nominations 2018 -Solo Trailer -Elizabeth Blackwell -Super Bowl 2018 -Jason Kelce -Winter Olympics -Elizabeth Blackwell -Louise Linton -Government Shutdown Meaning -Paula Modersohn-Becker -Shaun White -CNN -Wilder Penfield -Government shutdown -Black Panther -Sergei Eisenstein -Virginia Woolf -AFC Championship Game 2018 -Vikings Vs Eagles -Paula Modersohn-Becker -Super Bowl 2018 -Grey's Anatomy -Paula Modersohn-Becker -Larry Nassar -Paula Modersohn-Becker -Joshua Cooper Ramo -SpaceX -NFL Honors -Government Shutdown -Kylie Jenner -Super Bowl 2018 -Stormi -Carter G. Woodson -Sergei Eisenstein -Ash Wednesday -Larry Nassar -Sergei Eisenstein -Lari White -Bitcoin Price -Kylie Jenner -CNN -SpaceX -Mardi Gras 2018 -Happy Valentines Day -Kylie Jenner -Obama portrait -Wilder Penfield -Super Bowl score -Sarah Barthel -Bitcoin Price -Super Bowl score -Elizabeth Blackwell -Kylie Jenner -Wilder Penfield -Grammys 2018 -Kim Kardashian -school closings -Lari White -Government Shutdown Meaning -Winter Olympics -Omarosa -NFL Honors -Black Panther -Amazon stock -Rachel Brand -Super Bowl 2018 -Ash Wednesday -Patriots -Chinese New Year 2018 -Patriots -Jo Jo White -Jason Momoa -Florida shooting -Paula Modersohn-Becker -Zion Williamson -Carter G. Woodson -Solo Trailer -Carter G. Woodson -Wilder Penfield -Sergei Eisenstein -Florida shooting -Royal Rumble 2018 -Government Shutdown -Robert Wagner -Maze Runner: The Death Cure -Grammys 2018 -Kylie Jenner -NBA Trades -Robby Anderson -Olivia Culpo -Chrissy Teigen -Mardi Gras 2018 -Larry Nassar -Carter G. Woodson -Maddie Mastro -Chief Wahoo -Walter Payton -Patriots -Kylie Jenner -Dow Jones industrial average -Gods Plan -Larry Nassar -Venom -School Closings -Women's March 2018 -Elizabeth Blackwell -Wilder Penfield -Wilder Penfield -Wilder Penfield -Kim Cattrall -Andrew Cunanan -Edwin Jackson -Happy Valentines Day -Ellen Pompeo -Elizabeth Blackwell -Jason Kelce -Carter G. Woodson -Super Bowl score -Cavs -Meteor -Florida shooting -Justin Timberlake -Rasual Butler -Grammys 2018 -Rasual Butler -Super Bowl score -Sergei Eisenstein -Paula Modersohn-Becker -school closings -Florida shooting -New England Patriots owner -Carter G. Woodson -Super Bowl 2018 -Patty Hearst -Oscar Nominations 2018 -Carter G. Woodson -Paula Modersohn-Becker -calculator -school closings -Dow Jones -Mark Salling -United States Of America Winter Olympics -Super Bowl 2018 -Tom Brady -Quincy Jones -Tara Lipinski -Kylie Jenner -Government shutdown -Super blue blood Moon -Florida shooting -Olympics 2018 -Mardi Gras 2018 -Winter Olympics -Joe Kennedy -Virginia Woolf -Terry Bradshaw -What Time Is The Super Bowl -Super Bowl score -Aliona Savchenko -SZA -Virginia Woolf -Paula Modersohn-Becker -What Time Is The Super Bowl -Florida shooting -Justin Timberlake -Greg Monroe -Winter Olympics -Anastasia Bryzgalova -Elizabeth Blackwell -Senior Bowl -Matt Patricia -Florida shooting -This Is Us -Kim Kardashian -Florida shooting -Lee Miglin -Carter G. Woodson -Super Blue Blood Moon -Mark Salling -NHL All Star Game -What Time Is The Super Bowl -Chloe Kim -Red Gerard -Grammys 2018 -What Time Is The Super Bowl -Bill Paxton -Shaun White -Memo -Carter G. Woodson -Elizabeth Blackwell -Paula Modersohn-Becker -The 15:17 to Paris -Wilder Penfield -Florida shooting -Patriots -Dow Jones -Ursula Le Guin -SAG Awards 2018 -Larry Nassar -Snake -Valentine's Day -Shaun White -Trump State of the Union -Carter G. Woodson -Elizabeth Blackwell -Carter G. Woodson -State of the Union -Dow Jones -UFC 220 -Virginia Woolf -calculator -Florida shooting -Elizabeth Blackwell -Elon Musk -Larry Nassar -Virginia Woolf -Nintendo Labo -Super Bowl 2018 -Virginia Woolf -Florida shooting -Dane Cook -Virginia Woolf -Paula Modersohn-Becker -Charissa Thompson -Super Bowl Winners -Bob Marley -Grammys 2018 -Florida shooting -Sabrina Dhowre -What Time Is The Super Bowl -AFC Championship Game 2018 -Mardi Gras 2018 -Super Bowl score -Fredo Santana -Caroline Wozniacki -Sergei Eisenstein -Wilder Penfield -New England Patriots owner -Vikings Vs Eagles -Florida shooting -Shaun White -Justin Timberlake -Grammys 2018 -Carter G. Woodson -State of the Union -Florida shooting -Kentucky shooting -Super Bowl score -SpaceX -Winter Olympics -Sergei Eisenstein -New England Patriots owner -Justin Timberlake -Florida shooting -Jessica Chastain -Paula Modersohn-Becker -Florida shooting -Super Bowl score -Sergei Eisenstein -Elizabeth Blackwell -Kentucky shooting -NBA Trades -Larry Nassar -Melania Trump -Larry Nassar -Super Bowl 2018 -Doomsday Clock -SpaceX -Nathan Chen -Google Classroom -Super Bowl score -Winter Olympics -Winter Olympics -Patriots -Wilder Penfield -Eli Manning -Shaun White -Alex Smith -Grammys 2018 -Super Bowl 2018 -Patriots -Carter G. Woodson -Edwin Jackson -Virginia Woolf -What Time Is The Super Bowl -Government Shutdown -Chicago West -IXL -Paula Modersohn-Becker -Paula Modersohn-Becker -Government Shutdown -Yoel Romero -Winter Olympics -Government Shutdown -Super Bowl 2018 -Wilder Penfield -Robby Anderson -Virginia Woolf -This Is Us -Wilder Penfield -Wilder Penfield -DeMarcus Cousins -Super Bowl 2018 -Chinese New Year 2018 -Joe Kennedy -Dow Jones -national signing day 2018 -Matt Patricia -Shiffrin -Puppy Bowl 2018 -Sergei Eisenstein -Jennifer Aniston -Super Bowl 2018 -Groundhog Day 2018 -Vikings Vs Eagles -Carter G. Woodson -Puppy Bowl 2018 -Government Shutdown -Carter G. Woodson -Edwin Jackson -earthquake -SpaceX -SpaceX -Red Gerard -Super Bowl score -CNN -Patti LuPone -Kylie Jenner -Duke Basketball -Edible Arrangements -State of the Union -Sergei Eisenstein -Larry Nassar -Super Bowl score -Patriots -SpaceX -Sergei Eisenstein -Patriots -Kylie Jenner -What Time Is The Super Bowl -Kylie Jenner -SpaceX -Dow Jones -Patriots -Bob Dole -Aaliyah -Jennifer Aniston -XFL -SpaceX -Florida shooting -Virginia Woolf -John Mahoney -Sergei Eisenstein -Valentines Day -Florida shooting -Kylie Jenner -Cory Booker -Wilder Penfield -Winter Olympics -Wilder Penfield -Super Bowl 2018 -SAG Awards 2018 -Dow Jones -Mardi Gras 2018 -Jason Kelce -Sergei Eisenstein -Elizabeth Blackwell -Patriots -Carter G. Woodson -Women's March 2018 -Patriots -Celebrity Big Brother cast -Obama portrait -Super Bowl 2018 -Grammys 2018 -National Pizza Day -Justin Timberlake -Paula Modersohn-Becker -Johnny Manziel -Super Bowl score -UFC 220 -Larry Nassar -Florida shooting -fake news awards -Super Bowl 2018 -Lady Bird -Lil Pump -Winter Olympics -UFC 220 -Pro Bowl 2018 -Virginia Woolf -Celebrity Big Brother cast -What Time Is The Super Bowl -Wilder Penfield -Virginia Woolf -Paula Modersohn-Becker -Elizabeth Blackwell -Government Shutdown -Government Shutdown -Wilder Penfield -Super Bowl 2018 -Black Panther -Super Bowl 2018 -Sergei Eisenstein -Russell Wilson -SpaceX -Wilder Penfield -Trey Gowdy -Fredo Santana -Casey Affleck -Kelly Clark -Virginia Woolf -Hope Hicks -Government Shutdown -Champions League -Daryle Singletary -Trump State of the Union -Kentucky shooting -Super Bowl Commercials 2018 -Carter G. Woodson -New England Patriots owner -Jimmy Garoppolo -Joe Kennedy -Government Shutdown Meaning -Earthquake -Adam Rippon -Oscar Nominations 2018 -Yu Darvish -Oscar Nominations 2018 -Riverdale -Elizabeth Blackwell -Bitcoin Price -Terrell Owens -Terry Bradshaw -Vikings Vs Eagles -Carter G. Woodson -Oscar Nominations 2018 -Dua Lipa -Virginia Woolf -VIX -Oscar Nominations 2018 -Wilder Penfield -Forever My Girl -Elizabeth Blackwell -CNN -Grammys 2018 -Patriots -Jessica Chastain -Larry Nassar -Tom Petty -Super Bowl 2018 -SpaceX -Wilder Penfield -Larry Nassar -Super Bowl score -Elizabeth Blackwell -Carter G. Woodson -Wilder Penfield -Elton John -UFC 221 -Elizabeth Blackwell -Carter G. Woodson -Sarah Barthel -Google Drive -Super Bowl Commercials 2018 -Russell Wilson -Winter Olympics -Super blue blood Moon -Lorenzo Cain -Elizabeth Blackwell -Chicago West -Wilder Penfield -Florida shooting -Tonga -Chris Long -What Time Is The Super Bowl -Carter G. Woodson -Esteban Loaiza -Wilder Penfield -Elizabeth Blackwell -Trey Gowdy -Paula Modersohn-Becker -Carter G. Woodson -Larry Nassar -Pink -Mike Tomlin -Elizabeth Blackwell -Edwin Jackson -Uma Thurman -Super blue blood Moon -Super Bowl score -Elon Musk -Virginia Woolf -Patriots -Patriots -Patriots -Devin Nunes -Larry Nassar -Super Bowl score -SpaceX -stock market -Government Shutdown -Carter G. Woodson -Florida shooting -Government Shutdown 2018 -Wilder Penfield -Vikings Vs Eagles -Winter Olympics -Wilder Penfield -Mark Salling -Paula Modersohn-Becker -Devin Nunes -Super Bowl score -Quentin Tarantino -Wilder Penfield -Daryle Singletary -Dow Jones -Paula Modersohn-Becker -Evgenia Medvedeva -Sergei Eisenstein -SpaceX -Super Bowl score -Paula Modersohn-Becker -Celtics -Black Panther -Dow Jones -What Time Is The Super Bowl -Larry Nassar -Carter G. Woodson -Grammys 2018 -Mark E Smith -Snapchat Update -Virginia Woolf -Ar 15 -Carter G. Woodson -Enzo Amore -Cloverfield Paradox -Black Panther -February -Cherry Seaborn -Kylie Jenner Baby Girl -Florida shooting -LeBron James -Sergei Eisenstein -SpaceX -Government Shutdown 2018 -Winter Olympics -Sergei Eisenstein -Elizabeth Blackwell -Justin Timberlake -Patriots -Elizabeth Blackwell -Amazon Stock -CNN -Carter G. Woodson -Super Bowl 2018 -Grammys 2018 -Tiger Woods -XFL -Happy Valentines Day -Sarah Barthel -Government Shutdown Meaning -What Time Is The Super Bowl -Kesha Grammy -Government Shutdown -Tiger Woods -Government shutdown -Royal Rumble 2018 -What Time Is The Super Bowl -United States Of America Winter Olympics -Sergei Eisenstein -Patriots -James Maslow -Carter G. Woodson -Virginia Woolf -Adam Rippon -Valentines Day -Johnny Weir -Super Bowl score -Virginia Woolf -Google Classroom -Super Bowl score -Shaun White -Sergei Eisenstein -Super Bowl score -Carter G. Woodson -Sergei Eisenstein -Westerville Ohio -Paula Modersohn-Becker -Den of Thieves -Florida shooting -Patriots -Camila Cabello -Sergei Eisenstein -Super Bowl score -Dwyane Wade -Elizabeth Blackwell -Kylie Jenner -Shibutani -Sergei Eisenstein -Florida shooting -Cloverfield Paradox -Alex Smith -Winter Olympics -Sergei Eisenstein -Royal Rumble 2018 -What Time Is The Super Bowl -School Closings -Super Bowl 2018 -Waco -Elizabeth Blackwell -Mark Salling -NBA Trades -Betty White -Alex Smith -SpaceX -Government Shutdown -Shaun White -Grammys 2018 -Terrell Owens -Shaun White -What Time Is The Super Bowl -fake news awards -Snake -Wilder Penfield -Virginia Woolf -SpaceX -Fifty Shades Freed -Black Panther -Kylie Jenner -Meteor -Super Bowl 2018 -Government shutdown 2018 -Blake Griffin -Winter Olympics -Mark Salling -Pink -Virginia Woolf -Wilder Penfield -Joy Villa -State of the Union -Winter Olympics -Vikings Vs Eagles -Johnny Manziel -Justin Timberlake -Trump State of the Union -Super Bowl 2018 -Florida shooting -Wilder Penfield -Groundhog Day 2018 -Caroline Wozniacki -Sergei Eisenstein -Florida shooting -Wilder Penfield -Super Bowl score -Kentucky shooting -National Pizza Day -Winter Olympics -Florida shooting -Obama portrait -Super blue blood Moon -What Time Is The Super Bowl -UFC 221 -Red Gerard -Super Bowl 2018 -Dwyane Wade -Winter Olympics -Rett Syndrome -State of the Union -Paula Modersohn-Becker -What Time Is The Super Bowl -Bitcoin Price -Rob Porter -Elizabeth Blackwell -Super Bowl 2018 -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl 2018 -Florida shooting -Mardi Gras 2018 -Sergei Eisenstein -Elizabeth Blackwell -Daryle Singletary -Vince McMahon -National Pizza Day -Super Bowl score -Virginia Woolf -Virginia Woolf -school closings -SpaceX -Virginia Woolf -Oscar Nominations 2018 -Ash Wednesday -Black Panther -earthquake -Carter G. Woodson -Super Blue Blood Moon -Wilder Penfield -Winter Olympics -Wilder Penfield -Paula Modersohn-Becker -SpaceX -Super Bowl 2018 -Patriots -Elton John -SAG Awards 2018 -NBA Trades -John Mahoney -Paula Modersohn-Becker -Elizabeth Blackwell -12 Strong -Winter Olympics -Happy Valentines Day -Paula Modersohn-Becker -NBC Sports -Black Panther -Joe Kennedy -Edible Arrangements -Sergei Eisenstein -Elizabeth Blackwell -Florida shooting -Zion Williamson -Mark Salling -Pro Bowl 2018 -Super Bowl 2018 -The 15:17 to Paris -Carter G. Woodson -Altered Carbon -Mark Salling -Super Bowl score -Vincent Zhou -Dwyane Wade -Winter Olympics -Bitcoin Price -Patriots -Rasual Butler -Kim Kardashian -AFC Championship Game 2018 -Elizabeth Blackwell -Tiger Woods -earthquake -NBA Trades -Carter G. Woodson -Winter Olympics -Paula Modersohn-Becker -Carter G. Woodson -Florida shooting -Taiwan Earthquake Today -SpaceX -Westerville Ohio -Carter G. Woodson -Black Panther -Paula Modersohn-Becker -Oscar Nominations 2018 -Super Bowl score -Florida shooting -Kylie Jenner -Ash Wednesday -Winter Olympics -Tyler Hilinski -Larry Nassar -Quincy Jones -Steve Mcnair -Simona Halep -Government Shutdown Meaning -Kentucky shooting -Pro Bowl 2018 -Carter G. Woodson -12 Strong -Greg Monroe -Justin Timberlake -Solo Trailer -Super Bowl score -Grammys 2018 -Grammys 2018 -Solo Trailer -Omarosa -Football Playoffs 2018 -Mardi Gras 2018 -SpaceX -Elizabeth Blackwell -Government Shutdown 2018 -Olympic Medal Count -SpaceX -What Time Is The Super Bowl -Jason Momoa -Carter G. Woodson -Super Bowl 2018 -Aaliyah -Super Bowl score -Super blue blood Moon -Elizabeth Blackwell -Shaun White -Justin Timberlake -Groundhog Day 2018 -Korea -The 15:17 to Paris -Matt Czuchry -Google docs -Patriots -Happy Valentines Day -Paula Modersohn-Becker -Google docs -Shiffrin -Nathan Chen -Patriots -Kylie Jenner -Blake Griffin -Trey Gowdy -Super Bowl 2018 -Sarah Barthel -Super blue blood Moon -SpaceX -Government Shutdown -Ar 15 -Vikings Vs Eagles -Anna Kournikova -Virginia Woolf -Super Bowl score -Jennifer Aniston -Paula Modersohn-Becker -Scott Baio -Rasual Butler -Josh McDaniels -Government Shutdown -Florida shooting -Patriots -Elizabeth Blackwell -Shaun White -Patriots -SAG Awards 2018 -Netflix Stock -Paula Modersohn-Becker -Carter G. Woodson -Super Bowl score -stock market -Wilder Penfield -Classroom -Patriots -Meteor -Real Madrid -Vic Damone -New England Patriots owner -Virginia Woolf -Super Bowl 2018 -Duke Basketball -Kim Kardashian -Government Shutdown -Elizabeth Blackwell -Florida shooting -Kylie Jenner -Grammys 2018 -Dwyane Wade -NBA Trades -Paula Modersohn-Becker -Patriots -Super Bowl 2018 -Sergei Eisenstein -Vikings Vs Eagles -Manchester United -NFC Championship Game 2018 -Rasual Butler -Patriots -Winter Olympics -Larry Nassar -Vikings Vs Eagles -Patriots -Wilder Penfield -Virginia Woolf -Fred Savage -Camila Cabello -Blake Griffin Trade -John Mahoney -Carter G. Woodson -Chicago West -Elizabeth Blackwell -Virginia Woolf -Florida shooting -Kylie Jenner -Kylie Jenner -Groundhog Day 2018 -Kentucky shooting -Sergei Eisenstein -Mikaela Shiffrin -Winter Olympics -Korea -Florida shooting -Super Bowl 2018 -Larry Nassar -Sergei Eisenstein -Elizabeth Blackwell -Carter G. Woodson -Government shutdown 2018 -Paula Modersohn-Becker -Lady Bird -Paula Modersohn-Becker -Virginia Woolf -Sergei Eisenstein -United States Of America Winter Olympics -Florida shooting -Jennifer Aniston -Super Bowl 2018 -Wilder Penfield -Justin Timberlake -Wilder Penfield -Carter G. Woodson -Sergei Eisenstein -This Is Us -Patriots -Winter Olympics -Carter G. Woodson -Olympic medal count -Patriots -Carrie Underwood -Adam Hicks -Kentucky shooting -Solo Trailer -Jessica Chastain -Winter Olympics -Celebrity Big Brother cast -Carter G. Woodson -Nintendo Labo -Wilder Penfield -Winter Olympics -SpaceX -Virginia Woolf -Obama portrait -Ronaldinho -Super Bowl score -Kylie Jenner -What Time Is The Super Bowl -Carter G. Woodson -The Home Depot -Olive Garden -Elizabeth Blackwell -Blue Ivy -Grammys 2018 -Red Gerard -Patriots -Google docs -Childish Gambino -Johnny Weir -Elizabeth Blackwell -Super Bowl 2018 -Oscar Nominations 2018 -Virginia Woolf -Government Shutdown -Kylie Jenner -Rasual Butler -Virginia Woolf -NBA Trades -Winter Olympics -Kylie Jenner -SpaceX -Paula Modersohn-Becker -weather tomorrow -Westminster Dog Show 2018 -Super Bowl score -Laura Ingraham -Virginia Woolf -Bitcoin Price -Elizabeth Blackwell -Patriots -Scott Baio -Google docs -Paula Modersohn-Becker -Quincy Jones -Alaska earthquake -Super Bowl 2018 -Sergei Eisenstein -earthquake today -Olympic Medal Count -Vikings Vs Eagles -Oscar Nominations 2018 -Paula Modersohn-Becker -SpaceX -Real Madrid -Florida shooting -Paula Modersohn-Becker -Kylie Jenner -Natalie Wood -What Time Is The Super Bowl -Super Bowl 2018 -What Time Is The Super Bowl -Meteor -Florida shooting -Kylie Jenner -Patriots -Vikings Vs Eagles -Super blue blood Moon -Senior Bowl -Florida shooting -Justin Timberlake -Patriots -Grammys 2018 -Super Bowl Commercials -Elizabeth Blackwell -Sergei Eisenstein -Elizabeth Blackwell -Vanessa Trump -Puppy Bowl 2018 -Chicago Weather -Sergei Eisenstein -Carter G. Woodson -SpaceX -Wilder Penfield -Super Bowl Commercials 2018 -Black Panther -Lunar eclipse -Winter Olympics -Carter G. Woodson -Justin Timberlake -Virginia Woolf -Super Bowl 2018 -Paula Modersohn-Becker -Black Panther -Vikings Vs Eagles -Super Bowl 2018 -Winter Olympics -Lorenzo Cain -SAG Awards 2018 -Dow Jones -Wilder Penfield -Ellen DeGeneres -Johnny Weir -Florida shooting -Carter G. Woodson -Oscar Gamble -Black Panther -Dwyane Wade -Puppy Bowl 2018 -Amazon stock -Wilder Penfield -Duke basketball -Paula Modersohn-Becker -Oscar Nominations 2018 -Super Bowl score -Football Playoffs 2018 -Grammys 2018 -Real Madrid -Super Bowl score -Super Bowl 2018 -Paula Modersohn-Becker -Virginia Woolf -Alex Smith -Mardi Gras 2018 -Government Shutdown -Kris Dunn -Blake Griffin -Kylie Jenner Baby Girl -Elizabeth Blackwell -Kylie Jenner -Black Panther -Mikaela Shiffrin -Cryptocurrency News -Kylie Jenner -Florida shooting -Lady Bird -Wilder Penfield -Chloe Kim -Elizabeth Blackwell -Winter Olympics -Casey Affleck -Rob Gronkowski -Larry Nassar -Pro Bowl 2018 -Zion Williamson -Vikings Vs Eagles -calculator -When We First Met -Super Bowl score -Paula Modersohn-Becker -Grammys 2018 -Blake Griffin -SpaceX -Joe Kennedy -Elizabeth Blackwell -Patriots -Bitcoin Price -Google docs -Isaiah Canaan -Winter Olympics -Florida shooting -Groundhog Day 2018 -Celtics -Kesha -Friends The Movie 2018 -Government Shutdown -Patriots -Winter Olympics -Justin Timberlake -Wilder Penfield -Winchester -Sergei Eisenstein -Virginia Woolf -Alaska earthquake -Trump State of the Union -Sergei Eisenstein -Paula Modersohn-Becker -Winter Olympics -Patriots -Government Shutdown -Trump State of the Union -Super Bowl score -Justin Timberlake -Elizabeth Blackwell -Sergei Eisenstein -State of the Union -Virginia Woolf -Daryle Singletary -Elizabeth Blackwell -Sabrina Dhowre -Super Bowl score -Patti LuPone -Rasual Butler -Kylie Jenner -Caitlin McHugh -Left Shark -Groundhog Day 2018 -Wilder Penfield -Virginia Woolf -Den of Thieves -Woody Allen -Elizabeth Blackwell -Grammys 2018 -Mardi Gras 2018 -Erykah Badu -Mardi Gras 2018 -Super Bowl 2018 -Super Bowl 2018 -Toys R Us -Virginia Woolf -Winter Olympics -Winter Olympics -Wilder Penfield -Sergei Eisenstein -Celebrity Big Brother cast -Paula Modersohn-Becker -Kylie Jenner -Mardi Gras 2018 -Super Bowl 2018 -Stock Market Crash Today -Grammys 2018 -Alison Brie -Paula Modersohn-Becker -Government Shutdown Meaning -Virginia Woolf -Maze Runner: The Death Cure -Dow Jones -Winter Olympics -Wilder Penfield -Elizabeth Blackwell -Vikings Vs Eagles -Robby Anderson -Super blue blood Moon -NBA Trades -Greg Monroe -Paula Modersohn-Becker -Government Shutdown -Eli Manning -Virginia Woolf -Patriots -SpaceX -Patriots -Paula Modersohn-Becker -Nathan Chen -Johnny Weir -Women's March 2018 -Super Bowl 2018 -Zion Williamson -shutdown -Super blue blood Moon -Kentucky shooting -United States Of America Winter Olympics -Jason Kelce -Dow Jones -Google Drive -Paula Modersohn-Becker -Rose McGowan -Elton John -Elon Musk -SpaceX -Natalie Portman -Mattie Larson -calculator -Alex Smith -Robinhood -Mark Salling -Pyeongchang 2018 Olympic Winter Games -Virginia Woolf -Elizabeth Blackwell -Wilder Penfield -Super Bowl score -Pro Bowl 2018 -Shaun White -Government shutdown 2018 -Super Bowl Commercials 2018 -Katie Couric -Virginia Woolf -Mark Salling -What Time Is The Super Bowl -Alexa Commercial -Alex Reimer -calculator -Paula Modersohn-Becker -Sergei Eisenstein -School Closings -Kylie Jenner -Larry Nassar -Amy Schumer -Patriots -CNN -Super Blue Blood Moon -What Time Is The Super Bowl -Winter Olympics -Blake Griffin -Valentines Day -Dow Jones -Larry Nassar -Hailee Steinfeld -Patriots -Paula Modersohn-Becker -H&r Block -Sergei Eisenstein -Royal Rumble 2018 -Shaun White -Winter Olympics -What Time Is The Super Bowl -Florida shooting -XFL -Dow Jones -Patriots -Super Bowl Commercials 2018 -Gods Plan -Super blue blood Moon -Vikings vs Eagles -Larry Nassar -Virginia Woolf -State of the Union -Andrew Cunanan -State of the Union -Elizabeth Blackwell -Camila Cabello -Sergei Eisenstein -Super Bowl 2018 -Super Bowl score -Fredo Santana -Kylie Jenner -United States Of America Winter Olympics -Terrell Owens -UFC 220 -Kevin Love -What Time Is The Super Bowl -Prince William -Alexander Polinsky -AFC Championship Game 2018 -Black Panther -Florida shooting -SpaceX -Forever My Girl -What Time Is The Super Bowl -Carter G. Woodson -Super Bowl score -Aaron Fies -Carter G. Woodson -Winter Olympics -Kylie Jenner -Patriots -Steve Mcnair -Wilder Penfield -Michelle Obama -Sergei Eisenstein -Valentines Day Images -Wilder Penfield -Black Panther -Sea Of Thieves -What Time Is The Super Bowl -Jason Kidd -Carter G. Woodson -State of the Union -Did the Groundhog See His Shadow -Fredo Santana -Luke Wilson -Super blue blood Moon -Carter G. Woodson -Jessica Chastain -Sergei Eisenstein -Super Bowl 2018 -Patriots -Black Panther -Super Bowl 2018 -Grammys 2018 -Sergei Eisenstein -Virginia Woolf -Paula Modersohn-Becker -Josh McDaniels -Government Shutdown -Florida shooting -What Time Is The Super Bowl -Jimmy Garoppolo -Patriots -Carter G. Woodson -Eric Wood -NBA Trades -Vanessa Marcil -Luke Wilson -Korea -Gregory Salcido -NBA Trades -calculator -FA Cup -Florida shooting -Kylie Jenner -Sergei Eisenstein -Women's March 2018 -Edwin Jackson -Hope Hicks -Trump State of the Union -Olympic Medal Count -Florida shooting -Mardi Gras 2018 -Winter Olympics -Groundhog Day 2018 -Super Bowl score -Patriots -Alaska earthquake -Kingdom Come Deliverance -Patriots -Phantom Thread -Winter Olympics -Grammys 2018 -Larry Nassar -Jemele Hill -Elizabeth Blackwell -Virginia Woolf -Daryle Singletary -Kingdom Come Deliverance -Google Classroom -Elizabeth Blackwell -Paula Modersohn-Becker -Josh McDaniels -Kylie Jenner -Stormi -Shiffrin -Carter G. Woodson -Winter Olympics -Alaska earthquake -Wilder Penfield -Super Bowl score -Alaska earthquake -Rampage -Cryptocurrency News -Quincy Jones -Government shutdown 2018 -Elizabeth Blackwell -Wilder Penfield -Olympic medal count -Neil Diamond -Andrew McCabe -Larry Nassar -Steve Wynn News -Super Bowl 2018 -Kevin Durant -Royal Rumble 2018 -Maze Runner: The Death Cure -Brynn Cameron -Dow Jones -Cavs -Elizabeth Blackwell -Carter G. Woodson -Government Shutdown 2018 -Kratom -Dow Jones -Winter Olympics -Super Bowl 2018 -Florida shooting -Sergei Eisenstein -Altered Carbon -Government Shutdown -Sergei Eisenstein -What Time Is The Super Bowl -Elizabeth Blackwell -Mattie Larson -Carter G. Woodson -Carrie Underwood -earthquake -New England Patriots owner -Olympics 2018 -CNN -UFC 220 -Ohio State basketball -Uma Thurman -Kylie Jenner Baby Girl -Mark Salling -Paula Modersohn-Becker -Larry Nassar -Betty White -Kesha Grammy -Peter Rabbit -Patriots -Johnny Weir -Justin Timberlake -Did the Groundhog See His Shadow -Carter G. Woodson -calculator -Alaska earthquake -Winter Olympics -Super Bowl score -Justin Timberlake -Detroit Lions -Kylie Jenner -Senior Bowl -Super blue blood Moon -SpaceX -Virginia Woolf -XIV -Wilder Penfield -Gods Plan -Norovirus -Tammy Duckworth -Super Bowl score -Elton John tickets -Government shutdown -Paula Modersohn-Becker -CNN -Solo Trailer -Alexander Polinsky -NBA Trades -LeBron James -Carter G. Woodson -Super Bowl score -Tara Lipinski -Wilder Penfield -Shaun White -Grammys 2018 -Elton John -Super Bowl score -Florida shooting -Virginia Woolf -Justin Timberlake -Larry Nassar -Vikings Vs Eagles -John Mahoney -Florida shooting -Mickey Jones -Josh McDaniels -Lunar eclipse -Super Bowl Commercials 2018 -Groundhog Day 2018 -Kim Kardashian -Hostiles -Paula Modersohn-Becker -Patriots -SpaceX -Carter G. Woodson -Donald Trump Jr -Halsey -Florida shooting -Super Bowl 2018 -Ellen Pompeo -Venom -Grammys 2018 -Olivia Culpo -Hostiles -Mark Salling -Portia de Rossi -Super Bowl Commercials 2018 -Carter G. Woodson -Government shutdown 2018 -Winter Olympics -Sean McVay -Wilder Penfield -All Star Weekend 2018 -SpaceX -Paula Modersohn-Becker -Winter Olympics -Nintendo Labo -Fredo Santana -Puppy Bowl 2018 -Winter Olympics -Super Bowl score -Dow Jones -Roger Federer -Sergei Eisenstein -Sergei Eisenstein -Elizabeth Blackwell -Virginia Woolf -Black Panther -This is Us -Lena Zawaideh -Patriots -Solo Trailer -Super Bowl 2018 -12 Strong -Winter Olympics -Grammys 2018 -Trump State of the Union -Omarosa -Virginia Woolf -Oscar Nominations 2018 -Carter G. Woodson -Winter Olympics -Carter G. Woodson -John Mahoney -Super Bowl 2018 -Justin Timberlake -SAG Awards 2018 -Dwyane Wade -Super Bowl score -Super Bowl 2018 -Winter Olympics -Florida shooting -Sting -Norovirus -Virginia Woolf -Dow Jones -Super Bowl 2018 -Paula Modersohn-Becker -Sergei Eisenstein -Rasual Butler -Justin Timberlake -fake news awards -Derrick Rose -Winter Olympics -Sting -Super Bowl 2018 -Paula Modersohn-Becker -Wing Bowl 2018 -Jimmy Garoppolo -Cherry Seaborn -Puppy Bowl 2018 -Bitcoin Price -Sergei Eisenstein -Rasual Butler -Chicago West -Joe Kennedy -Government Shutdown Meaning -Paula Modersohn-Becker -NHL All Star Game -Government Shutdown -What Time Is The Super Bowl -Sergei Eisenstein -Virginia Woolf -Elizabeth Blackwell -Mark E Smith -NBA Trades -Kylie Jenner -What Time Is The Super Bowl -Grammys 2018 -Arsenal -Government Shutdown -Rasual Butler -Elizabeth Blackwell -Fredo Santana -Memo -SZA -Vikings Vs Eagles -Sergei Eisenstein -Virginia Woolf -Patriots -Happy Valentines Day -UFC 220 -Patriots -What Time Is The Super Bowl -Carter G. Woodson -Venom -Super Bowl score -Paula Modersohn-Becker -Sergei Eisenstein -Winter Olympics -NBA Trades -Did the Groundhog See His Shadow -Alex Reimer -Grammys 2018 -Alessia Cara -Mr Rogers -Justin Timberlake -Grammys 2018 -Super Bowl 2018 -Grammys 2018 -Wilder Penfield -Patriots -Adam Rippon -Super Bowl 2018 -school closings -NBA Trades -Alaska earthquake -Google docs -What Time Is The Super Bowl -Patriots -Valentines Day -Kylie Jenner -Joe Kennedy -Virginia Woolf -Kylie Jenner -Cloverfield Paradox -Groundhog Day 2018 -Paula Modersohn-Becker -Wilder Penfield -Edible Arrangements -SAG Awards 2018 -Dwyane Wade -Gianni Versace -Aaron Fies -XIV -Super Bowl score -Winter Olympics -Dow Jones -Shaun White -Sergei Eisenstein -VIX -Florida shooting -Chloe Kim -Wilder Penfield -Grammys 2018 -Paula Modersohn-Becker -Vikings Vs Eagles -Valentines Day Images -Wilder Penfield -Tom Petty -Robby Anderson -Cloverfield Paradox -Super Bowl score -Super Bowl 2018 -Wilder Penfield -Grammys 2018 -Justin Timberlake -Wilder Penfield -Dow Jones -Elizabeth Blackwell -Government Shutdown -Super Bowl score -Super Bowl 2018 -Elizabeth Blackwell -Joe Kennedy -Alaska earthquake -Wilder Penfield -Kesha Grammy -The 15:17 to Paris -Morgan Freeman -Yu Darvish -calculator -Super Bowl 2018 -Montreal Cognitive Assessment -Olympic Medal Count -Alex Smith -Kylie Jenner -Robert Mueller -State of the Union -Shaun White -Marlon Brando -Florida shooting -Kylie Jenner -Steve Mcnair -SpaceX -Sergei Eisenstein -Super Bowl 2018 -Larry Nassar -Edible Arrangements -Super Bowl score -Bitcoin Price -The 15:17 to Paris -Super Bowl score -Did the Groundhog See His Shadow -Vikings Vs Eagles -Grammys 2018 -Chloe Kim -Super Bowl score -The Home Depot -Adam Schiff -Government Shutdown -Carter G. Woodson -Groundhog Day 2018 -Super Bowl score -Isaiah Canaan -Florida shooting -Super Bowl 2018 -Sergei Eisenstein -Olivia Culpo -Lil Pump -Vikings Vs Eagles -Patriots -Vince McMahon -Sergei Eisenstein -Kodak Black -What Time Is The Super Bowl -NBA Trades -Robert Wagner -Florida shooting -UFC 220 -Government Shutdown -JUUL -Florida shooting -Winter Olympics -Winter Olympics -Florida shooting -Virginia Woolf -Virginia Woolf -Groundhog Day 2018 -Super Bowl score -Anna Kournikova -Government Shutdown -Columbine -Winter Olympics -Super Bowl score -Elton John -Patriots -Super Bowl 2018 -Carter G. Woodson -Virginia Woolf -Rasual Butler -Altered Carbon -Florida shooting -Pro Bowl 2018 -Chloe Kim -Tara Lipinski -Government Shutdown -Wilder Penfield -Super Bowl 2018 -Chloe Kim -National Pizza Day -Lunar eclipse -What Time Is The Super Bowl -Solo Trailer -Paula Modersohn-Becker -Virginia Woolf -Oscar Nominations 2018 -Patriots -AFC Championship Game 2018 -Fredo Santana -stock market -VIX -Florida shooting -Carter G. Woodson -Sergei Eisenstein -The Home Depot -New England Patriots owner -SpaceX -Robert Mueller -Super Bowl 2018 -Justin Timberlake -Olivia Munn -The Alienist -Jason Kelce -Winter Olympics -Kentucky shooting -Vikings Vs Eagles -Super Bowl score -Robert Mueller -Paula Modersohn-Becker -Jessica Chastain -Royal Rumble 2018 -Virginia Woolf -Oscar Nominations 2018 -Dwyane Wade -Jalen Ramsey -Winter Olympics -Black Panther -Virginia Woolf -Vikings Vs Eagles -calculator -Winter Olympics -Wilder Penfield -Chicago West -Vikings vs Eagles -Kesha Grammy -Government shutdown -Shiffrin -Jason Kelce -Grammys 2018 -Release The Memo -Patriots -Memo -Google docs -Vanity Fair Cover -Alex Smith -Florida shooting -Anthony Davis -school closings -UFC 220 -Patriots -Elizabeth Blackwell -Paula Modersohn-Becker -Patriots -Florida shooting -Shaun White -Florida shooting -Carter G. Woodson -Andrew McCabe -Elizabeth Blackwell -Fredo Santana -Oscar Nominations 2018 -Florida shooting -Florida shooting -Google docs -Paula Modersohn-Becker -What Time Is The Super Bowl -calculator -Super blue blood Moon -Chris Stapleton -Paula Modersohn-Becker -Google docs -Kentucky shooting -Eli Manning -Carter G. Woodson -Winter Olympics -Juventus -Obama portrait -Norovirus -Carter G. Woodson -Forever My Girl -Lil Pump -Florida shooting -Vikings Vs Eagles -New England Patriots owner -Super Bowl Commercials 2018 -Esteban Loaiza -Black Panther -CNN -Paula Modersohn-Becker -Robert Wagner -Patriots -Florida shooting -Florida shooting -Amtrak -Obama portrait -Childish Gambino -Blake Griffin Trade -Groundhog Day 2018 -Olympic medal count -Carrie Underwood -Lari White -SpaceX -Google Drive -Black Panther -Ant Man and the Wasp -Elizabeth Blackwell -Government Shutdown -Blake Griffin Trade -Wilder Penfield -Edwin Jackson -Amy Schumer -Google Classroom -Super Bowl score -Super Bowl Commercials 2018 -Chicago West -Real Madrid -Virginia Woolf -Government Shutdown -Florida shooting -Kylie Jenner -School Closings -Patriots -What Time Is The Super Bowl -Carter G. Woodson -Patriots -SAG Awards 2018 -Fredo Santana -Chinese New Year 2018 -Paula Modersohn-Becker -Super Bowl score -Virginia Woolf -What Time Is The Super Bowl -State of the Union -Larry Nassar -Carter G. Woodson -Paula Modersohn-Becker -Pro Bowl 2018 -Blake Griffin -What Time Is The Super Bowl -Paula Modersohn-Becker -Government Shutdown -SpaceX -What Time Is The Super Bowl -Wilder Penfield -Mike Vrabel -Grammys 2018 -Grammys 2018 -Black Panther -Paula Modersohn-Becker -Government shutdown 2018 -Patty Hearst -Sergei Eisenstein -Chloe Kim -Super Bowl Commercials -Dwyane Wade -Cavs -Florida shooting -Florida shooting -Super Bowl score -Government Shutdown -Government shutdown 2018 -stock market -Dow Jones -Winter Olympics -Frank Reich -Justin Timberlake -Robert Wagner -XFL -Michelle Obama -Pro Bowl 2018 -Elizabeth Blackwell -SAG Awards 2018 -Nascar Schedule -Halsey -Patriots -Super Bowl score -Super Bowl score -Justin Timberlake -Winter Olympics -Virginia Woolf -Jennifer Aniston -Friends movie -Virginia Woolf -Super blue blood Moon -Carter G. Woodson -Winter Olympics -Chipper Jones -All Star Weekend 2018 -Shaun White -Gods Plan -Happy Valentines Day -Sergei Eisenstein -Grammys 2018 -NBA Trades -Sergei Eisenstein -Elizabeth Blackwell -Super Bowl score -NBA Trades -Larry Nassar -Paula Modersohn-Becker -NHL All Star Game -Royal Rumble 2018 -Chloe Kim -Shaun White -Shaun White -Celebrity Big Brother cast -Groundhog Day 2018 -Super Bowl Commercials -Lady Bird -Trey Gowdy -Super Bowl 2018 -Paula Modersohn-Becker -UFC 221 -Happy Valentines Day -Obama portrait -Justin Timberlake -Patriots -Adam Rippon -Justin Timberlake -Elizabeth Blackwell -Florida shooting -Government Shutdown -Patriots -Jason Kelce -Super Bowl 2018 -Joshua Cooper Ramo -Super Bowl score -Oscar Nominations 2018 -Patriots -Elton John -Government Shutdown -Virginia Woolf -Wilder Penfield -Super Bowl 2018 -Patriots -Trump State of the Union -school closings -Elizabeth Blackwell -Winter Olympics -Justin Timberlake -Kylie Jenner -Rasual Butler -Kylie Jenner -Government Shutdown -Sergei Eisenstein -Winter Olympics -Lunar eclipse -SpaceX -Super Bowl 2018 -Super Bowl 2018 -Mardi Gras 2018 -XFL -Tom Petty -Sergei Eisenstein -Winter Olympics -Patriots -Patriots -Super Bowl 2018 -John Mahoney -Larry Nassar -Sergei Eisenstein -Virginia Woolf -The 15:17 to Paris -Virginia Woolf -Scott Baio -Winter Olympics -Kylie Jenner -Larry Nassar -Super Bowl score -Florida shooting -Elizabeth Blackwell -Elizabeth Blackwell -Elizabeth Blackwell -Riverdale -Tyler Hilinski -Super Bowl Winners -Government Shutdown -Winter Olympics -Eli Manning -UFC 220 -Winter Olympics -Super Bowl 2018 -Winter Olympics -Camila Cabello -Virginia Woolf -Mark Salling -Larry Nassar -Blake Griffin Trade -Super Bowl score -Caitlin McHugh -Winter Olympics -Patriots -Isaiah Thomas -Kim Kardashian -Elizabeth Blackwell -Outback Steakhouse -SpaceX -Larry Nassar -Vikings Vs Eagles -Luke Wilson -Cloverfield Paradox -Vikings Vs Eagles -Super Bowl 2018 -Groundhog Day 2018 -Black Panther -Larry Nassar -XFL -Mikaela Shiffrin -Winter Olympics -Government shutdown 2018 -Alexander Polinsky -Valentines Day -Patriots -School Closings -Sergei Eisenstein -Joe Kennedy -Virginia Woolf -Super Bowl score -Cloverfield Paradox -Florida shooting -Tom Petty -Elizabeth Blackwell -Paula Modersohn-Becker -Paula Modersohn-Becker -Dennis Edwards -Florida shooting -Elizabeth Blackwell -Grammys 2018 -SpaceX -Shaun White -Patriots -Dow Jones -Winter Olympics -Patriots -Happy Valentines Day -Virginia Woolf -Oscar Nominations 2018 -Obama portrait -Super Bowl score -Virginia Woolf -Wilder Penfield -Virginia Woolf -Chicago West -Yu Darvish -Wilder Penfield -Florida shooting -Bitcoin Price -Wilder Penfield -Happy Valentines Day -UFC 220 -Chloe Kim -Government Shutdown -Super Bowl Commercials 2018 -CNN -Larry Nassar -Isaiah Thomas -Paula Modersohn-Becker -Riverdale -Sergei Eisenstein -Happy Valentines Day -Bob Marley -Bitcoin Price -NBA Trades -Toys R Us -NBA Trades -CNN -Winter Olympics -Virginia Woolf -Carter G. Woodson -Alessia Cara -Dua Lipa -SpaceX -Google Classroom -Danielle Herrington -Florida shooting -Super Bowl score -Carter G. Woodson -Patriots -Grammys 2018 -Adam Rippon -Kim Kardashian -Adam Rippon -Enzo Amore -Patriots -Sergei Eisenstein -Winter Olympics -Justin Timberlake -Winter Olympics -Pro Bowl 2018 -Jennifer Aniston -Waco -Mikaela Shiffrin -Super Bowl 2018 -Atlanta Weather -Sergei Eisenstein -Real Madrid -Maddie Mastro -BitConnect -Super blue blood Moon -Korea -Jennifer Aniston -Super Bowl score -Julie Ertz -Kylie Jenner -Obama portrait -Super Bowl Commercials 2018 -Celtics -Winter Olympics -Super Bowl score -Wilder Penfield -Senior Bowl -Mardi Gras 2018 -Carter G. Woodson -Earthquake Today -Groundhog Day 2018 -Terrell Owens -Nba All Star Draft -Justin Timberlake -Super Bowl score -Trump State of the Union -Elizabeth Blackwell -State of the Union -NFC Championship Game 2018 -stock market -Patriots -State of the Union -Carter G. Woodson -Andrew McCabe -Isaiah Thomas -Carter G. Woodson -Gods Plan -Alex Reimer -Super Bowl 2018 -Kylie Jenner -Super Bowl 2018 -stock market -This Is Us -Kylie Jenner -Elizabeth Blackwell -John Mahoney -Chipper Jones -Elizabeth Blackwell -Vikings Vs Eagles -State of the Union -Tiger Woods -Mexico earthquake -Danielle Herrington -Super Bowl 2018 -SpaceX -12 Strong -The Home Depot -Sergei Eisenstein -Carter G. Woodson -Winter Olympics -Justin Timberlake -Super Bowl score -Rob Porter -Happy Valentines Day -Super blue blood Moon -Trayvon Martin -Sergei Eisenstein -Dow Jones -Government Shutdown -NBA Trades -Super Bowl Commercials 2018 -This Is Us -Rose McGowan -SpaceX -Virginia Woolf -Wilder Penfield -Cloverfield Paradox -Stormi -Valentines Day -Paula Modersohn-Becker -Shaun White -Paula Modersohn-Becker -Josh McDaniels -Caroline Wozniacki -Chloe Kim -Super blue blood Moon -Happy Valentines Day -Justin Timberlake -Virginia Woolf -Paula Modersohn-Becker -Dwyane Wade -Patriots -Elizabeth Blackwell -School Closings -Virginia Woolf -Patriots -Yura Min -UFC 220 -Rasual Butler -Kim Kardashian -What Time Is The Super Bowl -Elizabeth Blackwell -Kim Cattrall -Government shutdown 2018 -Ar 15 -What Time Is The Super Bowl -Black Panther -SpaceX -Vikings Vs Eagles -Super Bowl 2018 -Gods Plan -SpaceX -Virginia Woolf -Sergei Eisenstein -Government Shutdown -Winter Olympics -Sea Of Thieves -Rose McGowan -United States Postal Service -Call Me by Your Name -Sergei Eisenstein -Patriots -Forever My Girl -Sergei Eisenstein -The 15:17 to Paris -Uma Thurman -Tyler Hilinski -Alessia Cara -Patti LuPone -Wilder Penfield -SpaceX -KSI -Super Bowl score -Dow Jones industrial average -Virginia Woolf -United States Postal Service -Shiffrin -Paula Modersohn-Becker -Gods Plan -school closings -Early Man -Super Bowl 2018 -Florida shooting -Sergei Eisenstein -Chicago West -Virginia Woolf -Obama portrait -Tammy Duckworth -Super Bowl score -Patriots -Kylie Jenner Baby Girl -SpaceX -Grammys 2018 -Paula Modersohn-Becker -XFL -Tom Petty -Memo -Elizabeth Blackwell -government shutdown -Terry Bradshaw -Virginia Woolf -Carter G. Woodson -Government Shutdown -Olympic Medal Count -Florida shooting -Wilder Penfield -Mavic Air -Grammys 2018 -Super Bowl score -CNN -Patriots -Wilder Penfield -Winter Olympics -calculator -Carter G. Woodson -Florida shooting -Trey Gowdy -Mark Salling -Shaun White -Paula Modersohn-Becker -Larry Nassar -Chloe Kim -Super Bowl score -CNN -Kylie Jenner -Mike Vrabel -Red Gerard -Mikaela Shiffrin -Super Bowl 2018 -Google docs -Justin Timberlake -Patriots -Nancy Pelosi -Virginia Woolf -Tonga -Sergei Eisenstein -Black Panther -Paula Modersohn-Becker -Paula Modersohn-Becker -LeBron James -Adam Rippon -Groundhog Day 2018 -Lunar eclipse -Elizabeth Blackwell -School Closings -Kylie Jenner -Kylie Jenner -Carter G. Woodson -Sergei Eisenstein -Peter Rabbit -Florida shooting -Olivia Culpo -Alex Smith -Lunar eclipse -Super Bowl 2018 -The 15:17 to Paris -Wilder Penfield -Justin Timberlake -Virginia Woolf -School Closings -CNN -Wilder Penfield -Patriots -Derrick Rose -Government Shutdown -Vincent Zhou -Elizabeth Blackwell -Virginia Woolf -Super Bowl 2018 -Jennifer Aniston -What Time Is The Super Bowl -Super Bowl 2018 -Government shutdown 2018 -Super Bowl score -Super Bowl 2018 -Obama portrait -Memo -Black Panther -Roger Federer -Patriots -Sergei Eisenstein -Super Bowl 2018 -Vikings vs Eagles -Sabrina Dhowre -Kim Kardashian -Altered Carbon -Patriots -Elon Musk -Justin Timberlake -Bob Dole -Vikings Vs Eagles -weather tomorrow -Kesha -Happy Valentines Day -Kylie Jenner -Winter Olympics -Virginia Woolf -Jessica Chastain -Patti LuPone -Kevin Love -Elizabeth Blackwell -Sergei Eisenstein -Super Bowl score -Virginia Woolf -UFC 220 -What Time Is The Super Bowl -calculator -calculator -Government shutdown 2018 -Super Bowl score -Jessica Chastain -Josh McDaniels -Memo -Carter G. Woodson -Super Bowl 2018 -Super Bowl score -Ohio State basketball -Government shutdown -Fredo Santana -Blake Griffin -Carter G. Woodson -Chicago West -Patriots -Alex Smith -Super Bowl 2018 -Mexico -Paula Modersohn-Becker -Paula Modersohn-Becker -Alexa Commercial -Patriots -Stormi -Bradie Tennell -Rob Porter -AFC Championship Game 2018 -Kylie Jenner -Virginia Woolf -Wilder Penfield -Virginia Woolf -Vikings Vs Eagles -Nba All Star Draft -Elon Musk -Winter Olympics -Wilder Penfield -Florida shooting -Trump State of the Union -Tyler Hilinski -Sergei Eisenstein -Super Bowl score -Florida shooting -Vikings vs Eagles -Google Classroom -Government Shutdown -Dow Jones -Lunar eclipse -Lauren Davis -Elizabeth Blackwell -Virginia Woolf -Justin Timberlake -Elizabeth Blackwell -Groundhog Day 2018 -Robert Wagner -New England Patriots owner -Virginia Woolf -Wilder Penfield -State of the Union -Warren Miller -Super Bowl score -Fredo Santana -Virginia Woolf -Adam Rippon -Florida shooting -Carter G. Woodson -Virginia Woolf -Bob Dole -Atlanta Weather -Super Bowl score -Super Bowl 2018 halftime show -Friends movie -Josh McDaniels -Jason Kidd -Tiger Woods -Super Blue Blood Moon -Carter G. Woodson -Super blue blood Moon -State of the Union -Happy Valentines Day -AR-15 -Trayvon Martin -Memo -SpaceX -Florida shooting -Justin Timberlake -Super Bowl score -Omarosa -Patriots -Rolling Loud -Winter Olympics -Sergei Eisenstein -Shibutani -Bitcoin Price -Trump State of the Union -Super Bowl 2018 -Kim Kardashian -Bitcoin Price -Winter Olympics -Super Bowl score -Rob Delaney -Justin Timberlake -Cnbc -Super Bowl score -Virginia Woolf -Oar Olympics -Olympic Medal Count -Lunar eclipse -Super Bowl score -Blake Griffin -Den of Thieves -Super Bowl score -Obama portrait -Fredo Santana -Natalie Wood -Elizabeth Blackwell -Memo -Tammy Duckworth -Winter Olympics -Valentines Day Cards -Government Shutdown Meaning -Florida shooting -Tiger Woods -Google Drive -Cherry Seaborn -Eli Manning -Bellator 192 -What Time Is The Super Bowl -Super Bowl 2018 -Winter Olympics -Taiwan -stock market -Dow Jones industrial average -Sergei Eisenstein -Super Bowl 2018 -Adam Rippon -Chicago Weather -Florida shooting -Elizabeth Blackwell -Elizabeth Blackwell -Government Shutdown Meaning -Virginia Woolf -Sergei Eisenstein -Sergei Eisenstein -Virginia Woolf -Elizabeth Blackwell -Wilder Penfield -Maddie Mastro -Blake Griffin -Florida shooting -Vikings Vs Eagles -Kylie Jenner -shutdown -Patriots -Bill Parcells -Government Shutdown Meaning -Winter Olympics -Shani Davis -Sergei Eisenstein -Eli Manning -Florida shooting -What Time Is The Super Bowl -Adam Rippon -Super Bowl 2018 -Anna Kournikova -Jason Kelce -Happy Valentines Day -Grammys 2018 -Winchester -Super Bowl score -Kylie Jenner -Winter Olympics -Virginia Woolf -Korea -Caroline Wozniacki -Winter Olympics -Winter Olympics -Chief Wahoo -Justin Timberlake -SpaceX -Hostiles -Patriots -Sergei Eisenstein -Carter G. Woodson -Kratom -What Time Is The Super Bowl -Elizabeth Blackwell -Wilder Penfield -Cnbc -Carter G. Woodson -Government Shutdown -Betty White -Super blue blood Moon -Bitcoin Price -stock market -Memo -Paula Modersohn-Becker -Ash Wednesday -Kesha -Real Madrid -Oscar Nominations 2018 -SpaceX -Chinese New Year 2018 -Tom Brady -Super Bowl score -Kylie Jenner -Elizabeth Blackwell -Patriots -Super Bowl 2018 -Super Bowl score -John Mahoney -Sergei Eisenstein -Wilder Penfield -Elizabeth Blackwell -Elizabeth Blackwell -Grammys 2018 -Joe Kennedy -SAG Awards 2018 -New England Patriots owner -Government shutdown -All Star Weekend 2018 -Pro Bowl 2018 -Vikings Vs Eagles -Government shutdown 2018 -Elizabeth Blackwell -Portia de Rossi -Florida shooting -United States Postal Service -Winter Olympics -Logan Paul -Larry Nassar -Super Bowl score -School Closings -Super Bowl 2018 -Peter Rabbit -Paula Modersohn-Becker -Vikings Vs Eagles -Black Panther -Elizabeth Blackwell -Memo -Kesha Grammy -Alessia Cara -Winter Olympics -Puppy Bowl 2018 -Greg Monroe -Tom Petty -Wilder Penfield -Elizabeth Blackwell -SpaceX -Paula Modersohn-Becker -Elizabeth Blackwell -Wilder Penfield -Paula Modersohn-Becker -Did the Groundhog See His Shadow -Wilder Penfield -Florida shooting -Patriots -Joe Kennedy -Don Lemon -Virginia Woolf -This is Us -Virginia Woolf -Wilder Penfield -Sergei Eisenstein -SpaceX -Patriots -Florida shooting -Wilder Penfield -calculator -Shaun White -Florida shooting -Virginia Woolf -Carter G. Woodson -Super Bowl score -Super Blue Blood Moon -Blake Griffin -Bitcoin Price -Rodney Hood -Kylie Jenner Baby Girl -Government Shutdown -Eli Manning -Patriots -calculator -Shiffrin -Oscar Nominations 2018 -Super Bowl 2018 -Edible Arrangements -Oscar Nominations 2018 -Winter Olympics -Sergei Eisenstein -Super Bowl score -Google docs -Government Shutdown 2018 -Betty White -Wilder Penfield -Patriots -Blake Griffin -The Alienist -Larry Nassar -Paula Modersohn-Becker -What Time Is The Super Bowl -Cherry Seaborn -Oscar Nominations 2018 -Super Bowl score -Jessica Chastain -Homeland -Winter Olympics -Bitcoin Price -Justin Timberlake -Government Shutdown -Super Bowl 2018 -Paula Modersohn-Becker -Carter G. Woodson -Kentucky shooting -Patriots -Rasual Butler -Wilder Penfield -Wilder Penfield -Carter G. Woodson -Florida shooting -Patriots -government shutdown -What Time Is The Super Bowl -Winter Olympics -Memo -Carter G. Woodson -Kentucky shooting -Jimmy Kimmel -Justin Timberlake -Will Ferrell -Wilder Penfield -Dow Jones -Oscar Nominations 2018 -Justin Timberlake -Edwin Jackson -Elizabeth Blackwell -Paula Modersohn-Becker -Wilder Penfield -Virginia Woolf -Super Bowl Commercials 2018 -Winter Olympics -Paula Modersohn-Becker -Valentines Day -Super Bowl score -Snapchat Update -Adam Rippon -Sergei Eisenstein -Football Playoffs 2018 -Olivia Munn -Elizabeth Blackwell -Government shutdown -New England Patriots owner -Paula Modersohn-Becker -Cedi Osman -Trump State of the Union -Tesla in space -Wilder Penfield -Tom Petty -Winter Olympics -Puppy Bowl 2018 -Amazon HQ2 -Harry Styles -Super Bowl score -Super Bowl 2018 -Yura Min -Wilder Penfield -Daryle Singletary -Vikings Vs Eagles -Blue Moon -Super blue blood Moon -Did the Groundhog See His Shadow -Wilder Penfield -Elizabeth Blackwell -Sergei Eisenstein -SpaceX -Super blue blood Moon -Solo Trailer -Chinese New Year 2018 -Alison Brie -Florida shooting -Florida shooting -Culture 2 -Wilder Penfield -Dwyane Wade -Super Bowl score -Stock Market Crash Today -Berkshire Hathaway -Carter G. Woodson -Winter Olympics -Paula Modersohn-Becker -Justin Timberlake -Fifty Shades Freed -Florida shooting -Carter G. Woodson -Super Bowl 2018 -What Time Is The Super Bowl -Larry Nassar -Kim Kardashian -Virginia Woolf -Sergei Eisenstein -SpaceX -This Is Us -Oar Olympics -Forever My Girl -Puppy Bowl 2018 -Sergei Eisenstein -Elizabeth Blackwell -Robert Wagner -weather tomorrow -Virginia Woolf -Wilder Penfield -This Is Us -Chris Mazdzer -Amy Schumer -Florida shooting -Vanessa Marcil -Super Bowl 2018 -Elizabeth Blackwell -Fredo Santana -SpaceX -Florida shooting -Chinese New Year 2018 -Elton John -Kawhi Leonard -Jason Momoa -NBC Sports -Paula Modersohn-Becker -Winter Olympics -Oscar Nominations 2018 -Patriots -Call Me by Your Name -Oscar Nominations 2018 -Super Bowl 2018 -Ncaa Basketball Top 25 -Eli Manning -Florida shooting -Luke Wilson -Wilder Penfield -Did the Groundhog See His Shadow -SpaceX -Elizabeth Blackwell -Blake Griffin -What Time Is The Super Bowl -Sergei Eisenstein -Super blue blood Moon -Florida shooting -Patriots -UFC 220 -Elizabeth Blackwell -Government Shutdown -Johnny Weir -XFL -Anna Kournikova -Winter Olympics -What Time Is The Super Bowl -Olympic Medal Count -Terry Bradshaw -Winter Olympics -Patriots -What Time Is The Super Bowl -Super Bowl 2018 -Carter G. Woodson -Government shutdown -Mardi Gras 2018 -Wilder Penfield -NBA Trades -Super Bowl 2018 -Super Bowl 2018 halftime show -Lou Anna Simon -Super blue blood Moon -Winter Olympics -Elizabeth Blackwell -What Time Is The Super Bowl -Logan Paul -Carter G. Woodson -Winter Olympics -Florida shooting -Justin Timberlake -Nintendo Labo -Lunar eclipse -Women's March 2018 -UFC 220 -Winter Olympics -Chrissy Teigen -Westerville Ohio -Houston Rockets -Virginia Woolf -Mardi Gras 2018 -Winter Olympics -Sergei Eisenstein -Sergei Eisenstein -Wilder Penfield -SpaceX -SpaceX -Vikings Vs Eagles -What Time Is The Super Bowl -Left Shark -Super Bowl score -Chris Long -Jacob Copeland -Elizabeth Blackwell -Winter Olympics -Winter Olympics -Virginia Woolf -Meteor -Sergei Eisenstein -Super Bowl score -Bellator 192 -Super Bowl 2018 -Dow Jones -Valentines Day -Paula Modersohn-Becker -Super Bowl score -Winter Olympics -Elizabeth Blackwell -SpaceX -Alex Smith -Super Bowl 2018 -Isaiah Thomas -Carter G. Woodson -Wilder Penfield -Valentines Day -Alaska earthquake -Justin Timberlake -Sergei Eisenstein -Google Drive -Wilder Penfield -Oscar Nominations 2018 -Kylie Jenner -What Time Is The Super Bowl -Paula Modersohn-Becker -Josh McDaniels -Paula Modersohn-Becker -Super Bowl score -CNN -Super Bowl 2018 -NBA Trades -Joy Villa -Kesha Grammy -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl 2018 -Rose McGowan -Florida shooting -This Is Us -Alex Reimer -Rasual Butler -Russell Wilson -Florida shooting -Jennifer Aniston -Sergei Eisenstein -Vikings Vs Eagles -Winter Olympics -Wilder Penfield -NBA Trades -Wilder Penfield -Super Bowl 2018 -James Harden -Bitcoin Price -Justin Timberlake -Virginia Woolf -Zion Williamson -Virginia Woolf -Super Bowl score -Justin Timberlake -Justin Timberlake -Wilder Penfield -UFC 220 -Super Bowl 2018 -Kylie Jenner -Andrew Cunanan -Paula Modersohn-Becker -Mark Salling -Patriots -Super Bowl score -Shaun White -Hope Hicks -Patriots -What Time Is The Super Bowl -Wilder Penfield -Paula Modersohn-Becker -Super Bowl 2018 -Winter Olympics -Sergei Eisenstein -Shaun White -Caitlin McHugh -Winter Olympics -Jennifer Aniston -Super Bowl score -Sergei Eisenstein -stock market -Justin Timberlake -Winter Olympics -Larry Nassar -Joe Kennedy -Rodney Hood -Anthony Davis -Elizabeth Blackwell -Government Shutdown Meaning -Carter G. Woodson -SpaceX -Paula Modersohn-Becker -Blue Ivy -Isaiah Thomas -Carter G. Woodson -Altered Carbon -Happy Valentines Day -Florida shooting -Government Shutdown -New England Patriots owner -Dwyane Wade -Alex Smith -Elizabeth Blackwell -Florida shooting -Elizabeth Blackwell -Black Panther -Justin Timberlake -Virginia Woolf -Carter G. Woodson -Mikaela Shiffrin -Wilder Penfield -Kylie Jenner -Logan Paul -Obama portrait -Government Shutdown Meaning -Valentines Day -Olympics 2018 -All Star Weekend 2018 -Government shutdown 2018 -Childish Gambino -Emily Sweeney -Grammys 2018 -Wilder Penfield -Erykah Badu -Super Bowl 2018 -Meteor -Meteor -PlayStation Network -SpaceX -Justin Timberlake -Sergei Eisenstein -SpaceX -Super Bowl 2018 -Bob Marley -Warren Miller -Super Bowl score -Government Shutdown -Super blue blood Moon -Black Panther -Real Madrid -Paula Modersohn-Becker -Steve Wynn -Sergei Eisenstein -What Time Is The Super Bowl -Super Bowl 2018 -Florida shooting -Elizabeth Blackwell -Elizabeth Blackwell -Patriots -Wilder Penfield -Paula Modersohn-Becker -Winter Olympics -Patriots -Esteban Loaiza -Mark Salling -Florida shooting -Black Panther -Elizabeth Blackwell -Happy Valentines Day -Patriots -Patriots -Sergei Eisenstein -Grammys 2018 -Tom Brady daughter -Super blue blood Moon -Bob Dole -Aaron Fies -Larry Nassar -Meteor -Ash Wednesday -Government Shutdown -Paula Modersohn-Becker -Elizabeth Blackwell -Dow Jones industrial average -Justin Timberlake -AR-15 -Patriots -Pyeongchang 2018 Olympic Winter Games -Government shutdown 2018 -Tom Brady -Patriots -Fredo Santana -National Pizza Day -Super Bowl score -Jamie Anderson -Steven Tyler -Sergei Eisenstein -UFC 221 -Blake Griffin -Super Bowl score -Shaun White -SpaceX -Omarosa -Carter G. Woodson -Black Panther -Government shutdown 2018 -Kylie Jenner -Mark Salling -Fifty Shades Freed -Sergei Eisenstein -Caitlin McHugh -Cloverfield Paradox -Winter Olympics -Did the Groundhog See His Shadow -12 Strong -Tom Brady daughter -Andrew Cunanan -NBA Trades -Carter G. Woodson -Columbine Shooting -Carl Higbie -Fredo Santana -Elizabeth Blackwell -Kentucky shooting -Super blue blood Moon -Columbine Shooting -Trump State of the Union -Justin Timberlake -Peter Rabbit -Olympic Medal Count -Super Bowl 2018 -Cory Booker -Virginia Woolf -Did the Groundhog See His Shadow -Pro Bowl 2018 -Super Bowl 2018 -Friends The Movie 2018 -Grammys 2018 -Amy Schumer -Super Bowl 2018 -Sandy Hook -Red Gerard -Sergei Eisenstein -Paula Modersohn-Becker -Memo -The 15:17 to Paris -Government Shutdown -Florida shooting -Dua Lipa -Obama portrait -Vikings Vs Eagles -Kylie Jenner -John Mahoney -Patriots -Virginia Woolf -Elizabeth Blackwell -Kesha Grammy -Sergei Eisenstein -Paula Modersohn-Becker -Elizabeth Blackwell -Shaun White -Jamie Anderson -Carter G. Woodson -Sergei Eisenstein -Sergei Eisenstein -Patriots -Celtics -Happy Valentines Day -Larry Nassar -Winter Olympics -Bellator 192 -Super Bowl Commercials 2018 -Florida shooting -Lindsey Vonn -Government shutdown 2018 -Ash Wednesday -Winter Olympics -stock market -Elizabeth Blackwell -John Mahoney -Kylie Jenner -Virginia Woolf -Winter Olympics -Sergei Eisenstein -Oar Olympics -Carter G. Woodson -Paula Modersohn-Becker -Government Shutdown Meaning -Justin Timberlake -Carter G. Woodson -Super blue blood Moon -Joel Taylor -Florida shooting -United States Of America Winter Olympics -Olive Garden -Jessica Chastain -AFC Championship Game 2018 -Scott Baio -Ash Wednesday -Grammys 2018 -Paula Modersohn-Becker -SpaceX -Steve Mcnair -Paula Modersohn-Becker -Dolly Parton -Patriots -Government Shutdown -Super Bowl 2018 -Sergei Eisenstein -Trump Hair -Larry Nassar -Patriots -NASA -Paula Modersohn-Becker -Alessia Cara -Real Madrid -SpaceX -Snapchat Update -Sergei Eisenstein -Nintendo Labo -Kim Cattrall -Paula Modersohn-Becker -Adam Rippon -Vanessa Trump -Virginia Woolf -Virginia Woolf -Super Bowl Commercials 2018 -Super Bowl 2018 -What Time Is The Super Bowl -Otto Warmbier -Taiwan -Jeffrey Tambor -Super Bowl 2018 -Paula Modersohn-Becker -Patriots -Government Shutdown -Chris Stapleton -Grammys 2018 -Patriots -Super Bowl score -SpaceX -Super Bowl 2018 -Florida shooting -NSA -School closings -Florida shooting -Super Bowl score -school closings -Super blue blood Moon -Justin Timberlake -Chicago West -Elizabeth Blackwell -Paula Modersohn-Becker -Sergei Eisenstein -Mardi Gras 2018 -JUUL -Amy Schumer -Mark Salling -Paula Modersohn-Becker -Florida shooting -Sergei Eisenstein -Elizabeth Blackwell -Super Bowl 2018 -Robby Anderson -Paula Modersohn-Becker -Kesha -Heath Ledger -Shaun White -Wilder Penfield -Megan Barry -Elizabeth Blackwell -Florida shooting -SpaceX -Google Classroom -Paula Modersohn-Becker -Kylie Jenner -Virginia Woolf -Happy Valentines Day -Grammys 2018 -Florida shooting -Winter Olympics -Columbine Shooting -Blood Moon -Andre the Giant -Olympic Medal Count -Sergei Eisenstein -Real Madrid -calculator -Valentines Day -Enzo Amore -Patriots -SAG Awards 2018 -Virginia Woolf -Dwyane Wade -Dow Jones -Kingdom Come Deliverance -Valentines Day -Winchester -Patriots -Farmers Insurance Open 2018 -Sergei Eisenstein -Super blue blood Moon -Dow Jones -Vikings Vs Eagles -Virginia Woolf -Super Bowl 2018 -Super Bowl score -Super Bowl 2018 -Kentucky shooting -Google Classroom -Government Shutdown -Fredo Santana -Puppy Bowl 2018 -Outback Steakhouse -Winter Olympics -Winter Olympics -Carter G. Woodson -calculator -Wilder Penfield -Sergei Eisenstein -Wilder Penfield -Paula Modersohn-Becker -Mark Salling -Terrell Owens -Super Bowl 2018 -Steve Wynn -Google Classroom -Sergei Eisenstein -This Is Us -Virginia Woolf -Larry Nassar -Andrew McCabe -Super Bowl score -Groundhog Day 2018 -Wilder Penfield -Super Bowl 2018 -Vikings Vs Eagles -Virginia Woolf -Westminster Dog Show 2018 -AFC Championship Game 2018 -Shaun White -Patriots -Government Shutdown -Jessica Chastain -Larry Nassar -Memo -Sergei Eisenstein -Patriots -Presidents Day 2018 -Mikaela Shiffrin -Release The Memo -Russell Wilson -The Home Depot -James Baldwin -Royal Rumble 2018 -Super Bowl score -Justin Timberlake -Eli Manning -Super Bowl score -Super Bowl 2018 -Carter G. Woodson -Grammys 2018 -Patti LuPone -Atlanta Weather -Childish Gambino -Carter G. Woodson -Puppy Bowl 2018 -Vikings Vs Eagles -Doomsday Clock -Elizabeth Blackwell -Google docs -Sergei Eisenstein -Sergei Eisenstein -Carter G. Woodson -Adam Rippon -Carter G. Woodson -SAG Awards 2018 -National Pizza Day -What Time Is The Super Bowl -Duke Basketball -Florida shooting -Carter G. Woodson -Winter Olympics -NBA Trades -Elizabeth Blackwell -Joe Kennedy -Patriots -Paula Modersohn-Becker -Winter Olympics -Trump State of the Union -Roger Federer -Government Shutdown 2018 -Ar 15 -Nancy Pelosi -Patriots -Government Shutdown -Happy Valentines Day -Hostiles -Winter Olympics -Super Bowl score -All Star Weekend 2018 -Elizabeth Blackwell -Groundhog Day 2018 -Ursula Le Guin -Sergei Eisenstein -Paula Modersohn-Becker -Lunar eclipse -Valentines Day -Super Bowl 2018 -Justin Timberlake -Adam Rippon -Winter Olympics -Patriots -Paula Modersohn-Becker -The 15:17 to Paris -Patriots -Grammys 2018 -Super Bowl score -Valentines Day -Winter Olympics -Rasual Butler -Elizabeth Blackwell -Government Shutdown -What Time Is The Super Bowl -UFC 220 -Korea -Kevin Love -Obama portrait -The 15:17 to Paris -Winter Olympics -SpaceX -Virginia Woolf -SAG Awards 2018 -Patriots -Oscar Nominations 2018 -Shaun White -Super Bowl 2018 -Royal Rumble 2018 -Steve Wynn -Mardi Gras 2018 -Virginia Woolf -Oscar Nominations 2018 -Super Bowl score -government shutdown -Alaska earthquake -Chloe Kim Snowboarder -Bitcoin Price -What Time Is The Super Bowl -What Time Is The Super Bowl -Sergei Eisenstein -Winter Olympics -SpaceX -Valentines Day Images -Chris Mazdzer -Super Bowl score -Tonga -Omarosa -Carter G. Woodson -Lonzo Ball -Winter Olympics -Sergei Eisenstein -Paula Modersohn-Becker -Government Shutdown -CNN -Sergei Eisenstein -Paula Modersohn-Becker -Florida shooting -Virginia Woolf -Carter G. Woodson -Trump State of the Union -Julie Ertz -Super Bowl score -Edwin Jackson -Sergei Eisenstein -Riverdale -Jimmy Garoppolo -Houston Rockets -Paula Modersohn-Becker -Virginia Woolf -XFL -Carter G. Woodson -school closings -Groundhog Day 2018 -Winter Olympics -Florida shooting -SpaceX -happy new year in Chinese -Chloe Kim -Virginia Woolf -Elizabeth Blackwell -Super Bowl 2018 -SpaceX -XFL -Super Bowl score -SpaceX -Carter G. Woodson -Hostiles -Sergei Eisenstein -Justin Timberlake -Josh Allen -Sandy Hook -Winter Olympics -Anastasia Bryzgalova -Happy Valentines Day -Super Bowl Commercials 2018 -Government shutdown 2018 -Justin Timberlake -CNN -Elton John -Florida shooting -Reg E Cathey -Obama portrait -Super Bowl 2018 -Despacito -Carter G. Woodson -Shaun White -New England Patriots owner -What Time Is The Super Bowl -Virginia Woolf -Dow Jones -school closings -Larry Nassar -Elon Musk -Grammys 2018 -Outback Steakhouse -Winter Olympics -Grammys 2018 -Oscar Nominations 2018 -Daryle Singletary -What Time Is The Super Bowl -Memo -Elizabeth Blackwell -Russell Wilson -Memo -Gigi Hadid -Wilder Penfield -Black Panther -Happy Valentines Day -Robert Wagner -Bitcoin Price -Super Bowl score -Patriots -Carrie Underwood -Larry Nassar -SAG Awards 2018 -Groundhog Day 2018 -Wilder Penfield -Zion Williamson -Winter Olympics -Kylie Jenner -Royal Rumble 2018 -Super Bowl 2018 -Stock Market Crash Today -Ellen Pompeo -Solo Trailer -Post Malone -Government shutdown -Winchester -Kylie Jenner -Mikaela Shiffrin -Super Bowl Commercials 2018 -Woody Allen -Carter G. Woodson -Winter Olympics -Winter Olympics -Trey Gowdy -government shutdown -Alex Smith -Sergei Eisenstein -Bitcoin Price -Dwyane Wade -Olympic medal count -calculator -Walter Payton -Olympic Medal Count -This Is Us -Kesha Grammy -Valentines Day -Carter G. Woodson -Esteban Loaiza -Kylie Jenner -Blake Griffin -Olympic medal count -Fredo Santana -Justin Timberlake -Carter G. Woodson -Justin Timberlake -Government Shutdown -Super Bowl 2018 -Google docs -Simona Halep -Justin Timberlake -United States Postal Service -Kylie Jenner -Super Bowl 2018 -Chris Stapleton -Obama portrait -Rose McGowan -Carter G. Woodson -Zion Williamson -Jennifer Aniston -Eli Manning -Virginia Woolf -Dennis Edwards -Patriots -Valentines Day -Dow Jones -Florida shooting -Florida shooting -Super Bowl 2018 -Rodney Hood -Sergei Eisenstein -Happy Valentines Day -SpaceX -Government Shutdown -SpaceX -Black Panther -Wilder Penfield -Virginia Woolf -Winter Olympics -Paula Modersohn-Becker -Kylie Jenner -Snake -Bitcoin Price -OKC Thunder -Kylie Jenner -Sergei Eisenstein -Bellator 192 -Super Bowl 2018 -Super Bowl score -Lil Pump -Super Bowl score -Virginia Woolf -Duke basketball -Kodak Black -Memo -Terrell Owens -Super Bowl 2018 -School closings -Florida shooting -Neil Diamond -Paula Modersohn-Becker -NBA Trades -Elizabeth Blackwell -Virginia Woolf -Super Bowl score -Super blue blood Moon -Jason Momoa -Did the Groundhog See His Shadow -Carter G. Woodson -Bitcoin Price -Dow Jones -Alessia Cara -Dane Cook -Maze Runner: The Death Cure -Samson -Google Drive -Valentines Day Memes -Super Bowl 2018 -Robert Wagner -Elizabeth Blackwell -Virginia Woolf -fake news awards -Virginia Woolf -Wilder Penfield -Winter Olympics -Derrick Rose -XFL -Justin Timberlake -Rasual Butler -stock market -Best Superbowl Commercials 2018 -Wilder Penfield -Carter G. Woodson -Government shutdown -Super Bowl score -Florida shooting -Childish Gambino -Super Bowl 2018 -Obama portrait -IXL -Kylie Jenner -What Time Is The Super Bowl -Elizabeth Blackwell -Carter G. Woodson -Mark Salling -Get Out -Super Bowl score -Josh McDaniels -Super Bowl score -SpaceX -Winter Olympics -Paula Modersohn-Becker -Friends movie -Jessica Chastain -Super Bowl 2018 -Super Bowl score -Duke Basketball -Bitcoin Price -February -Paula Modersohn-Becker -Government shutdown 2018 -Patriots -Super Bowl score -Forever My Girl -Sergei Eisenstein -Did the Groundhog See His Shadow -Simona Halep -Dow Jones -Sergei Eisenstein -school closings -Vikings vs Eagles -Korea -Sergei Eisenstein -Pro Bowl 2018 -SpaceX -Justin Timberlake -Wilder Penfield -Patriots -Super Bowl score -Wilder Penfield -Jason Kelce -Wilder Penfield -What Time Is The Super Bowl -Virginia Woolf -Super Bowl 2018 -Cloverfield Paradox -Florida shooting -State of the Union -Justin Timberlake -Royal Rumble 2018 -Super Bowl score -Elon Musk -Alessia Cara -Wilder Penfield -Kylie Jenner -Virginia Woolf -SpaceX -Scott Baio -Carter G. Woodson -Florida shooting -Trump State of the Union -Justin Timberlake -Royal Rumble 2018 -Virginia Woolf -Florida shooting -Chris Stapleton -Patriots -OKC Thunder -Florida shooting -Kylie Jenner -Nba All Star 2018 -SpaceX -Super Bowl 2018 -Justin Timberlake -Winter Olympics -Wilder Penfield -Super Bowl score -Ted Bundy -Patriots -Alex Smith -Gianni Versace -Sergei Eisenstein -Royal Rumble 2018 -Paula Modersohn-Becker -Release The Memo -Google Classroom -Patriots -Harley Barber -Shaun White -Patriots -Paula Modersohn-Becker -Winter Olympics -Johnny Weir -Winter Olympics -Hope Hicks -Super Bowl 2018 -Kelly Clark -SAG Awards 2018 -Shaun White -Solo Trailer -Super Bowl score -calculator -Super Bowl 2018 -Peter Rabbit -Government Shutdown -Patriots -Patti LuPone -Grammys 2018 -Sergei Eisenstein -Vince McMahon -Super Bowl Commercials 2018 -Super blue blood Moon -Luke Wilson -Sergei Eisenstein -Conor McGregor -Patriots -Wilder Penfield -Patriots -Vikings vs Eagles -Sergei Eisenstein -Classroom -Royal Rumble 2018 -Sabrina Dhowre -Gods Plan -Bitcoin Price -Super Bowl 2018 -Jennifer Aniston -Paula Modersohn-Becker -Oar Olympics -Sergei Eisenstein -Paula Modersohn-Becker -Grammys 2018 -State of the Union -Ar 15 -Patriots -Shaun White -Tom Petty -Memo -Josh McDaniels -NBA Trades -SpaceX -Wilder Penfield -Obama portrait -Wilder Penfield -Alaska earthquake -Super blue blood Moon -Evgenia Medvedeva -Larry Nassar -Virginia Woolf -Mark Salling -Elizabeth Blackwell -VIX -Patriots -Wilder Penfield -Paula Modersohn-Becker -Lakers -Government Shutdown -Chris Mazdzer -SpaceX -Super Bowl score -Grammys 2018 -earthquake today -Kylie Jenner -SpaceX -Super Bowl 2018 -Vikings Vs Eagles -Lakers -Sergei Eisenstein -Super Bowl 2018 -Berkshire Hathaway -Elizabeth Blackwell -Sean Hannity -Dow Jones -Lee Miglin -Sergei Eisenstein -Friends The Movie 2018 -Paula Modersohn-Becker -Luke Wilson -Patriots -Government Shutdown -Pro Bowl 2018 -Google docs -Patriots -Super Bowl score -Ash Wednesday -Grammys 2018 -Virginia Woolf -Florida shooting -Patriots -Champions League -Paula Modersohn-Becker -Elizabeth Blackwell -Farmers Insurance Open 2018 -Jessica Chastain -SpaceX -State of the Union -Tyler Hilinski -Sergei Eisenstein -Kylie Jenner -Elizabeth Blackwell -Robert Wagner -Government Shutdown -Winter Olympics -Carter G. Woodson -Paula Modersohn-Becker -Tom Brady -Super Bowl 2018 -Super Bowl score -Farmers Insurance Open 2018 -Patriots -SpaceX -Conor McGregor -Justin Timberlake -Alex Smith -Chinese New Year 2018 -Phantom Thread -national signing day 2018 -Patriots -What Time Is The Super Bowl -Oscar Nominations 2018 -New England Patriots owner -Sergei Eisenstein -Paula Modersohn-Becker -Valentines Day -Sergei Eisenstein -Kim Kardashian -Blake Griffin -Puppy Bowl 2018 -Paula Modersohn-Becker -State of the Union -Elizabeth Blackwell -Winter Olympics -Matt Patricia -Happy Valentines Day -Virginia Woolf -Julie Bowen -Carter G. Woodson -Adam Rippon -Patriots -Kim Kardashian -Virginia Woolf -Winter Olympics -Despacito -Winter Olympics -Super Bowl 2018 -Vince McMahon -Jalen Ramsey -Florida shooting -State of the Union -Wilder Penfield -Patti LuPone -Dennis Edwards -Trey Gowdy -Vikings Vs Eagles -Fredo Santana -Carter G. Woodson -SpaceX -XFL -State of the Union -Kentucky shooting -Florida shooting -Virginia Woolf -Paula Modersohn-Becker -Paula Modersohn-Becker -Sergei Eisenstein -Wilder Penfield -Virginia Woolf -Virginia Woolf -Black Panther -Kelly Clark -Did the Groundhog See His Shadow -Super Bowl score -Super Bowl 2018 -Justin Timberlake -Justin Timberlake -Kentucky shooting -Larry Nassar -Carter G. Woodson -Sergei Eisenstein -Florida shooting -Kylie Jenner -Super Bowl 2018 -Peter Rabbit -Black Panther -The Resident -Jennifer Aniston -Blood Moon -Matt Patricia -Fredo Santana -Government Shutdown -Florida shooting -Google docs -Virginia Woolf -SpaceX -stock market -Virginia Woolf -Sergei Eisenstein -Wilder Penfield -Super Bowl 2018 -Winter Olympics -Virginia Woolf -VIX -Obama portrait -Gregory Salcido -Dow Jones -This is Us -Virginia Woolf -Elton John -Puppy Bowl 2018 -Peter Rabbit -Paula Modersohn-Becker -Andre Roberson -Super blue blood Moon -Venom -school closings -Paula Modersohn-Becker -Elizabeth Blackwell -Kylie Jenner -Florida shooting -Winter Olympics -Mark Salling -Carter G. Woodson -Mardi Gras 2018 -Classroom -Sergei Eisenstein -Vikings Vs Eagles -Bruno Mars -Earthquake Today -Happy Valentines Day -Winter Olympics -Vikings Vs Eagles -Justin Timberlake -Trey Gowdy -Early Man -Super Blue Blood Moon -Matt Patricia -Oscar Nominations 2018 -Sergei Eisenstein -Kate Upton -Doomsday Clock -Elizabeth Blackwell -Super Bowl score -Winter Olympics -Wilder Penfield -Justin Timberlake -Patriots -Dow Jones -Omarosa -Chicago Weather -Paula Modersohn-Becker -XFL -Virginia Woolf -Kylie Jenner -Florida shooting -Florida shooting -What Time Is The Super Bowl -Isaiah Thomas -Government Shutdown 2018 -United States Of America Winter Olympics -Cory Booker -Government Shutdown -Justin Timberlake -Sergei Eisenstein -Justin Timberlake -Tyler Hilinski -Kim Kardashian -Government Shutdown -Isaiah Thomas -Mikaela Shiffrin -Hope Hicks -Carter G. Woodson -Chinese New Year 2018 -Sergei Eisenstein -Winter Olympics -Virginia Woolf -Elizabeth Blackwell -Florida shooting -Alex Smith -Sergei Eisenstein -Florida shooting -Super Bowl score -Super Bowl 2018 -Bill Paxton -Elizabeth Blackwell -Kylie Jenner -Jason Kelce -Paula Modersohn-Becker -National Pizza Day -Virginia Woolf -Elizabeth Blackwell -Patriots -Groundhog Day 2018 -Gianni Versace -Carter G. Woodson -Duke Basketball -Virginia Woolf -Florida shooting -Mark Salling -Winter Olympics -Florida shooting -Sergei Eisenstein -Wilder Penfield -Larry Nassar -curling -Chris Long -Mary And The Witch's Flower -Super Bowl 2018 -New California -Anastasia Bryzgalova -What Time Is The Super Bowl -Jamie Anderson -Carter G. Woodson -Virginia Woolf -What Time Is The Super Bowl -Florida shooting -Black Panther -Den of Thieves -Elizabeth Blackwell -Justin Timberlake -Carter G. Woodson -Jamie Anderson -Steve Wynn -Luke Wilson -What Time Is The Super Bowl -Larry Nassar -Black Panther -Florida shooting -Lonzo Ball -Wilder Penfield -What Time Is The Super Bowl -Patti LuPone -Megan Barry -Happy Valentines Day -Kesha -Florida shooting -Florida shooting -What Time Is The Super Bowl -Google Drive -What Time Is The Super Bowl -Sergei Eisenstein -Super Bowl 2018 -What Time Is The Super Bowl -Puppy Bowl 2018 -Gods Plan -What Time Is The Super Bowl -Mark Salling -What Time Is The Super Bowl -Super Bowl score -SpaceX -Kylie Jenner -Bode Miller -Elizabeth Blackwell -Paula Modersohn-Becker -Super Bowl 2018 -Virginia Woolf -Gigi Hadid -Mitt Romney -Florida shooting -Sergei Eisenstein -Edwin Jackson -Larry Nassar -Winter Olympics -Tom Petty -Super Bowl Commercials 2018 -Paula Modersohn-Becker -Bellator 192 -Wilder Penfield -Government Shutdown -Korea -Nba All Star Draft -United States Postal Service -What Time Is The Super Bowl -Winter Olympics -Justin Timberlake -Mardi Gras 2018 -Dennis Edwards -Super Bowl score -Black Panther -Hillary Clinton -Grammys 2018 -Carter G. Woodson -Patriots -Olympic Medal Count -Dwyane Wade -Dow Jones -Wilder Penfield -Rasual Butler -What Time Is The Super Bowl -Carter G. Woodson -Grammys 2018 -Winter Olympics -Carter G. Woodson -Sergei Eisenstein -Grammys 2018 -Grammys 2018 -What Time Is The Super Bowl -Slender Man -Daytona 500 -Super blue blood Moon -Ar 15 -Carter G. Woodson -Chloe Kim -SAG Awards 2018 -Paula Modersohn-Becker -Larry Nassar -Sergei Eisenstein -Sergei Eisenstein -Vikings Vs Eagles -Mr Rogers -The Resident -Sergei Eisenstein -Celebrity Big Brother cast -Winter Olympics -Florida shooting -curling -Rasual Butler -Virginia Woolf -Tom Brady -Virginia Woolf -Elizabeth Blackwell -Rodney Hood -Super Bowl 2018 -Groundhog Day 2018 -Kevin Durant -Chipper Jones -Florida shooting -Steve Mcnair -Winter Olympics -Dow Jones -Elizabeth Blackwell -Super Bowl 2018 -Luke Wilson -Grammys 2018 -Government Shutdown -Winter Olympics -Justin Timberlake -Paula Modersohn-Becker -Winter Olympics -Fifty Shades Freed -Oscar Nominations 2018 -Virginia Woolf -SAG Awards 2018 -Shaun White -School Closings -Google Classroom -Terrell Owens -Oscar Nominations 2018 -Kylie Jenner -Vikings Vs Eagles -Senior Bowl -Super Bowl 2018 -Nba All Star 2018 -Patriots -Super Bowl 2018 -Elizabeth Blackwell -Government Shutdown -Kylie Jenner -Mardi Gras 2018 -Alex Smith -Super Bowl score -Mardi Gras 2018 -Dwyane Wade -Royal Rumble 2018 -Jalen Ramsey -Grammys 2018 -Justin Timberlake -Super Bowl 2018 -Did the Groundhog See His Shadow -Justin Timberlake -Jessica Biel -Vikings vs Eagles -Mark Salling -Early Man -Pro Bowl 2018 -Den of Thieves -Virginia Woolf -Ellen DeGeneres -Florida shooting -Bitcoin Price -Florida shooting -Carter G. Woodson -Tom Petty -Rose McGowan -Real Madrid -Patti LuPone -SpaceX -Luke Wilson -Paula Modersohn-Becker -Oar Olympics -Carter G. Woodson -Florida shooting -XFL -Obama portrait -Carter G. Woodson -Super Bowl score -Eli Manning -Memo -Carter G. Woodson -Woody Allen -Super Bowl score -Super Bowl 2018 -Robert Wagner -Government shutdown 2018 -Toys R Us -Virginia Woolf -Bitcoin Price -Natalie Wood -Den of Thieves -Patriots -Florida shooting -Kentucky shooting -Release The Memo -Bitcoin Price -Olympic medal count -The Alienist -Super Bowl 2018 -Super Bowl score -The 15:17 to Paris -Wilder Penfield -calculator -calculator -Florida shooting -Larry Nassar -Vanity Fair Cover -Memo -Sergei Eisenstein -Sergei Eisenstein -Super Bowl 2018 -Justin Timberlake -Virginia Woolf -Nikki Haley -Champions League -Happy Valentines Day -Johnny Weir -Jason Kelce -Grammys 2018 -What Time Is The Super Bowl -Virginia Woolf -Bill Parcells -Tom Brady -Government shutdown -Wilder Penfield -Wilder Penfield -Camila Cabello -Virginia Woolf -Alaska earthquake -Florida shooting -Super Bowl score -Fredo Santana -Bitcoin Price -Government shutdown -This Is Us -Dow Jones -Sergei Eisenstein -Dow Jones -Super Bowl score -Steve Wynn -Cavs -Kylie Jenner -Sergei Eisenstein -Elizabeth Blackwell -Sergei Eisenstein -Winter Olympics -Elizabeth Blackwell -Scott Baio -Super Bowl 2018 -LeBron James -Government Shutdown 2018 -Elizabeth Blackwell -Blood Moon -Wilder Penfield -Hillary Clinton -Andrew Cunanan -Did the Groundhog See His Shadow -Grammys 2018 -Virginia Woolf -Kesha Grammy -Andrew Cunanan -NBA Trades -Winter Olympics -Tyler Hilinski -Elizabeth Blackwell -Super Bowl score -Forever My Girl -NSA -Joe Kennedy -Larry Nassar -Kylie Jenner -Super Bowl 2018 -Cavs -Paula Modersohn-Becker -Super Bowl score -The 15:17 to Paris -Wilder Penfield -Government Shutdown Meaning -Rodney Hood -Super Bowl 2018 -Paula Modersohn-Becker -Grammys 2018 -Black Panther -Conor McGregor -New England Patriots owner -Puppy Bowl 2018 -Betty White -Happy Valentines Day -Walter Payton -Elizabeth Blackwell -Google Drive -Chicago West -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl score -Paula Modersohn-Becker -Wilder Penfield -John Mahoney -Vikings Vs Eagles -Paula Modersohn-Becker -Tonga -Lindsey Vonn -SpaceX -Kylie Jenner -Joe Kennedy -Patriots -Justin Timberlake -Florida shooting -Super Bowl 2018 -Cavs -Cloverfield Paradox -Kylie Jenner -Sergei Eisenstein -Carter G. Woodson -Patriots -Steve Mcnair -Virginia Woolf -Florida shooting -Super Bowl 2018 -Sergei Eisenstein -Grammys 2018 -Celebrity Big Brother cast -Dwyane Wade -Mark Salling -Sergei Eisenstein -Fredo Santana -Winter Olympics -Chloe Kim -Black Panther -Winter Olympics -Joe Kennedy -Virginia Woolf -New California -Alex Smith -Tiger Woods -Winter Olympics -Elizabeth Blackwell -Luke Wilson -SAG Awards 2018 -Kingdom Come Deliverance -Florida shooting -Tom Petty -Patriots -Kylie Jenner Baby Girl -Kylie Jenner -Super Bowl score -Winter Olympics -Kylie Jenner -Super Bowl score -Elizabeth Blackwell -Patriots -Virginia Woolf -Black Panther -Virginia Woolf -Patriots -Wilder Penfield -Wilder Penfield -Edible Arrangements -Super Bowl score -Meteor -Bitcoin Price -Larry Nassar -NBA Trades -Stan Lee -Carter G. Woodson -Winter Olympics -Hope Hicks -Happy Valentines Day -Jeff Flake -Grammys 2018 -School Closings -Ash Wednesday -Venom -Happy Valentines Day -school closings -Florida shooting -Super Bowl Winners -Kylie Jenner -Carter G. Woodson -CNN -Government Shutdown Meaning -Cloverfield Paradox -SpaceX -Winter Olympics -Olivia Munn -Childish Gambino -Brie Larson -Wilder Penfield -Black Panther -Sergei Eisenstein -Jennifer Aniston -Puppy Bowl 2018 -Florida shooting -Super Bowl score -Carter G. Woodson -Fredo Santana -Cavs -Virginia Woolf -Kylie Jenner -Virginia Woolf -Virginia Woolf -Wilder Penfield -Justin Timberlake -Google Classroom -Dane Cook -Super Bowl score -Carter G. Woodson -Fredo Santana -Patriots -Dow Jones -Solo Trailer -Mardi Gras 2018 -Elizabeth Blackwell -Drake -Virginia Woolf -Groundhog Day 2018 -Jimmy Garoppolo -School Closings -Elizabeth Blackwell -Super Bowl 2018 -Sergei Eisenstein -Montgomery County Public Schools -Oscar Nominations 2018 -Shaun White -Grammys 2018 -Super Bowl score -Winter Olympics -Valentines Day Images -NBC Sports -school closings -Carter G. Woodson -Florida shooting -SpaceX -Meteor -Winter Olympics -Super Bowl 2018 -Chicago West -Fifty Shades Freed -Virginia Woolf -curling -Montgomery County Public Schools -Cloverfield Paradox -Winter Olympics -Snake -Manchester United -Oscar Nominations 2018 -Black Panther -What Time Is The Super Bowl -Sergei Eisenstein -Super Bowl 2018 -Larry Nassar -Carter G. Woodson -Patriots -Rob Porter -NBC Sports -Alison Brie -Florida shooting -Classroom -Google Classroom -Government Shutdown -Florida shooting -OKC Thunder -Virginia Woolf -Super Bowl 2018 -Wonder Woman -Carter G. Woodson -Super Bowl 2018 -Grammys 2018 -Carter G. Woodson -State of the Union -SAG Awards 2018 -Larry Nassar -Don Lemon -Virginia Woolf -Kylie Jenner -NBA Trades -Government Shutdown -Sergei Eisenstein -Elton John -Alex Smith -Vikings Vs Eagles -Paula Modersohn-Becker -Alaska earthquake -Groundhog Day 2018 -Tom Brady daughter -Patriots -Bradie Tennell -Justin Timberlake -Vikings Vs Eagles -Patriots -Florida shooting -Bitcoin Price -Patriots -What Time Is The Super Bowl -Super blue blood Moon -Ncaa Basketball Top 25 -Alison Brie -Black Panther -SpaceX -Sergei Eisenstein -Bitcoin Price -State of the Union -SpaceX -Grammys 2018 -Google Classroom -Black Panther -Vikings vs Eagles -Manchester United -Monster Hunter World -John Mahoney -SAG Awards 2018 -Paula Modersohn-Becker -Carter G. Woodson -Sergei Eisenstein -Omarosa -Duke Basketball -Trump State of the Union -Florida shooting -Wilder Penfield -Oscar Nominations 2018 -Jessica Chastain -Kylie Jenner -Quincy Jones -Royal Rumble 2018 -Presidents Day 2018 -Wilder Penfield -Mardi Gras 2018 -Kentucky shooting -Patriots -Paula Modersohn-Becker -Justin Timberlake -Valentines Day -Patriots -Tiger Woods -Lonzo Ball -Adam Rippon -National Pizza Day -Government Shutdown -Grammys 2018 -Memo -State of the Union -NBA Trades -SpaceX -Patriots -Wilder Penfield -Super Bowl score -Mikaela Shiffrin -Rose McGowan -Super Bowl 2018 -Wilder Penfield -Venom -Groundhog Day 2018 -Paula Modersohn-Becker -Matt Czuchry -Elizabeth Blackwell -Sergei Eisenstein -Kim Kardashian -Government Shutdown 2018 -Betty White -Super Bowl Commercials 2018 -Shaun White -Kate Upton -Chris Long -Super Bowl 2018 -Virginia Woolf -Elizabeth Blackwell -Super Bowl Commercials 2018 -Super Bowl 2018 -Super Bowl 2018 -Florida shooting -SpaceX -Sergei Eisenstein -Super Bowl 2018 -Virginia Woolf -Virginia Woolf -Shaun White -Carter G. Woodson -Virginia Woolf -Virginia Woolf -Carter G. Woodson -Carter G. Woodson -Sergei Eisenstein -Sting -Winter Olympics -Patriots -Grammys 2018 -Oar Olympics -Elizabeth Blackwell -Sergei Eisenstein -Kylie Jenner -Super Bowl score -Patriots -Super Blue Blood Moon -SpaceX -Virginia Woolf -Ant Man and the Wasp -Virginia Woolf -Larry Nassar -Dwyane Wade -Super Bowl 2018 -Blood Moon -Patriots -Kelly Clark -Super Bowl 2018 -Carter G. Woodson -XFL -government shutdown -Elizabeth Blackwell -Danielle Herrington -Blake Griffin -Kylie Jenner -CNN -James Baldwin -Kylie Jenner -Mueller -Kratom -Patriots -Mark Salling -Dwyane Wade -Carter G. Woodson -calculator -Super Bowl Commercials 2018 -Sergei Eisenstein -Patriots -NASA -Wilder Penfield -Red Gerard -Florida shooting -SpaceX -Memo -Elizabeth Blackwell -Florida shooting -SpaceX -Alaska earthquake -Den of Thieves -NBA Trades -Wilder Penfield -Real Madrid -Paula Modersohn-Becker -Paula Modersohn-Becker -Cedi Osman -Florida shooting -Elizabeth Blackwell -Caitlin McHugh -Government shutdown 2018 -Paula Modersohn-Becker -Jason Kidd -Chris Fischer -Sergei Eisenstein -Norovirus -Kylie Jenner -Wilder Penfield -Super Bowl score -Justin Timberlake -Forever My Girl -Happy Valentines Day -Oscar Nominations 2018 -Steve Wynn -Virginia Woolf -Winter Olympics -Carter G. Woodson -Virginia Woolf -Harley Barber -Sergei Eisenstein -Elton John -What Time Is The Super Bowl -Super Blue Blood Moon -Dwyane Wade -Amazon HQ2 -stock market -Florida shooting -Larry Nassar -Larry Nassar -Bitcoin Price -Jennifer Aniston -Red Gerard -Vanessa Trump -Patriots -Jason Kelce -Oscar Nominations 2018 -Yuzuru Hanyu -Logan Paul -Florida shooting -Memo -Paula Modersohn-Becker -Matt Czuchry -Sergei Eisenstein -Chicago West -Super Bowl score -Patriots -National Pizza Day -Kylie Jenner -Patriots -Shaun White -Carter G. Woodson -Dow Jones -CNN -lady gaga grammys -Super Bowl 2018 -Dow Jones -Florida shooting -Kylie Jenner Baby Girl -Kylie Jenner -Super Bowl score -Government Shutdown Meaning -Pro Bowl 2018 -Cavs -Super blue blood Moon -Black Panther -Kratom -Winter Olympics -Super Bowl score -Justin Timberlake -Elizabeth Blackwell -Elizabeth Blackwell -Phantom Thread -Jennifer Aniston -Cloverfield Paradox -Trump State of the Union -Alex Smith -Winter Olympics -Super Bowl score -Google docs -Super Bowl score -Nba All Star Draft -Kodak Black -VIX -Super Bowl score -Super Bowl score -Grammys 2018 -Super Bowl score -Elizabeth Blackwell -Wilder Penfield -Justin Timberlake -Grammys 2018 -Joe Kennedy -Virginia Woolf -Sergei Eisenstein -Carter G. Woodson -Chris Stapleton -Kesha Grammy -Super Bowl score -Patriots -Larry Nassar -Winter Olympics -Florida shooting -Larry Nassar -Sergei Eisenstein -Wilder Penfield -Dwyane Wade -Chicago Weather -Evgenia Medvedeva -Kylie Jenner -Wilder Penfield -calculator -Rasual Butler -Elizabeth Blackwell -State of the Union -SpaceX -Groundhog Day 2018 -Government Shutdown -Carter G. Woodson -Carter G. Woodson -Best Superbowl Commercials 2018 -Wilder Penfield -Elizabeth Blackwell -Florida shooting -Monster Hunter World -Carter G. Woodson -Super Bowl score -Super Bowl 2018 -What Time Is The Super Bowl -Government Shutdown -Elizabeth Blackwell -Nathan Chen -Edible Arrangements -Presidents Day 2018 -Mardi Gras 2018 -Florida shooting -Winter Olympics -Yahoo Finance -Happy Valentines Day -State of the Union -Elizabeth Blackwell -Super Bowl 2018 -H&r Block -Carter G. Woodson -Shaun White -Super Bowl score -Super Bowl 2018 -Wilder Penfield -AR-15 -State of the Union -Zion Williamson -Black Panther -Patriots -Greg Monroe -Elizabeth Blackwell -Bitcoin Price -Kratom -Sergei Eisenstein -Luke Wilson -Elizabeth Blackwell -John Mahoney -Carter G. Woodson -Mikaela Shiffrin -Trump State of the Union -Patriots -Wilder Penfield -Elizabeth Blackwell -Did the Groundhog See His Shadow -Super Bowl score -Florida shooting -Daryle Singletary -Ash Wednesday -Trump State of the Union -Westminster Dog Show 2018 -Kentucky shooting -Luke Wilson -UFC 220 -Fredo Santana -Chicago West -Justin Timberlake -Virginia Woolf -Mark Salling -Patriots -Sergei Eisenstein -Super Bowl score -Government Shutdown Meaning -Grammys 2018 -What Time Is The Super Bowl -Paula Modersohn-Becker -Amazon Stock -Eli Manning -Carter G. Woodson -SpaceX -Shaun White -Virginia Woolf -Paula Modersohn-Becker -Virginia Woolf -fake news awards -Google Classroom -Cavs -Kylie Jenner -Virginia Woolf -Florida shooting -Justin Timberlake -What Time Is The Super Bowl -Grammys 2018 -Wilder Penfield -Super Bowl 2018 -Early Man -Super Bowl score -Chloe Kim -Release The Memo -Government Shutdown -Sergei Eisenstein -Shaun White -Shaun White -Lunar eclipse -Carter G. Woodson -Elton John -Elizabeth Blackwell -Winter Olympics -Obama portrait -Virginia Woolf -Robinhood -Super Bowl score -School Closings -Jeremy London -fake news awards -Sergei Eisenstein -NBC Sports -UFC 220 -Kylie Jenner -The Resident -Dow Jones -Shaun White -Winter Olympics -Virginia Woolf -Super Blue Blood Moon -What Time Is The Super Bowl -Carter G. Woodson -Montreal Cognitive Assessment -Esteban Loaiza -Matt Patricia -Elizabeth Blackwell -Rob Porter -Shiffrin -Grammys 2018 -Sergei Eisenstein -Super Bowl Winners -Government Shutdown -Don Lemon -Chinese New Year 2018 -Virginia Woolf -Larry Nassar -Paula Modersohn-Becker -Yu Darvish -Florida shooting -State of the Union -Winter Olympics -Winter Olympics -Carter G. Woodson -This is Us -Mark Salling -Patriots -Virginia Woolf -XFL -Montreal Cognitive Assessment -Google Classroom -Montreal Cognitive Assessment -Elizabeth Blackwell -Patriots -Justin Timberlake -KSI -Adam Rippon -Government Shutdown -Carter G. Woodson -Steve Wynn -Wilder Penfield -Elizabeth Blackwell -Patriots -Quincy Jones -Super Bowl 2018 -Florida shooting -Larry Nassar -Super Bowl 2018 -Carter G. Woodson -Danielle Herrington -Super Bowl Commercials 2018 -Kylie Jenner -Super Bowl score -Olympic medal count -CNN -Winter Olympics -Paula Modersohn-Becker -Justin Timberlake -Larry Nassar -Winter Olympics -Solo Trailer -Government Shutdown -Matt Czuchry -Virginia Woolf -Paula Modersohn-Becker -Super Bowl score -Larry Nassar -Esteban Loaiza -DeMarcus Cousins -Jason Kelce -Justin Timberlake -Florida shooting -Alex Smith -Puppy Bowl 2018 -Royal Rumble 2018 -Larry Nassar -Kylie Jenner -Patriots -Edwin Jackson -Jason Kidd -Jemele Hill -Brynn Cameron -Lena Zawaideh -Emily Sweeney -Sergei Eisenstein -Florida shooting -Virginia Woolf -Korea -Jennifer Aniston -Bitcoin Price -One Day At A Time -Super Bowl 2018 -Kentucky shooting -Google Drive -Blake Griffin -Kylie Jenner -Monster Hunter World -NBA Trades -Carter G. Woodson -Cloverfield Paradox -Kylie Jenner -Hope Hicks -Government shutdown 2018 -Florida shooting -Elizabeth Blackwell -Super Bowl score -Super Bowl score -Super Bowl score -Super Bowl 2018 -Meteor -Winter Olympics -NFL Honors -John Mahoney -Robinhood -Government Shutdown -Justin Timberlake -Larry Nassar -Isaiah Canaan -Elizabeth Blackwell -Super Blue Blood Moon -Hope Hicks -school closings -Solo Trailer -What Time Is The Super Bowl -Carter G. Woodson -Childish Gambino -Friends movie -What Time Is The Super Bowl -Sammy Sosa -Alaska earthquake -Grammys 2018 -Lena Zawaideh -Elizabeth Blackwell -Kylie Jenner -Winter Olympics -Groundhog Day 2018 -Justin Timberlake -Wilder Penfield -Florida shooting -Elizabeth Blackwell -Patriots -Elton John -Larry Nassar -Government Shutdown -Grammys 2018 -Super Bowl score -Berkshire Hathaway -Alessia Cara -Super Bowl score -Royal Rumble 2018 -State of the Union -XFL -Sergei Eisenstein -Super Bowl 2018 -Super Bowl 2018 -Paula Modersohn-Becker -Kylie Jenner Baby Girl -Super Bowl score -New England Patriots owner -Kim Kardashian -Ar 15 -Yahoo Finance -Winter Olympics -Joe Kennedy -Wilder Penfield -Elizabeth Blackwell -Alex Smith -Paula Modersohn-Becker -Sergei Eisenstein -Government Shutdown Meaning -Sergei Eisenstein -Elizabeth Blackwell -Chloe Kim -Larry Nassar -Patriots -Johnny Weir -Jane Fonda -Rasual Butler -Meteor -The Resident -Maddie Mastro -Justin Timberlake -Winter Olympics -Grammys 2018 -Patriots -Andrew Cunanan -Mark Salling -Yoel Romero -Justin Timberlake -Wilder Penfield -Patriots -What Time Is The Super Bowl -Florida shooting -Super Bowl 2018 -Super Bowl 2018 -Elizabeth Blackwell -Carter G. Woodson -Aaliyah -Lindsey Vonn -Valentines Day -Bob Dole -Kylie Jenner -Mark Salling -Carter G. Woodson -Elizabeth Blackwell -Wilder Penfield -Mueller -Rose McGowan -Blue Moon -Happy Valentines Day -Virginia Woolf -Alaska earthquake -Carter G. Woodson -Ar 15 -Wilder Penfield -Kentucky shooting -Elizabeth Blackwell -Chloe Kim -Edwin Jackson -Sergei Eisenstein -Patriots -Wilder Penfield -Winter Olympics -Patriots -Super Bowl 2018 -Ohio State basketball -Wilder Penfield -Virginia Woolf -Carter G. Woodson -Sergei Eisenstein -Paula Modersohn-Becker -Super Bowl score -Elizabeth Blackwell -Classroom -XFL -Cavs -Gigi Hadid -Winter Olympics -Virginia Woolf -Kylie Jenner -Sergei Eisenstein -Pro Bowl 2018 -Elizabeth Blackwell -Memo -Groundhog Day 2018 -Oscar Nominations 2018 -Justin Timberlake -Johnny Weir -Carter G. Woodson -Government Shutdown -Elizabeth Blackwell -Mikaela Shiffrin -Larry Nassar -Larry Nassar -Carter G. Woodson -Robert Wagner -Elton John -Woody Allen -Sergei Eisenstein -Kim Kardashian -Super Bowl 2018 -Super Bowl 2018 -Adam Rippon -Quincy Jones -Super blue blood Moon -Paula Modersohn-Becker -Wilder Penfield -Happy Valentines Day -Winter Olympics -SpaceX -Winter Olympics -Florida shooting -Carter G. Woodson -Winter Olympics -Bill Belichick -Virginia Woolf -Eli Manning -earthquake -Patriots -Carter G. Woodson -Carter G. Woodson -Mark Salling -Shaun White -Meteor -Fredo Santana -Grammys 2018 -Monster Hunter World -Florida shooting -Government Shutdown -Happy Valentines Day -Larry Nassar -Wilder Penfield -Super Bowl Commercials 2018 -Justin Timberlake -Elizabeth Blackwell -Super Bowl 2018 -Sting -SZA -SpaceX -Sergei Eisenstein -Government Shutdown -Elizabeth Blackwell -Mardi Gras 2018 -Sergei Eisenstein -Duke Basketball -Mikaela Shiffrin -Bitcoin Price -Alex Smith -Dow Jones industrial average -What Time Is The Super Bowl -Government Shutdown -Super Bowl score -Kim Kardashian -James Harden -Wilder Penfield -Melania Trump -New England Patriots owner -Super Bowl score -Government shutdown 2018 -Carter G. Woodson -Solo Trailer -Sergei Eisenstein -Paula Modersohn-Becker -Patriots -Virginia Woolf -Women's March 2018 -Super Bowl score -Super Bowl score -Elizabeth Blackwell -Markelle Fultz -Elizabeth Blackwell -Greg Monroe -Paula Modersohn-Becker -Super Bowl 2018 -Sergei Eisenstein -Steve Wynn -Government shutdown 2018 -SpaceX -stock market -Government Shutdown Meaning -Super Bowl score -VIX -Logan Paul -Chloe Kim -Government shutdown -Winter Olympics -Justin Timberlake -Super Bowl score -Women's March 2018 -Taiwan Earthquake Today -SpaceX -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl score -Steven Tyler -Mark Salling -Terrell Owens -Fortnite New Map -Carter G. Woodson -Super Bowl 2018 -Blake Griffin -Will Ferrell -Kylie Jenner -Super Bowl score -Elizabeth Blackwell -Paula Modersohn-Becker -Valentines Day -Winter Olympics -Josh McDaniels -Eli Manning -Vikings vs Eagles -Carter G. Woodson -Elizabeth Blackwell -Dwyane Wade -Winter Olympics -What Time Is The Super Bowl -School Closings -Florida shooting -Happy Valentines Day -SpaceX -National Pizza Day -SpaceX -Super Bowl score -Kylie Jenner Baby Girl -Virginia Woolf -Super Bowl 2018 -Government Shutdown -Virginia Woolf -pissant -Wonder Woman -Winter Olympics -Pro Bowl 2018 -Government Shutdown -SpaceX -State of the Union -Jimmy Kimmel -Super Bowl Commercials 2018 -Virginia Woolf -Cavs -Mcdonald's -Government Shutdown -Justin Timberlake -Google docs -Wilder Penfield -SpaceX -Patriots -Pro Bowl 2018 -Super Bowl 2018 -Walter Payton -Winter Olympics -Florida shooting -Fredo Santana -Childish Gambino -Black Panther -Jason Kelce -Dow Jones -Luke Wilson -Patriots -Mark Salling -Florida shooting -Bob Dole -Sergei Eisenstein -Virginia Woolf -Google docs -Left Shark -Super Bowl score -Winter Olympics -Super Bowl score -Valentines Day -Oscar Nominations 2018 -Google Classroom -Call Me by Your Name -Super Bowl score -Jennifer Aniston -Mardi Gras 2018 -Larry Nassar -Elizabeth Blackwell -Sergei Eisenstein -SpaceX -Tom Brady -Dow Jones -Dow Jones -Wilder Penfield -Oscar Nominations 2018 -Blake Griffin Trade -Lindsey Vonn -Patriots -Mark Salling -Sergei Eisenstein -Virginia Woolf -James Maslow -Elizabeth Blackwell -Justin Timberlake -Super Bowl 2018 -Elton John -Jennifer Aniston -Black Lightning -Elizabeth Blackwell -Trey Gowdy -Grammys 2018 -Nadal -Den of Thieves -Sergei Eisenstein -Winter Olympics -Fifty Shades Freed -Florida shooting -Childish Gambino -Paula Modersohn-Becker -Patriots -Winter Olympics -Sergei Eisenstein -Paula Modersohn-Becker -Once Upon a Time -Virginia Woolf -Super Bowl 2018 -Government Shutdown -Kentucky shooting -Google Drive -What Time Is The Super Bowl -Adam Hicks -Super Bowl score -Super Bowl score -Google Classroom -SpaceX -Forever My Girl -Bob Marley -Dow Jones -Steven Tyler -Larry Nassar -Larry Nassar -Larry Nassar -This is Us -Tyler Hilinski -Norovirus -Bitcoin Price -Paula Modersohn-Becker -SpaceX -Super Bowl score -Super Bowl 2018 -Super Bowl score -Kylie Jenner -Winter Olympics -SpaceX -XFL -Wilder Penfield -Grammys 2018 -Google docs -UFC 220 -SpaceX -Larry Nassar -Government Shutdown -Mavic Air -This is Us -Vikings Vs Eagles -Virginia Woolf -Government shutdown 2018 -Government shutdown 2018 -SAG Awards 2018 -Puppy Bowl 2018 -Solo Trailer -Kawhi Leonard -NFC Championship Game 2018 -Sergei Eisenstein -Bitcoin Price -Larry Nassar -Wonder Woman -tsunami -Lauren Davis -Trey Gowdy -Kylie Jenner -Vikings Vs Eagles -Florida shooting -Kylie Jenner -Government Shutdown Meaning -Sergei Eisenstein -Government shutdown 2018 -The Home Depot -Government Shutdown -Super Bowl score -Government Shutdown -Terrell Owens -Natalie Wood -What Time Is The Super Bowl -Winter Olympics -Dwyane Wade -Florida shooting -Kesha -Tiger Woods -Super Bowl 2018 -XFL -Robby Anderson -Google Drive -Mickey Jones -Steven Tyler -BitConnect -Kate Upton -Oscar Nominations 2018 -Virginia Woolf -SpaceX -XFL -Bitcoin Price -Paula Modersohn-Becker -Celebrity Big Brother cast -Carter G. Woodson -Mexico -Forever My Girl -Larry Nassar -Elon Musk -Alessia Cara -Trump State of the Union -Kylie Jenner -Tyler Hilinski -Cavs -Earthquake Today -Olympic medal count -Hope Hicks -Winter Olympics -Black Panther -Paula Modersohn-Becker -Kim Kardashian -Winter Olympics -Elizabeth Blackwell -Dow Jones -Kentucky shooting -Winter Olympics -Call Me by Your Name -Elizabeth Blackwell -Paula Modersohn-Becker -Den of Thieves -Super Bowl 2018 -Shaun White -The First Purge -Valentine's Day -luge -Super Bowl 2018 -SAG Awards 2018 -Patriots -Wilder Penfield -Kylie Jenner -Elizabeth Blackwell -Lunar eclipse -Super Bowl score -Sergei Eisenstein -Elizabeth Blackwell -Kim Kardashian -Elizabeth Blackwell -Super Bowl Commercials 2018 -Carter G. Woodson -Carter G. Woodson -Elizabeth Blackwell -Virginia Woolf -Fredo Santana -Elizabeth Blackwell -Memo -Paula Modersohn-Becker -Carter G. Woodson -SpaceX -SpaceX -Winter Olympics -Elizabeth Blackwell -State of the Union -Super Bowl Commercials 2018 -Government shutdown 2018 -Justin Timberlake -Adam Schiff -Trump State of the Union -Carter G. Woodson -Edible Arrangements -calculator -Government Shutdown -Virginia Woolf -State of the Union -Patriots -Government Shutdown -Patriots -Carter G. Woodson -SpaceX -Wilder Penfield -Virginia Woolf -Super Bowl 2018 -Happy Valentines Day -Memo -Justin Timberlake -Grammys 2018 -Virginia Woolf -State of the Union -Elizabeth Blackwell -Super Bowl score -Mikaela Shiffrin -Snap Stock -Lindsey Vonn -Super blue blood Moon -Super Bowl 2018 -Bitcoin Price -Wilder Penfield -Patriots -Carter G. Woodson -Patriots -school closings -Grammys 2018 -Florida shooting -Peter Rabbit -Winter Olympics -Berkshire Hathaway -Justin Timberlake -Wilder Penfield -Chinese New Year 2018 -Sal Castro Middle School -Sergei Eisenstein -weather tomorrow -Derrick Rose -Memo -Presidents Day 2018 -Memo -State of the Union -Incredibles 2 -Justin Timberlake -Super blue blood Moon -Hope Hicks -Sarah Barthel -Trey Gowdy -Groundhog Day 2018 -Joe Kennedy -Patriots -Florida shooting -Florida shooting -Tammy Duckworth -Joe Kennedy -NBA Trades -NBA Trades -Tom Petty -Paula Modersohn-Becker -Carter G. Woodson -Super Bowl score -Blake Griffin Trade -Paula Modersohn-Becker -Chicago West -Super Bowl Commercials 2018 -Super Bowl 2018 -Dow Jones -Sergei Eisenstein -Patriots -Devin Nunes -Evgenia Medvedeva -Super Bowl score -fake news awards -Wilder Penfield -Korea -Super Blue Blood Moon -Super Bowl score -Virginia Woolf -Super Bowl Commercials 2018 -State of the Union -Carter G. Woodson -Quincy Jones -Red Gerard -Florida shooting -Evgenia Medvedeva -Justin Timberlake -Black Panther -Omarosa -New England Patriots owner -Grammys 2018 -Virginia Woolf -Grammys 2018 -Oscar Nominations 2018 -Wilder Penfield -Elizabeth Blackwell -Happy Valentines Day -Government Shutdown -Government Shutdown -Shaun White -Oscar Nominations 2018 -Wilder Penfield -Sergei Eisenstein -Highline College -Blood Moon -Justin Timberlake -Paula Modersohn-Becker -Wilder Penfield -school closings -Elizabeth Blackwell -State of the Union -Government shutdown -Virginia Woolf -Virginia Woolf -Alex Reimer -Vikings Vs Eagles -Florida shooting -Jennifer Aniston -Virginia Woolf -Did the Groundhog See His Shadow -Elizabeth Blackwell -Florida shooting -Elizabeth Blackwell -Julie Ertz -Celebrity Big Brother cast -Elizabeth Blackwell -Super Bowl score -Warren Miller -National Pizza Day -Wilder Penfield -Nikki Haley -What Time Is The Super Bowl -Patriots -Justin Timberlake -What Time Is The Super Bowl -New England Patriots owner -Sergei Eisenstein -Florida shooting -Donald Trump Jr -What Time Is The Super Bowl -Government shutdown 2018 -Carter G. Woodson -Sting -Super Bowl 2018 -AR-15 -Super Bowl 2018 -Super Bowl 2018 -Super Bowl 2018 -Patriots -SpaceX -Elizabeth Blackwell -Tonga -Patriots -Altered Carbon -Uma Thurman -Fidel Castro -Government Shutdown -Happy Valentines Day -Paula Modersohn-Becker -Groundhog Day 2018 -Oscar Nominations 2018 -Nba All Star Draft -Virginia Woolf -Patriots -Kim Kardashian -Ash Wednesday -Virginia Woolf -Elizabeth Blackwell -Doomsday Clock -Chloe Kim -Chinese New Year 2018 -SpaceX -Florida shooting -Grammys 2018 -Virginia Woolf -Government Shutdown -Danielle Herrington -Florida shooting -Justin Timberlake -Florida shooting -Fredo Santana -Ash Wednesday -Elizabeth Blackwell -Elizabeth Blackwell -Joe Kennedy -Sergei Eisenstein -Kylie Jenner -Bitcoin Price -What Time Is The Super Bowl -State of the Union -Joe Kennedy -Johnny Weir -Elizabeth Blackwell -Justin Timberlake -Dow Jones -Detroit Lions -Red Gerard -Groundhog Day 2018 -Paula Modersohn-Becker -Puppy Bowl 2018 -Obama portrait -Isaiah Canaan -Sergei Eisenstein -Super blue blood Moon -Alaska earthquake -Patriots -Super Bowl score -Virginia Woolf -Government Shutdown -Megan Barry -Wilder Penfield -tsunami -Wilder Penfield -DeMarcus Cousins -Reg E Cathey -Alex Smith -Chloe Kim -Carter G. Woodson -Alex Reimer -Elizabeth Blackwell -UFC 221 -Grammys 2018 -Adam Rippon -Sergei Eisenstein -Scott Baio -Virginia Woolf -Alaska earthquake -Florida shooting -What Time Is The Super Bowl -Oscar Gamble -Abraham Lincoln -Virginia Woolf -Florida shooting -Memo -Rob Porter -Wilder Penfield -Super Bowl 2018 -Sergei Eisenstein -Grammys 2018 -Quincy Jones -Melania Trump -SpaceX -Wilder Penfield -Happy Valentines Day -Dow Jones -SpaceX -SpaceX -Solo Trailer -This Is Us -PlayStation Network -SAG Awards 2018 -Super Bowl score -Mark Salling -Groundhog Day 2018 -Eli Manning -National Pizza Day -Jalen Ramsey -Memo -Larry Nassar -Happy Valentines Day -Paula Modersohn-Becker -Super Bowl 2018 -Alex Reimer -Super Bowl 2018 -Super Bowl score -Royal Rumble 2018 -Justin Timberlake -Forever My Girl -Wilder Penfield -Florida shooting -Paula Modersohn-Becker -Den of Thieves -Winter Olympics -Florida shooting -Super Bowl score -Patriots -Luke Wilson -Florida shooting -Super Bowl 2018 -Carter G. Woodson -Super Bowl 2018 -Patriots -Elizabeth Blackwell -Super Bowl 2018 -Sergei Eisenstein -Patriots -Doomsday Clock -Happy Valentines Day -Bruno Mars -Florida shooting -Super Bowl score -Florida shooting -Alex Smith -Omarosa -Larry Nassar -Virginia Woolf -Sergei Eisenstein -Paula Modersohn-Becker -Arsenal -Adam Rippon -Happy Valentines Day -Winter Olympics -Sergei Eisenstein -Champions League -SpaceX -Florida shooting -North Korean cheerleaders -United States Of America Winter Olympics -Super Bowl 2018 -Carter G. Woodson -Sergei Eisenstein -Larry Nassar -Kylie Jenner Baby Girl -Government Shutdown -Florida shooting -Patriots -Grammys 2018 -Paula Modersohn-Becker -Carter G. Woodson -Super Bowl 2018 -Shaun White -Elizabeth Blackwell -Wilder Penfield -Carter G. Woodson -Super Bowl 2018 -Florida shooting -Virginia Woolf -Mark Salling -Carter G. Woodson -Joe Kennedy -Justin Timberlake -Florida shooting -Super Bowl score -Kylie Jenner -Obama portrait -Wilder Penfield -Josh McDaniels -Did the Groundhog See His Shadow -Edwin Jackson -Valentines Day -Wilder Penfield -Bitcoin Price -Kylie Jenner -Marlon Brando -Larry Nassar -Kesha Grammy -Winter Olympics -Steve Mcnair -Ann Curry -Super Bowl Commercials 2018 -XIV -Patriots -Florida shooting -Winter Olympics -What Time Is The Super Bowl -CNN -SpaceX -Super Bowl 2018 -Kylie Jenner -Super Bowl 2018 -Trump State of the Union -Government Shutdown -UFC 220 -Super Bowl 2018 -Super Bowl score -Trump State of the Union -Shaun White -Elizabeth Blackwell -Carter G. Woodson -Sergei Eisenstein -Florida shooting -Florida shooting -Winter Olympics -Luke Wilson -Carter G. Woodson -Bob Dole -SZA -Blue Ivy -Paula Modersohn-Becker -Super Bowl score -Super Bowl 2018 -Cloverfield Paradox -Elizabeth Blackwell -Super Bowl Commercials -Adam Rippon -Larry Nassar -Gianni Versace -Memo -Google Drive -Patriots -Justin Timberlake -Adam Rippon -Virginia Woolf -Virginia Woolf -Government Shutdown -New England Patriots owner -Jessica Chastain -Paula Modersohn-Becker -Paula Modersohn-Becker -Groundhog Day 2018 -12 Strong -UFC 220 -Super Bowl score -Winter Olympics -Kesha -Bellator 192 -Sergei Eisenstein -Shibutani -Kesha -Paula Modersohn-Becker -Joe Kennedy -Super Bowl 2018 -Alaska earthquake -Government shutdown -Paula Modersohn-Becker -Patriots -Tom Petty -SpaceX -Super blue blood Moon -Patriots -Virginia Woolf -Isaiah Thomas -What Time Is The Super Bowl -Virginia Woolf -Valentine's Day -Super Bowl 2018 -Jennifer Aniston -Carter G. Woodson -Andrew Cunanan -Winchester -Childish Gambino -Wilder Penfield -Andrew Cunanan -Carter G. Woodson -SAG Awards 2018 -Justin Timberlake -Florida shooting -Groundhog Day 2018 -SpaceX -The 15:17 to Paris -Wilder Penfield -Peter Rabbit -Steve Mcnair -Virginia Woolf -Super Bowl Commercials 2018 -Sharon Stone -Patriots -Alex Smith -Celebrity Big Brother cast -SpaceX -Brie Larson -Super Bowl 2018 -Eli Manning -Paula Modersohn-Becker -Dwyane Wade -UFC 220 -Winter Olympics -Grammys 2018 -Super Blue Blood Moon -Super Bowl 2018 -Daryle Singletary -Oscar Nominations 2018 -NBA Trades -Dolly Parton -Adam Rippon -Den of Thieves -Kentucky shooting -SpaceX -Florida shooting -IXL -Warren Miller -Did the Groundhog See His Shadow -Paula Modersohn-Becker -NHL All Star Game -Government Shutdown -Amazon HQ2 -Larry Nassar -Early Man -Rasual Butler -Edwin Jackson -Elizabeth Blackwell -NASCAR -Super Bowl 2018 -Lunar eclipse -stock market -Did the Groundhog See His Shadow -Jennifer Aniston -Super Bowl 2018 -Ar 15 -Super Bowl score -Chris Long -What Time Is The Super Bowl -Florida shooting -This Is Us -Patriots -Lindsey Vonn -Bitcoin Price -Grammys 2018 -Vanessa Trump -Super Bowl 2018 -Kylie Jenner -New England Patriots owner -Alaska earthquake -Winter Olympics -Super Bowl 2018 -Super Bowl 2018 -Government shutdown -Daryle Singletary -Paula Modersohn-Becker -Winter Olympics -Carter G. Woodson -Mcdonald's -Derrick Rose -Kim Cattrall -stock market -Olympic Medal Count -shutdown -Hailee Steinfeld -Patriots -Jennifer Aniston -Yu Darvish -Super Bowl 2018 -Bob Marley -Patriots -Wilder Penfield -Super Bowl score -Google Classroom -Solo Trailer -Vikings Vs Eagles -Farmers Insurance Open 2018 -Oar Olympics -Amy Schumer -XFL -Winter Olympics -Virginia Woolf -Super blue blood Moon -Wilder Penfield -Steven Tyler -Michigan State -Yahoo Finance -Super Bowl Commercials 2018 -What Time Is The Super Bowl -Florida shooting -Super Bowl score -Super Blue Blood Moon -Virginia Woolf -Groundhog Day 2018 -Virginia Woolf -Alexander Polinsky -Paula Modersohn-Becker -Sergei Eisenstein -Spice Girls -Shaun White -Google Classroom -Florida shooting -Super Bowl 2018 -Tammy Duckworth -Kodak Black -Google Classroom -Black Panther -Jason Kelce -Virginia Woolf -Solo Trailer -Sandy Hook -Chloe Kim -Carter G. Woodson -Florida shooting -Virginia Woolf -Virginia Woolf -Super Bowl 2018 -Elizabeth Blackwell -Virginia Woolf -Virginia Woolf -Paula Modersohn-Becker -Paula Modersohn-Becker -stock market -The Alienist -Rasual Butler -Cryptocurrency News -Virginia Woolf -Super Bowl score -Sergei Eisenstein -Solo Trailer -Isaiah Thomas -Ant Man and the Wasp -Super Bowl score -Carter G. Woodson -Kesha Grammy -Super blue blood Moon -Super Bowl score -The 15:17 to Paris -Hailee Steinfeld -Mardi Gras 2018 -Winter Olympics -Kylie Jenner Baby Girl -Presidents Day 2018 -Kylie Jenner -Happy Valentines Day -Wilder Penfield -Paula Modersohn-Becker -Super Bowl score -Wilder Penfield -Elizabeth Blackwell -Winter Olympics -Government shutdown 2018 -Jessica Chastain -Ash Wednesday -Wilder Penfield -Google docs -Winter Olympics -What Time Is The Super Bowl -Aliona Savchenko -Super Bowl score -Alaska earthquake -Winter Olympics -Luke Wilson -Fredo Santana -Patriots -CNN -Jimmy Garoppolo -Kesha -Paula Modersohn-Becker -Mardi Gras 2018 -Paula Modersohn-Becker -Esteban Loaiza -Elizabeth Blackwell -Elizabeth Blackwell -Virginia Woolf -LL Bean -Rodney Hood -Elizabeth Blackwell -Sergei Eisenstein -Black Panther -Solo Trailer -Den of Thieves -Kylie Jenner -SpaceX -Pink -Super Bowl score -Groundhog Day 2018 -Wilder Penfield -State of the Union -SpaceX -Chicago Weather -Carter G. Woodson -Blue Ivy -Celtics -Johnny Weir -Paula Modersohn-Becker -James Harden -Florida shooting -Solo Trailer -Patriots -Paula Modersohn-Becker -Yoel Romero -Cedi Osman -Kesha -Florida shooting -Super Bowl 2018 -Carter G. Woodson -Bill Paxton -SpaceX -Mardi Gras 2018 -Winter Olympics -Lonzo Ball -Justin Timberlake -Winter Olympics -Super Bowl 2018 -Florida shooting -Kylie Jenner -Blue Ivy -Elizabeth Blackwell -Super blue blood Moon -Patriots -Mark Salling -Hostiles -Blue Ivy -Cloverfield Paradox -Trump State of the Union -school closings -Arsenal -Russell Wilson -Virginia Woolf -Sergei Eisenstein -Elizabeth Blackwell -Senior Bowl -Mark Salling -Drive -LeBron James -Joe Kennedy -Aaron Hernandez -Carter G. Woodson -Sal Castro Middle School -Mardi Gras 2018 -Nancy Pelosi -Carter G. Woodson -Government shutdown -Virginia Woolf -Cloverfield Paradox -UFC 220 -Yu Darvish -Patriots -Super Bowl score -Justin Timberlake -LL Bean -Mickey Jones -Chris Paul -Sergei Eisenstein -Daryle Singletary -Winter Olympics -Government Shutdown Meaning -State of the Union -Elizabeth Blackwell -LeBron James -Amy Schumer -Virginia Woolf -Rasual Butler -Florida shooting -John Mahoney -What Time Is The Super Bowl -Westminster Dog Show 2018 -CNN -XFL -Justin Timberlake -Halsey -Esteban Loaiza -Meteor -What Time Is The Super Bowl -Wilder Penfield -Government Shutdown -Sergei Eisenstein -Gianni Versace -Duke Basketball -Jo Jo White -Sergei Eisenstein -Larry Nassar -Sergei Eisenstein -Patriots -State of the Union -Paula Modersohn-Becker -Dow Jones -Paula Modersohn-Becker -Dow Jones -Tiger Woods -Elizabeth Blackwell -Carter G. Woodson -Luke Wilson -Wilder Penfield -Sergei Eisenstein -Justin Timberlake -Lonzo Ball -Florida shooting -Elizabeth Blackwell -Sergei Eisenstein -Government Shutdown -State of the Union -SAG Awards 2018 -Super Bowl 2018 -Kim Kardashian -Government Shutdown -Mardi Gras 2018 -Pro Bowl 2018 -Mardi Gras 2018 -Larry Nassar -Florida shooting -Paula Modersohn-Becker -Groundhog Day 2018 -Government Shutdown -Patriots -Jason Momoa -Trump State of the Union -Korea -Gianni Versace -United States Of America Winter Olympics -Larry Nassar -Government Shutdown -Super Bowl score -Caitlin McHugh -Tom Petty -Kylie Jenner -Elizabeth Blackwell -Sergei Eisenstein -Carter G. Woodson -Daryle Singletary -Elizabeth Blackwell -NBA Trades -Super Bowl 2018 -Paul Ryan -Hope Hicks -Happy Valentines Day -VIX -Winter Olympics -Kylie Jenner Baby Girl -Grammys 2018 -SpaceX -NBA Trades -Kesha -Super Bowl score -Kim Kardashian -Florida shooting -Super Bowl score -Government shutdown 2018 -Larry Nassar -Florida shooting -Chinese New Year 2018 -Happy Valentines Day -Super Bowl score -All Star Weekend 2018 -Wilder Penfield -Sergei Eisenstein -Chris Stapleton -Patriots -Dow Jones -Champions League -Paula Modersohn-Becker -Dow Jones -Elizabeth Blackwell -Megan Barry -XFL -Super Bowl score -Mark Salling -Kim Kardashian -Kim Kardashian -Winter Olympics -Elizabeth Blackwell -Elizabeth Blackwell -Florida shooting -Mark Salling -Grammys 2018 -Danielle Herrington -Grammys 2018 -Obama portrait -Virginia Woolf -Super Bowl 2018 -Bob Dole -CNN -Outback Steakhouse -Super Bowl 2018 -Virginia Woolf -Obama portrait -Quincy Jones -Super Bowl Commercials 2018 -KSI Vs Weller -Jen Selter -Korea -Virginia Woolf -Florida shooting -United States Postal Service -Wilder Penfield -Super Bowl 2018 -SpaceX -Florida shooting -XIV -Fredo Santana -Chinese New Year 2018 -Sergei Eisenstein -Shaun White -Florida shooting -Paula Modersohn-Becker -Mikaela Shiffrin -Chris Long -Nancy Pelosi -Vikings Vs Eagles -Winter Olympics -Florida shooting -Valentines Day -Luke Wilson -Luke Wilson -SpaceX -Kylie Jenner -Solo Trailer -Elizabeth Blackwell -lady gaga grammys -Alessia Cara -Justin Timberlake -United States Of America Winter Olympics -Nathan Chen -Fredo Santana -Government Shutdown -Ash Wednesday -Justin Timberlake -Mardi Gras 2018 -Government Shutdown Meaning -Virginia Woolf -Riverdale -Wilder Penfield -Shaun White -Obama portrait -Paula Modersohn-Becker -Patriots -Tom Brady -Paula Modersohn-Becker -Government Shutdown Meaning -Aliona Savchenko -Childish Gambino -Elizabeth Blackwell -Paula Modersohn-Becker -SAG Awards 2018 -Blue Moon -Edwin Jackson -Super blue blood Moon -Rob Porter -Prince William -Government Shutdown 2018 -Virginia Woolf -Johnny Manziel -Super Bowl 2018 -CNN -Rodney Hood -Paula Modersohn-Becker -Groundhog Day 2018 -Mardi Gras 2018 -Super Bowl score -Super Bowl score -All Star Weekend 2018 -John Mahoney -Fifty Shades Freed -Trayvon Martin -Super Bowl 2018 -Otto Warmbier -Grammys 2018 -Paula Modersohn-Becker -Oscar Nominations 2018 -Mark Salling -Steve Wynn -Winter Olympics -Patriots -Tiger Woods -Sergei Eisenstein -Sabrina Dhowre -Winter Olympics -Shaun White -Carter G. Woodson -Carter G. Woodson -Super Bowl 2018 -Real Madrid -Russell Wilson -Paula Modersohn-Becker -Larry Nassar -Elizabeth Blackwell -Larry Nassar -Peter Rabbit -Paula Modersohn-Becker -Duke Basketball -What Time Is The Super Bowl -Phantom Thread -Kylie Jenner -What Time Is The Super Bowl -Super Bowl score -Isaiah Canaan -Pro Bowl 2018 -Florida shooting -Joe Kennedy -Dow Jones -Sting -Rachel Brand -Super Bowl 2018 -SpaceX -Montreal Cognitive Assessment -Shaun White -Kevin Love -Super Blue Blood Moon -Super Bowl 2018 -Enzo Amore -Florida shooting -Alex Smith -Larry Nassar -Real Madrid -Winter Olympics -Sergei Eisenstein -Super Bowl score -UFC 220 -Shaun White -Chinese New Year 2018 -Sergei Eisenstein -What Time Is The Super Bowl -NFC Championship Game 2018 -Paula Modersohn-Becker -New England Patriots owner -Devin Nunes -Virginia Woolf -Justin Timberlake -Oscar Nominations 2018 -Groundhog Day 2018 -What Time Is The Super Bowl -Virginia Woolf -Real Madrid -Stormi -Kim Cattrall -Princess Eugenie -Carter G. Woodson -Lunar eclipse -Celtics -Carter G. Woodson -Alaska earthquake -Halsey -Justin Timberlake -Groundhog Day 2018 -Jennifer Aniston -Paula Modersohn-Becker -Black Panther -Patriots -Super Bowl 2018 -Rasual Butler -Carter G. Woodson -Paula Modersohn-Becker -Grammys 2018 -Shaun White -Friends movie -Bill Paxton -Black Panther -Kylie Jenner -Super Bowl 2018 -Patriots -Paula Modersohn-Becker -Lari White -Super Bowl score -Florida shooting -Virginia Woolf -Kim Kardashian -Government Shutdown -Wilder Penfield -Florida shooting -Culture 2 -Super Bowl 2018 -This Is Us -Justin Timberlake -Sergei Eisenstein -Patriots -New England Patriots owner -Paula Modersohn-Becker -Patriots -Solo Trailer -Patriots -Logan Paul -Winchester -Women's March 2018 -Carter G. Woodson -Super Bowl 2018 -Wilder Penfield -Hope Hicks -Lady Bird -Florida shooting -Elizabeth Blackwell -Kim Kardashian -Paula Modersohn-Becker -Carter G. Woodson -Eli Manning -NBA Trades -Black Panther -Vikings Vs Eagles -Natalie Portman -Drake -Shaun White -Super Bowl 2018 -Winter Olympics -Alaska earthquake -Rasual Butler -Florida shooting -Julie Ertz -Sea Of Thieves -Super blue blood Moon -Virginia Woolf -Paula Modersohn-Becker -Winter Olympics -Paula Modersohn-Becker -Duke Basketball -Carter G. Woodson -Carter G. Woodson -Justin Timberlake -Super Bowl 2018 -Classroom -Dwyane Wade -Luke Wilson -Wonder Woman -Steven Tyler -Larry Nassar -Wilder Penfield -Jessica Chastain -Super Bowl score -SpaceX -Puppy Bowl 2018 -Kim Kardashian -Cherry Seaborn -Shaun White -Emily Sweeney -The 15:17 to Paris -Kim Kardashian -Alessia Cara -Wilder Penfield -Google docs -Adam Rippon -Grammys 2018 -State of the Union -Carter G. Woodson -Patriots -Obama portrait -Memo -Carter G. Woodson -Cavs -Snapchat Update -Bruno Mars -Google docs -Florida shooting -Florida shooting -Shibutani -Super Bowl 2018 -Virginia Woolf -Patriots -Super Bowl score -State of the Union -Lunar eclipse -Meteor -Florida shooting -Super Bowl 2018 -Super Bowl 2018 -Vikings Vs Eagles -Super Bowl 2018 -Grammys 2018 -Carter G. Woodson -Solo Trailer -Mark Salling -Jennifer Aniston -Carter G. Woodson -Florida shooting -Super Bowl 2018 -Ann Curry -Florida shooting -Virginia Woolf -Super Bowl score -Rasual Butler -Dwyane Wade -Sammy Sosa -Larry Nassar -Women's March 2018 -Pro Bowl 2018 -Grammys 2018 -Rihanna -Valentines Day -Bitcoin Price -NBA Trades -SAG Awards 2018 -Government Shutdown -Naya Rivera -Kim Kardashian -Carter G. Woodson -SpaceX -Patriots -Groundhog Day 2018 -Carter G. Woodson -Google docs -Carter G. Woodson -Bitcoin Price -Wilder Penfield -Enzo Amore -Super Bowl score -Rasual Butler -Government Shutdown -Winter Olympics -Virginia Woolf -Super blue blood Moon -Elizabeth Blackwell -Carter G. Woodson -Virginia Woolf -Sammy Sosa -Grammys 2018 -Obama portrait -Dua Lipa -Valentines Day -Paula Modersohn-Becker -Shaun White -Winter Olympics -Elizabeth Blackwell -Zion Williamson -Jacob Copeland -Red Gerard -Carrie Underwood -Kylie Jenner -Elizabeth Blackwell -Larry Nassar -Super Bowl 2018 -Kylie Jenner -Government Shutdown Meaning -Isaiah Thomas -Real Madrid -Super Bowl score -Sergei Eisenstein -Elizabeth Blackwell -Jennifer Aniston -Virginia Woolf -Melania Trump -Did the Groundhog See His Shadow -Virginia Woolf -John Mahoney -Bill Parcells -Adam Rippon -Winter Olympics -curling -Sergei Eisenstein -Julie Bowen -Wilder Penfield -Elizabeth Blackwell -Carter G. Woodson -Virginia Woolf -Florida shooting -Florida shooting -Super Bowl score -Montreal Cognitive Assessment -Dwyane Wade -Wilder Penfield -Robert Wagner -Camila Cabello -Super Bowl 2018 -Wilder Penfield -Justin Timberlake -Carter G. Woodson -This Is Us -Super Bowl score -United States Of America Winter Olympics -Carter G. Woodson -Greg Monroe -Winter Olympics -Florida shooting -Sergei Eisenstein -Super Bowl score -Chris Long -Walter Payton -Cloverfield Paradox -Justin Timberlake -Winter Olympics -Google Drive -Wilder Penfield -Larry Nassar -Black Panther -Obama portrait -Super blue blood Moon -Solo Trailer -Alessia Cara -Did the Groundhog See His Shadow -Sergei Eisenstein -Paula Modersohn-Becker -Grammys 2018 -Paula Modersohn-Becker -Justin Timberlake -Maze Runner: The Death Cure -Childish Gambino -Google Drive -Did the Groundhog See His Shadow -Justin Timberlake -Super Bowl score -Government Shutdown -stock market -Black Panther -Florida shooting -Dwyane Wade -Groundhog Day 2018 -Vikings Vs Eagles -Dow Jones -What Time Is The Super Bowl -State of the Union -Patriots -Terrell Owens -Carter G. Woodson -Paula Modersohn-Becker -SpaceX -Super Bowl score -Stan Lee -NFL Honors -calculator -Culture 2 -Super Bowl score -Yu Darvish -Black Panther -Super Bowl 2018 -Grammys 2018 -Elizabeth Blackwell -Rett Syndrome -Super Bowl score -Justin Timberlake -Wilder Penfield -SpaceX -Patriots -Grammys 2018 -United States Of America Winter Olympics -SpaceX -Winter Olympics -Reg E Cathey -Paula Modersohn-Becker -Virginia Woolf -Mark Salling -Florida shooting -NASCAR -Alexander Polinsky -Bitcoin Price -Kylie Jenner -Morgan Freeman -What Time Is The Super Bowl -Justin Timberlake -Sarah Barthel -Winter Olympics -Super Bowl 2018 -Super blue blood Moon -Winter Olympics -Winter Olympics -Virginia Woolf -Rodney Hood -Government Shutdown Meaning -Super Bowl Commercials 2018 -Vikings Vs Eagles -Valentines Day -Government Shutdown -Grammys 2018 -Sergei Eisenstein -Florida shooting -Wilder Penfield -Patriots -Olympics 2018 -Joel Taylor -Winter Olympics -Carter G. Woodson -Rose McGowan -Government Shutdown -Elizabeth Blackwell -Maddie Mastro -National Pizza Day -Berkshire Hathaway -Google docs -Mark Salling -Dwyane Wade -School Closings -Paula Modersohn-Becker -Florida shooting -Shaun White -Valentines Day Memes -Johnny Weir -Government shutdown 2018 -Government Shutdown -Super Bowl score -Super Bowl 2018 -Elizabeth Blackwell -Gianni Versace -The 15:17 to Paris -Meteor -Carter G. Woodson -Fredo Santana -Super Bowl score -Black Panther -Winter Olympics -Dow Jones -Patriots -Mueller -Paula Modersohn-Becker -UFC 220 -Super Bowl score -What Time Is The Super Bowl -Groundhog Day 2018 -Winchester -Virginia Woolf -Virginia Woolf -Elizabeth Blackwell -Blake Griffin -Winter Olympics -Google Drive -Best Superbowl Commercials 2018 -Kylie Jenner -John Mahoney -Katie Couric -Fifty Shades Freed -Edwin Jackson -Carter G. Woodson -Carter G. Woodson -Winter Olympics -Kylie Jenner -Super Bowl score -Florida shooting -Carter G. Woodson -Grammys 2018 -Super Bowl score -Nathan Chen -National Pizza Day -Chloe Kim -Kylie Jenner -Carter G. Woodson -Carter G. Woodson -Wilder Penfield -Sergei Eisenstein -Larry Nassar -Kylie Jenner Baby Girl -Florida shooting -Andrew Cunanan -Oscar Nominations 2018 -Scott Baio -Elizabeth Blackwell -Dwyane Wade -Patriots -Shaun White -SpaceX -Carter G. Woodson -Justin Timberlake -Hillary Clinton -Turpin -Kylie Jenner -Did the Groundhog See His Shadow -Paula Modersohn-Becker -Super Bowl 2018 -SpaceX -Groundhog Day 2018 -Lindsey Vonn -Virginia Woolf -Paula Modersohn-Becker -Virginia Woolf -Winter Olympics -Florida shooting -LeBron James -Alex Smith -Virginia Woolf -Elon Musk -Paula Modersohn-Becker -Alex Smith -Grammys 2018 -Super Bowl score -Paula Modersohn-Becker -Patriots -Robert Wagner -Wilder Penfield -Government Shutdown -What Time Is The Super Bowl -Michelle Obama -Bitcoin Price -Winter Olympics -Patriots -Paula Modersohn-Becker -Carter G. Woodson -Andrew McCabe -Patriots -What Time Is The Super Bowl -Dow Jones -Wilder Penfield -Virginia Woolf -Nikki Haley -Edwin Jackson -Shaun White -Winter Olympics -Paula Modersohn-Becker -Super Blue Blood Moon -Google docs -State of the Union -Shaun White -Solo Trailer -Tom Brady daughter -Sergei Eisenstein -Brynn Cameron -SpaceX -Heath Ledger -Super Blue Blood Moon -Alaska earthquake -Justin Timberlake -NASA -Wilder Penfield -Mark Salling -Grammys 2018 -Mark Salling -Sting -Virginia Woolf -Super Bowl score -Elizabeth Blackwell -Isaiah Canaan -Sergei Eisenstein -Patriots -What Time Is The Super Bowl -Kylie Jenner -Virginia Woolf -Carter G. Woodson -Champions League -Larry Nassar -Winter Olympics -Waco -Winter Olympics -Virginia Woolf -Scott Baio -Winter Olympics -Elizabeth Blackwell -Natalie Wood -Harry Styles -Alessia Cara -Sergei Eisenstein -Tonga -Winter Olympics -Kylie Jenner -Tiger Woods -Black Panther -Sergei Eisenstein -Sergei Eisenstein -Fredo Santana -Government Shutdown -Super Bowl score -What Time Is The Super Bowl -Cavs -Carter G. Woodson -Government Shutdown Meaning -Red Gerard -Nba All Star Draft -Oscar Nominations 2018 -Winter Olympics -Oscar Nominations 2018 -Bitcoin Price -Obama portrait -Justin Timberlake -XFL -Vikings Vs Eagles -Wilder Penfield -Winter Olympics -Google docs -Florida shooting -Kesha -Princess Eugenie -Alex Smith -Virginia Woolf -United States Postal Service -Ash Wednesday -Patriots -UFC 220 -New England Patriots owner -Altered Carbon -Florida shooting -Virginia Woolf -Patriots -Justin Timberlake -Government Shutdown Meaning -Mark Salling -Forever My Girl -Virginia Woolf -Winter Olympics -Kylie Jenner -Vanessa Marcil -Omarosa -Oscar Nominations 2018 -Virginia Woolf -Super Bowl score -Paula Modersohn-Becker -Black Panther -Farmers Insurance Open 2018 -Virginia Woolf -Carter G. Woodson -Virginia Woolf -Alex Smith -Super Bowl score -Anastasia Bryzgalova -Conor McGregor -Tomi Lahren -Government Shutdown -Google docs -Halsey -Post Malone -Football Playoffs 2018 -Quincy Jones -Kylie Jenner -Kentucky shooting -Patriots -Royal Rumble 2018 -Winter Olympics -Luke Wilson -Black Panther -Esteban Loaiza -Winter Olympics -Winter Olympics -Government shutdown 2018 -Joe Kennedy -Andrew Cunanan -Jennifer Aniston -Friends movie -Government Shutdown Meaning -Winter Olympics -Naya Rivera -Tony Romo -Olympic Medal Count -Happy Valentines Day -NASCAR -Vikings Vs Eagles -Elizabeth Blackwell -Carter G. Woodson -Isaiah Thomas -Bellator 192 -Super Bowl score -Elizabeth Blackwell -Sergei Eisenstein -Super Blue Blood Moon -Wilder Penfield -Carter G. Woodson -Mikaela Shiffrin -State of the Union -Florida shooting -Patriots -Paula Modersohn-Becker -Puppy Bowl 2018 -Winter Olympics -Luke Wilson -Wilder Penfield -Wilder Penfield -Wilder Penfield -Isaiah Canaan -Elizabeth Blackwell -Red Gerard -Peter Rabbit -Paula Modersohn-Becker -SpaceX -Sergei Eisenstein -Did the Groundhog See His Shadow -Sergei Eisenstein -SpaceX -Sergei Eisenstein -Logan Paul -Yahoo Finance -Happy Valentines Day -Wilder Penfield -national signing day 2018 -earthquake today -Lena Zawaideh -Virginia Woolf -Kylie Jenner -Lunar eclipse -Patriots -Virginia Woolf -Obama portrait -Justin Timberlake -Happy Valentines Day -Mardi Gras 2018 -Outback Steakhouse -Bitcoin Price -Paula Modersohn-Becker -Florida shooting -earthquake -NFL Honors -Justin Timberlake -Bitcoin Price -Google Drive -Government shutdown 2018 -Black Panther -Virginia Woolf -Daryle Singletary -Carter G. Woodson -Florida shooting -Kesha Grammy -Mark Salling -Did the Groundhog See His Shadow -Justin Timberlake -Paula Modersohn-Becker -Farmers Insurance Open 2018 -school closings -Rasual Butler -Grammys 2018 -Ar 15 -Reg E Cathey -Super blue blood Moon -Mardi Gras 2018 -Sergei Eisenstein -Super Bowl score -Jennifer Aniston -Wilder Penfield -Super Bowl score -Government Shutdown -Elizabeth Blackwell -Ar 15 -Grammys 2018 -Chloe Kim -Florida shooting -Chloe Kim -Wilder Penfield -Super Bowl score -Jalen Ramsey -Jennifer Aniston -Super Bowl 2018 halftime show -Elizabeth Blackwell -Super blue blood Moon -Montgomery County Public Schools -Bitcoin Price -Government shutdown 2018 -Alex Smith -Elizabeth Blackwell -Super Bowl score -Fifty Shades Freed -Apple stock -Woody Allen -Wilder Penfield -Eli Manning -Carter G. Woodson -Government Shutdown -Ash Wednesday -Olive Garden -Wilder Penfield -Wilder Penfield -Super Bowl score -Obama portrait -Patriots -Larry Nassar -Happy Valentines Day -Patriots -Government Shutdown Meaning -Fredo Santana -Carter G. Woodson -Winter Olympics -Alaska earthquake -Winter Olympics -SpaceX -Super Bowl 2018 -Google Drive -Daryle Singletary -Adam Rippon -Pro Bowl 2018 -Super Bowl 2018 -Patriots -Joe Kennedy -Luke Wilson -What Time Is The Super Bowl -Justin Timberlake -State of the Union -Super Bowl Commercials -Sergei Eisenstein -Sergei Eisenstein -Sergei Eisenstein -Sergei Eisenstein -Kylie Jenner Baby Girl -Super Bowl 2018 -Wilder Penfield -Google docs -Florida shooting -Carter G. Woodson -Elizabeth Blackwell -Super Bowl 2018 -Dua Lipa -Virginia Woolf -Virginia Woolf -Patriots -Real Madrid -Sergei Eisenstein -Grammys 2018 -CNN -Culture 2 -Cherry Seaborn -Fredo Santana -Super Bowl Winners -curling -school closings -Highline College -Elizabeth Blackwell -Paula Modersohn-Becker -All Star Weekend 2018 -Super blue blood Moon -School Closings -Larry Nassar -Sergei Eisenstein -Shaun White -Bill Parcells -Super Bowl score -Sea Of Thieves -Elizabeth Blackwell -Carter G. Woodson -Chicago West -Groundhog Day 2018 -Solo Trailer -Government shutdown 2018 -Paula Modersohn-Becker -Walter Payton -Patriots -Isaiah Thomas -Kelly Clark -Wilder Penfield -Virginia Woolf -Luke Wilson -Sergei Eisenstein -What Time Is The Super Bowl -Sergei Eisenstein -Elizabeth Blackwell -Arsenal -Sergei Eisenstein -Carter G. Woodson -Super Bowl score -Cryptocurrency News -Patriots -Patriots -Kylie Jenner -Super Bowl score -Kim Kardashian -Wilder Penfield -Carter G. Woodson -SpaceX -Vikings Vs Eagles -Carter G. Woodson -Sergei Eisenstein -Rasual Butler -Mardi Gras 2018 -Virginia Woolf -Super Bowl 2018 -Bob Dole -Google Classroom -Women's March 2018 -stock market -Dow Jones -Kylie Jenner -SpaceX -Bernie Sanders -Kylie Jenner -Happy Valentines Day -Super Bowl score -Patriots -Super Bowl 2018 -Kim Kardashian -Florida shooting -Florida shooting -Super blue blood Moon -Wilder Penfield -Halsey -Kylie Jenner -Vikings Vs Eagles -Super Bowl Commercials 2018 -Virginia Woolf -Bitcoin Price -Super Bowl score -Paula Modersohn-Becker -Florida shooting -Vikings vs Eagles -Nathan Chen -Winter Olympics -Winter Olympics -Paula Modersohn-Becker -Winter Olympics -Larry Nassar -Cryptocurrency News -Paula Modersohn-Becker -SpaceX -NBA Trades -Happy Valentines Day -Groundhog Day 2018 -Oscar Nominations 2018 -SpaceX -Steve Wynn -Virginia Woolf -Pro Bowl 2018 -Paula Modersohn-Becker -Rasual Butler -Chloe Kim -Patriots -Lunar eclipse -Vikings Vs Eagles -Oscar Nominations 2018 -Shaun White -Sean Hannity -Carter G. Woodson -Carter G. Woodson -Valentines Day -Kesha -Kesha -Nintendo Labo -Oscar Nominations 2018 -Steven Tyler -Kirstjen Nielsen -Government Shutdown -Mardi Gras 2018 -Jennifer Aniston -Kylie Jenner -Dow Jones -State of the Union -Shaun White -Kesha -Patriots -Super Bowl 2018 -Carter G. Woodson -Shaun White -Florida shooting -Super Blue Blood Moon -Justin Timberlake -Bitcoin Price -Government Shutdown -Jamie Dornan -Florida shooting -Andrew Cunanan -Winter Olympics -Super Bowl 2018 -XFL -Sergei Eisenstein -Deadpool 2 -Matt Patricia -Columbine Shooting -Justin Timberlake -Jessica Chastain -Carter G. Woodson -Blake Griffin -SpaceX -The Resident -Patriots -All Star Weekend 2018 -NBA Trades -Isaiah Thomas -Alex Smith -Red Gerard -Super Bowl score -Puppy Bowl 2018 -Paula Modersohn-Becker -Quincy Jones -Grammys 2018 -Altered Carbon -Kelsey Grammer -Winchester -Scott Baio -Elizabeth Blackwell -Super Bowl score -Maria Menounos -Mardi Gras 2018 -Johnny Weir -Virginia Woolf -Lauren Davis -Larry Nassar -Ursula Le Guin -Paula Modersohn-Becker -Carter G. Woodson -Winter Olympics -SAG Awards 2018 -Paula Modersohn-Becker -School closings -Super blue blood Moon -Scott Baio -Valentines Day -Trump State of the Union -Justin Timberlake -Sergei Eisenstein -Shaun White -Sergei Eisenstein -Tom Brady -Virginia Woolf -Super Bowl 2018 -Black Panther -Sergei Eisenstein -Kylie Jenner -Winter Olympics -Tom Petty -Paula Modersohn-Becker -Carter G. Woodson -Florida shooting -Super Bowl score -Super Bowl score -Chicago Weather -Dwyane Wade -Oscar Nominations 2018 -Elizabeth Blackwell -Florida shooting -Virginia Woolf -Super Bowl score -Eli Manning -Caroline Wozniacki -Grammys 2018 -Carter G. Woodson -Wilder Penfield -Melania Trump -Justin Timberlake -Government Shutdown -NBA Trades -Kesha -Justin Timberlake -Red Gerard -Happy Valentines Day -Kim Cattrall -Fredo Santana -Super Bowl score -Trump State of the Union -UFC 220 -What Time Is The Super Bowl -Tom Petty -Sergei Eisenstein -Prince William -Peter Rabbit -Google Classroom -Government Shutdown 2018 -Super blue blood Moon -Super blue blood Moon -Paula Modersohn-Becker -12 Strong -Paula Modersohn-Becker -The 15:17 to Paris -Justin Timberlake -Gods Plan -Super blue blood Moon -Super blue blood Moon -Zion Williamson -Government shutdown -Elizabeth Blackwell -Florida shooting -This is Us -Patriots -Sergei Eisenstein -Shaun White -SpaceX -Shaun White -Paula Modersohn-Becker -Kratom -Virginia Woolf -Jennifer Aniston -Blake Griffin -Google docs -Oscar Nominations 2018 -Virginia Woolf -Carter G. Woodson -SpaceX -Super Bowl score -Carter G. Woodson -What Time Is The Super Bowl -Grammys 2018 -Wilder Penfield -Real Madrid -Mikaela Shiffrin -Solo Trailer -National Pizza Day -Kylie Jenner -Black Panther -Valentine's Day -Florida shooting -SpaceX -Virginia Woolf -Kylie Jenner -Super blue blood Moon -Classroom -Wilder Penfield -Sergei Eisenstein -Elizabeth Blackwell -Elizabeth Blackwell -Ohio State basketball -Chipper Jones -Super Bowl 2018 -Super Bowl 2018 -New England Patriots owner -Grammys 2018 -Steve Mcnair -Paula Modersohn-Becker -Daryle Singletary -Wilder Penfield -Drake -Chinese New Year 2018 -Real Madrid -Virginia Woolf -Winter Olympics -Grammys 2018 -State of the Union -Grammys 2018 -SZA -Paula Modersohn-Becker -Paula Modersohn-Becker -Did the Groundhog See His Shadow -State of the Union -Bitcoin Price -Patriots -stock market -Paula Modersohn-Becker -Patriots -Virginia Woolf -Russell Wilson -Florida shooting -Kylie Jenner Baby Girl -Mark Salling -Florida shooting -Winter Olympics -Steve Mcnair -Mattie Larson -Valentines Day -Groundhog Day 2018 -Alessia Cara -What Time Is The Super Bowl -Sergei Eisenstein -Lil Pump -SpaceX -Elizabeth Blackwell -Otto Warmbier -Abraham Lincoln -Memo -Grammys 2018 -Elizabeth Blackwell -Sergei Eisenstein -NBA Trades -Get Out -Vikings Vs Eagles -Winter Olympics -Patriots -Shibutani -State of the Union -Carter G. Woodson -Bill Parcells -Justin Timberlake -Paula Modersohn-Becker -Tom Brady -Government shutdown 2018 -Larry Nassar -Grey's Anatomy -Carter G. Woodson -Cbs -LeBron James -Florida shooting -stock market -Westerville Ohio -Tesla in space -Sergei Eisenstein -Patriots -Dwyane Wade -Paula Modersohn-Becker -Amazon stock -Bitcoin Price -Trump State of the Union -Bitcoin Price -Friends movie -Florida shooting -Amy Schumer -Johnny Weir -Mark Salling -Tyler Hilinski -SpaceX -12 Strong -Virginia Woolf -Shaun White -Pro Bowl 2018 -Grammys 2018 -Vikings Vs Eagles -Valentines Day -Grammys 2018 -Justin Timberlake -Black Panther -Super blue blood Moon -Robby Anderson -Shaun White -Florida shooting -stock market -Florida shooting -Kesha -Lindsey Vonn -Steve Mcnair -Bitcoin Price -Winter Olympics -Super Bowl score -calculator -Obama portrait -Winter Olympics -Elizabeth Blackwell -Wilder Penfield -Conor McGregor -Mark Salling -Jeff Flake -Anna Kournikova -Wilder Penfield -Phantom Thread -Sergei Eisenstein -Winter Olympics -Wilder Penfield -Wilder Penfield -Toys R Us -Super Bowl score -Google docs -Winter Olympics -Government Shutdown -Super Bowl 2018 -Super Bowl score -Celtics -Super Bowl 2018 -Florida shooting -calculator -Wilder Penfield -Patriots -New England Patriots owner -Blake Griffin -Elizabeth Blackwell -Obama portrait -Patriots -Tessa Virtue -Justin Timberlake -Justin Timberlake -Duke Basketball -Elizabeth Blackwell -Virginia Woolf -Warren Miller -NBA Trades -Best Superbowl Commercials 2018 -Dane Cook -Football Playoffs 2018 -Bitcoin Price -Joe Kennedy -Florida shooting -Ted Bundy -Paula Modersohn-Becker -Florida shooting -Release The Memo -Samson -Jamie Anderson -Super Bowl 2018 -State of the Union -Black Panther -Super Blue Blood Moon -SpaceX -Tyler Hilinski -What Time Is The Super Bowl -Florida shooting -Justin Timberlake -Carter G. Woodson -Elizabeth Blackwell -Sergei Eisenstein -Paula Modersohn-Becker -Justin Timberlake -Justin Timberlake -Solo Trailer -Patriots -Google docs -Larry Nassar -Super Bowl score -Shiffrin -Justin Timberlake -Florida shooting -What Time Is The Super Bowl -Florida shooting -Sergei Eisenstein -Vic Damone -Nancy Pelosi -Did the Groundhog See His Shadow -Justin Timberlake -Grammys 2018 -Florida shooting -Justin Timberlake -The 15:17 to Paris -Vikings Vs Eagles -Alex Smith -Government Shutdown Meaning -Super Bowl score -Erykah Badu -Carter G. Woodson -Super Bowl score -Carter G. Woodson -Virginia Woolf -Virginia Woolf -Winter Olympics -Government shutdown -Carter G. Woodson -Super Bowl score -Super Bowl 2018 -Super Bowl 2018 -Grammys 2018 -Happy Valentines Day -Obama portrait -Brynn Cameron -What Time Is The Super Bowl -Elizabeth Blackwell -Elizabeth Blackwell -Jason Kelce -This Is Us -Alaska earthquake -Larry Nassar -Grammys 2018 -Kesha Grammy -Adam Rippon -Grammys 2018 -Lindsey Vonn -SpaceX -Yura Min -Justin Timberlake -Winter Olympics -Wilder Penfield -Joe Kennedy -What Time Is The Super Bowl -Elizabeth Blackwell -Sergei Eisenstein -Virginia Woolf -Virginia Woolf -Virginia Woolf -Celebrity Big Brother cast -Super Bowl score -Memo -Kylie Jenner -Sergei Eisenstein -Wilder Penfield -Super Bowl score -NBA Trades -Winter Olympics -Montreal Cognitive Assessment -Paula Modersohn-Becker -Jennifer Aniston -Justin Timberlake -Ar 15 -Winter Olympics -Tyler Hilinski -SpaceX -Amy Schumer -Alexander Polinsky -Winter Olympics -Super Bowl score -Mueller -Super Bowl score -Wilder Penfield -Pro Bowl 2018 -Winter Olympics -Paula Modersohn-Becker -Tom Petty -Hope Hicks -Shaun White -Anthony Davis -Vikings Vs Eagles -Women's March 2018 -Wilder Penfield -SpaceX -Super Bowl 2018 -Sting -Sergei Eisenstein -Carter G. Woodson -Winter Olympics -Champions League -Kylie Jenner -Yahoo Finance -Jennifer Aniston -Florida shooting -Virginia Woolf -Super Bowl Commercials 2018 -Super Bowl 2018 -Oscar Nominations 2018 -Patriots -Cbs -Mike Fisher -What Time Is The Super Bowl -Sergei Eisenstein -Virginia Woolf -Winter Olympics -Super Bowl 2018 -Chloe Kim -Super Bowl 2018 -Joy Villa -Carter G. Woodson -Happy Valentines Day -Rob Porter -Florida shooting -Virginia Woolf -Carter G. Woodson -AR-15 -Joe Kennedy -Lee Miglin -Virginia Woolf -Super blue blood Moon -Super Bowl score -Sergei Eisenstein -Florida shooting -Valentines Day Images -Joe Kennedy -Elton John -Carter G. Woodson -Grammys 2018 -Kirstjen Nielsen -Government Shutdown -Super Bowl 2018 -Patriots -Dwyane Wade -Happy Valentines Day -Paula Modersohn-Becker -Larry Nassar -Yuzuru Hanyu -Sal Castro Middle School -Lunar eclipse -Sergei Eisenstein -Cloverfield Paradox -Kylie Jenner -Sergei Eisenstein -Shaun White -Wilder Penfield -Shaun White -Ash Wednesday -Super Bowl 2018 -Sergei Eisenstein -Super Bowl score -Vikings Vs Eagles -Larry Nassar -Kylie Jenner -Florida shooting -Bitcoin Price -NSA -SpaceX -Super Bowl score -Grammys 2018 -Government Shutdown -Carter G. Woodson -Florida shooting -Patriots -Government shutdown 2018 -SpaceX -Patriots -Justin Timberlake -Justin Timberlake -Super Bowl 2018 -Patriots -Paula Modersohn-Becker -Virginia Woolf -Carter G. Woodson -Blake Griffin Trade -Andrew McCabe -Pro Bowl 2018 -Winter Olympics -Paula Modersohn-Becker -Brynn Cameron -Andre Roberson -Quincy Jones -Steve Wynn -Florida shooting -Super Bowl 2018 -Florida shooting -Super Bowl 2018 -Sergei Eisenstein -Black Panther -Virginia Woolf -Paula Modersohn-Becker -Vanessa Trump -Eric Wood -Matt Czuchry -Groundhog Day 2018 -NBC Sports -Winter Olympics -Kylie Jenner -Rose McGowan -Olympics 2018 -Valentines Day -Winter Olympics -Elizabeth Blackwell -Carter G. Woodson -Tony Romo -Carter G. Woodson -Wilder Penfield -Joe Kennedy -Sergei Eisenstein -Otto Warmbier -What Time Is The Super Bowl -Kentucky shooting -Rasual Butler -Bruno Mars -Groundhog Day 2018 -Blue Ivy -Groundhog Day 2018 -Matt Czuchry -Shaun White -Super Bowl score -Florida shooting -Virginia Woolf -NBC Sports -Sergei Eisenstein -What Time Is The Super Bowl -SpaceX -Patriots -Justin Timberlake -Super Bowl 2018 -Wilder Penfield -Patriots -Edwin Jackson -Government Shutdown 2018 -Sergei Eisenstein -Carter G. Woodson -Paula Modersohn-Becker -Walter Payton -curling -Carter G. Woodson -Carter G. Woodson -Vikings Vs Eagles -Patriots -Larry Nassar -Memo -Super Bowl 2018 -What Time Is The Super Bowl -Wilder Penfield -Alexa Commercial -Patriots -Paula Modersohn-Becker -Winter Olympics -Elizabeth Blackwell -Nba All Star Draft -Virginia Woolf -Rose McGowan -Groundhog Day 2018 -Alaska earthquake -Elizabeth Blackwell -Carter G. Woodson -Naya Rivera -Oscar Gamble -Elizabeth Blackwell -Paula Modersohn-Becker -Virginia Woolf -Patriots -Royal Rumble 2018 -NFL Honors -Quincy Jones -Cavs -Super Bowl 2018 -Dow Jones -Super Bowl score -Nancy Pelosi -Winter Olympics -Kentucky shooting -Brynn Cameron -Winter Olympics -Ash Wednesday -Grammys 2018 -Florida shooting -SpaceX -Sean Hannity -Princess Eugenie -Costco Wholesale -Elizabeth Blackwell -Larry Nassar -Nikki Haley -Florida shooting -Virginia Woolf -Carter G. Woodson -Black Panther -Winter Olympics -Omarosa -Hope Hicks -Mark Salling -Florida shooting -Blake Griffin -Johnny Weir -Ar 15 -Super Bowl score -SpaceX -Sergei Eisenstein -Wilder Penfield -Patriots -Government shutdown 2018 -Virginia Woolf -Justin Timberlake -Winter Olympics -Alexa Commercial -Winter Olympics -Justin Timberlake -Black Panther -The Alienist -Virginia Woolf -Virginia Woolf -Rodney Hood -Paula Modersohn-Becker -Larry Nassar -Winter Olympics -SpaceX -Virginia Woolf -Lakers -Pro Bowl 2018 -Larry Nassar -Grammys 2018 -calculator -Brie Larson -Winter Olympics -Sting -Alaska earthquake -Wilder Penfield -Uma Thurman -Government shutdown -Patriots -Winter Olympics -Groundhog Day 2018 -Paula Modersohn-Becker -Government Shutdown -Winter Olympics -Sergei Eisenstein -Camila Cabello -Google docs -Wilder Penfield -Super Bowl 2018 -Justin Timberlake -Sergei Eisenstein -Super Bowl score -Kesha Grammy -Super blue blood Moon -Justin Timberlake -NBC Sports -Florida shooting -Deadpool 2 -Super Bowl 2018 -Dow Jones -Super Bowl score -Tom Petty -Larry Nassar -Carter G. Woodson -State of the Union -Carter G. Woodson -What Time Is The Super Bowl -Patriots -Chloe Kim -Super Bowl Winners -Elizabeth Blackwell -Wilder Penfield -Mike Vrabel -Paula Modersohn-Becker -Fredo Santana -Justin Timberlake -Mavic Air -Mardi Gras 2018 -Best Superbowl Commercials 2018 -Google docs -Friends movie -Shaun White -Olympic medal count -Elizabeth Blackwell -Carter G. Woodson -Lunar eclipse -Virginia Woolf -Virginia Woolf -Josh McDaniels -Florida shooting -Super Bowl score -Florida shooting -Justin Timberlake -Edwin Jackson -Carter G. Woodson -Winter Olympics -Paula Modersohn-Becker -Virginia Woolf -Super Bowl score -Altered Carbon -Paula Modersohn-Becker -Alison Brie -Olive Garden -Solo Trailer -Grammys 2018 -Wilder Penfield -Winter Olympics -Paula Modersohn-Becker -Larry Nassar -Oscar Nominations 2018 -Kim Kardashian -Sergei Eisenstein -Sergei Eisenstein -What Time Is The Super Bowl -Childish Gambino -Patriots -Lorenzo Cain -Mikaela Shiffrin -Super Bowl score -State of the Union -Steve Wynn -SpaceX -Edible Arrangements -Florida shooting -Florida shooting -Kylie Jenner -Patriots -Wilder Penfield -SpaceX -Super Bowl score -Mardi Gras 2018 -Steve Wynn -Government shutdown 2018 -Oscar Nominations 2018 -Florida shooting -Ash Wednesday -UFC 220 -Portia de Rossi -Cory Booker -Virginia Woolf -Patriots -Derrick Rose -Super Bowl 2018 -Florida shooting -Larry Nassar -Elizabeth Blackwell -Chipper Jones -Red Gerard -Google docs -Tom Petty -Black Panther -Trey Gowdy -Virginia Woolf -Wilder Penfield -Super Bowl score -Patriots -Elizabeth Blackwell -calculator -Paula Modersohn-Becker -Alex Smith -Kylie Jenner Baby Girl -Oscar Nominations 2018 -Jimmy Garoppolo -Super Bowl score -Groundhog Day 2018 -Caroline Wozniacki -Sergei Eisenstein -John Mahoney -Patriots -Sergei Eisenstein -Grammys 2018 -Vikings vs Eagles -Oscar Gamble -Groundhog Day 2018 -Black Panther -Eli Manning -Wilder Penfield -Bitcoin Price -Super Bowl 2018 -Super Bowl score -Winter Olympics -What Time Is The Super Bowl -Wilder Penfield -Women's March 2018 -Wilder Penfield -Justin Timberlake -Elizabeth Blackwell -Vanity Fair Cover -Shaun White -New England Patriots owner -Florida shooting -Chinese New Year 2018 -Grammys 2018 -Cedi Osman -Patriots -Dow Jones -Logan Paul -What Time Is The Super Bowl -Larry Nassar -School Closings -Virginia Woolf -Vikings Vs Eagles -Patti LuPone -SpaceX -Virginia Woolf -Super Bowl score -Tyler Hilinski -Alessia Cara -Super Bowl Commercials 2018 -Shaun White -SpaceX -Royal Rumble 2018 -Super Bowl 2018 -Jamie Anderson -Celtics -Royal Rumble 2018 -Super Bowl score -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl 2018 -Sergei Eisenstein -Alaska earthquake -Fidel Castro -Alison Brie -Winter Olympics -Justin Timberlake -Wilder Penfield -Chloe Kim -Virginia Woolf -Paula Modersohn-Becker -Florida shooting -Elizabeth Blackwell -Fifty Shades Freed -Dow Jones -Florida shooting -Jennifer Aniston -Winter Olympics -United States Of America Winter Olympics -SAG Awards 2018 -Patti LuPone -Dow Jones -Royal Rumble 2018 -Chinese New Year 2018 -Lunar eclipse -Vikings Vs Eagles -SpaceX -Trump State of the Union -Virginia Woolf -Winter Olympics -Patriots -Wilder Penfield -Yu Darvish -VIX -Apple stock -Tom Petty -Black Panther -Earthquake Today -Sergei Eisenstein -Sergei Eisenstein -Winter Olympics -Wilder Penfield -Patriots -Royal Rumble 2018 -SpaceX -Elizabeth Blackwell -Paula Modersohn-Becker -Edwin Jackson -Winter Olympics -Winter Olympics -National Pizza Day -Government shutdown -Kesha -What Time Is The Super Bowl -Dennis Edwards -Alaska earthquake -Happy Valentines Day -Sergei Eisenstein -Florida shooting -Winter Olympics -Wilder Penfield -Alex Smith -Joe Kennedy -Super Bowl 2018 -Black Panther -Cavs -Patriots -United States Of America Winter Olympics -Winter Olympics -Florida shooting -Luke Wilson -Grammys 2018 -Sergei Eisenstein -Will Ferrell -Virginia Woolf -Rasual Butler -New England Patriots owner -Carter G. Woodson -Fredo Santana -Memo -Grammys 2018 -calculator -Kesha -SpaceX -Did the Groundhog See His Shadow -The Resident -Winter Olympics -Chinese New Year 2018 -New England Patriots owner -Women's March 2018 -Sergei Eisenstein -Terrell Owens -Quincy Jones -Florida shooting -Rodney Hood -Outback Steakhouse -Rasual Butler -Obama portrait -Jennifer Aniston -Pro Bowl 2018 -Super Bowl 2018 -Venom -Patriots -Jacob Copeland -Sergei Eisenstein -Pro Bowl 2018 -Pro Bowl 2018 -Google Drive -Grammys 2018 -Virginia Woolf -This Is Us -Groundhog Day 2018 -Winter Olympics -State of the Union -Wilder Penfield -Super Bowl Commercials 2018 -NBA Trades -Super Bowl 2018 -School Closings -Super Bowl Commercials -Larry Nassar -Ursula Le Guin -Patriots -Hope Hicks -Grammys 2018 -Florida shooting -Joe Kennedy -Carter G. Woodson -Black Panther -Wilder Penfield -Florida shooting -Florida shooting -Super blue blood Moon -Tyler Hilinski -Dow Jones -Winter Olympics -Elizabeth Blackwell -Winter Olympics -What Time Is The Super Bowl -pissant -Sandy Hook -Kylie Jenner -Korea -Olympic medal count -SpaceX -What Time Is The Super Bowl -Dow Jones -Florida shooting -Shaun White -Paula Modersohn-Becker -Florida shooting -Super Bowl score -Paula Modersohn-Becker -Super Bowl 2018 -Obama portrait -Elizabeth Blackwell -NHL All Star Game -Simona Halep -Celtics -Carter G. Woodson -Shaun White -SpaceX -Sergei Eisenstein -Wilder Penfield -Lauren Davis -Grammys 2018 -Sergei Eisenstein -Jamie Dornan -Steven Tyler -Olympic medal count -What Time Is The Super Bowl -Jamie Anderson -Winter Olympics -Super Bowl 2018 -calculator -Wilder Penfield -Sergei Eisenstein -Black Panther -Florida shooting -Portia de Rossi -Did the Groundhog See His Shadow -SpaceX -UFC 220 -Utah Jazz -Black Panther -Carter G. Woodson -Vikings Vs Eagles -Kylie Jenner Baby Girl -Altered Carbon -Carter G. Woodson -Matt Czuchry -Larry Nassar -Larry Nassar -Isaiah Thomas -Black Panther -SpaceX -Dow Jones -Carter G. Woodson -Halsey -Oscar Nominations 2018 -Florida shooting -Florida shooting -Hostiles -earthquake -Vikings Vs Eagles -Virginia Woolf -Eli Manning -Wilder Penfield -Larry Nassar -Super blue blood Moon -When We First Met -Real Madrid -Esteban Loaiza -Kim Kardashian -Alessia Cara -Cavs -Government Shutdown -Brynn Cameron -What Time Is The Super Bowl -Carter G. Woodson -Super Bowl 2018 halftime show -Paula Modersohn-Becker -Grammys 2018 -Alaska earthquake -What Time Is The Super Bowl -Josh McDaniels -Wilder Penfield -Sabrina Dhowre -Wilder Penfield -Blake Griffin -Amazon HQ2 -Farmers Insurance Open 2018 -Super Bowl score -NBC Sports -Justin Timberlake -Super Bowl 2018 -Groundhog Day 2018 -Super Bowl Commercials 2018 -Elizabeth Blackwell -Vikings Vs Eagles -VIX -Andrew Cunanan -Super blue blood Moon -Patty Hearst -Montreal Cognitive Assessment -Super blue blood Moon -Fredo Santana -Florida shooting -Paula Modersohn-Becker -Bitcoin Price -Kylie Jenner -Rihanna -Super Bowl 2018 -Cherry Seaborn -Paula Modersohn-Becker -Carter G. Woodson -SpaceX -Super Bowl score -Norovirus -Super Bowl 2018 -Google Drive -Zuleyka Rivera -XFL -Vikings Vs Eagles -Carter G. Woodson -Grammys 2018 -Jessica Biel -Winter Olympics -Winter Olympics -Super Bowl 2018 -Wilder Penfield -Carter G. Woodson -Joe Kennedy -Ash Wednesday -Sergei Eisenstein -Mark Salling -Virginia Woolf -Elizabeth Blackwell -Elizabeth Blackwell -Bill Paxton -Luke Wilson -Groundhog Day 2018 -Trump State of the Union -UFC 221 -Super Bowl score -Super Bowl score -Paula Modersohn-Becker -Winter Olympics -Wilder Penfield -AFC Championship Game 2018 -Rose McGowan -Virginia Woolf -Derrick Rose -Altered Carbon -Early Man -Lee Miglin -CNN -SAG Awards 2018 -Virginia Woolf -Sergei Eisenstein -NBA Trades -Patriots -Super Bowl score -Mark Salling -SpaceX -Vikings Vs Eagles -SpaceX -Luke Wilson -The Home Depot -Den of Thieves -Wilder Penfield -Nathan Chen -Sergei Eisenstein -Zion Williamson -Justin Timberlake -Grammys 2018 -Joe Kennedy -Joshua Cooper Ramo -Super Bowl score -Trump State of the Union -NBA Trades -Winter Olympics -Sergei Eisenstein -Elizabeth Blackwell -Virginia Woolf -SpaceX -Kim Kardashian -Paula Modersohn-Becker -Johnny Weir -United States Of America Winter Olympics -Walter Payton -Elizabeth Blackwell -Winter Olympics -Carter G. Woodson -The 15:17 to Paris -Olympic medal count -Florida shooting -Elizabeth Blackwell -Elizabeth Blackwell -Google docs -Outback Steakhouse -calculator -Adam Rippon -Warren Miller -Chris Paul -Patriots -Happy Valentines Day -Blake Griffin -Classroom -Paula Modersohn-Becker -Royal Rumble 2018 -Puppy Bowl 2018 -Wilder Penfield -Devin Nunes -Zuleyka Rivera -Harley Barber -The 15:17 to Paris -Super Bowl score -tsunami -Black Panther -Kylie Jenner -Lindsey Vonn -Sergei Eisenstein -Virginia Woolf -Sabrina Dhowre -Warren Miller -Super Bowl score -Super Bowl 2018 -Super Bowl 2018 -Caroline Wozniacki -Lady Doritos -Google docs -Joshua Cooper Ramo -Florida shooting -Florida shooting -Memo -Grammys 2018 -Dow Jones -Justin Timberlake -Marlon Brando -Pro Bowl 2018 -Josh McDaniels -calculator -Dwyane Wade -Super Bowl 2018 -Valentines Day -Trey Gowdy -Rodney Hood -What Time Is The Super Bowl -Larry Nassar -Josh McDaniels -Wilder Penfield -UFC 220 -Elton John -Kylie Jenner -Florida shooting -Presidents Day 2018 -Alex Reimer -Google Classroom -Black Panther -Grammys 2018 -Did the Groundhog See His Shadow -Abraham Lincoln -Mark Salling -Government Shutdown Meaning -Sergei Eisenstein -Shaun White -Grammys 2018 -Carter G. Woodson -Virginia Woolf -Memo -Winter Olympics -Solo Trailer -Super Bowl 2018 -Sergei Eisenstein -Mitt Romney -Childish Gambino -Rose McGowan -School Closings -Snapchat Update -Grammys 2018 -Ash Wednesday -Super Bowl 2018 -Cherry Seaborn -Olympic Medal Count -Mark Salling -Best Superbowl Commercials 2018 -Dow Jones -Paula Modersohn-Becker -Florida shooting -Florida shooting -Jason Kidd -LL Bean -Lil Pump -Jason Kidd -Elizabeth Blackwell -Wilder Penfield -Carter G. Woodson -Olympic medal count -Patriots -Lunar eclipse -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl 2018 -Justin Timberlake -Elton John tickets -Super Bowl score -Wilder Penfield -Deadpool 2 -Adam Rippon -Super Bowl score -Super Bowl score -Virginia Woolf -Super blue blood Moon -Patriots -Kylie Jenner -SpaceX -Sergei Eisenstein -Super Bowl score -Virginia Woolf -Adam Rippon -Super Bowl score -New England Patriots owner -What Time Is The Super Bowl -National Pizza Day -Paula Modersohn-Becker -SpaceX -Patriots -Carter G. Woodson -Government Shutdown Meaning -Real Madrid -New England Patriots owner -Elton John -Winter Olympics -Wilder Penfield -Royal Rumble 2018 -Virginia Woolf -Ohio State basketball -Super Bowl score -Tyler Hilinski -Joel Taylor -What Time Is The Super Bowl -Super Bowl score -Robinhood -Elizabeth Blackwell -Patriots -Classroom -Super blue blood Moon -Paula Modersohn-Becker -Juventus -Elizabeth Blackwell -Happy Valentines Day -Virginia Woolf -What Time Is The Super Bowl -Kylie Jenner -Farmers Insurance Open 2018 -Super Bowl score -Yu Darvish -Super Bowl 2018 -Florida shooting -Adam Rippon -Mardi Gras 2018 -Ar 15 -Paula Modersohn-Becker -Nathan Chen -Josh McDaniels -Winter Olympics -Tyler Hilinski -SpaceX -Paula Modersohn-Becker -Cloverfield Paradox -Chinese New Year 2018 -Sergei Eisenstein -Red Gerard -Atlanta Weather -Aaron Hernandez -Groundhog Day 2018 -Rasual Butler -Tiger Woods -Mark Salling -Puppy Bowl 2018 -Jamie Dornan -lady gaga grammys -Super Bowl 2018 -Carter G. Woodson -SpaceX -Daryle Singletary -Robinhood -Omarosa -What Time Is The Super Bowl -Blake Griffin -Edwin Jackson -Super Bowl score -Wilder Penfield -Carter G. Woodson -Chris Long -Sergei Eisenstein -What Time Is The Super Bowl -Mike Tomlin -Winter Olympics -Virginia Woolf -Grammys 2018 -Carter G. Woodson -Google Classroom -Elizabeth Blackwell -Peter Rabbit -Google docs -Government Shutdown -Sandy Hook -IXL -Florida shooting -Black Panther -Wilder Penfield -Winter Olympics -Sergei Eisenstein -Super Bowl 2018 -Winter Olympics -Black Panther -Jason Kelce -Super Bowl score -Jennifer Aniston -What Time Is The Super Bowl -State of the Union -Bill Parcells -Sergei Eisenstein -Tom Brady daughter -Danielle Herrington -Memo -Chicago West -Government Shutdown -Tessa Virtue -curling -Memo -Dua Lipa -Government Shutdown -Sergei Eisenstein -Elizabeth Blackwell -Cavs -Obama portrait -Elizabeth Blackwell -Rasual Butler -Paula Modersohn-Becker -Winter Olympics -Elizabeth Blackwell -Sergei Eisenstein -Virginia Woolf -Government Shutdown 2018 -Sergei Eisenstein -Google Drive -Sergei Eisenstein -Alison Brie -Larry Nassar -Florida shooting -Mark E Smith -Larry Nassar -Robinhood -CNN -Virginia Woolf -Red Gerard -Rodney Hood -Justin Timberlake -Maddie Mastro -Bob Marley -Government Shutdown -Jane Fonda -Jeff Flake -Super Bowl score -Celtics -Dwyane Wade -CNN -Wilder Penfield -National Pizza Day -Virginia Woolf -Larry Nassar -Super Bowl 2018 -calculator -Grammys 2018 -Super Bowl 2018 -Sergei Eisenstein -Patriots -Peter Rabbit -Adam Rippon -Kylie Jenner -Black Panther -Black Panther -Carter G. Woodson -Justin Timberlake -Classroom -SpaceX -Government Shutdown -Paula Modersohn-Becker -NSA -Paula Modersohn-Becker -Sergei Eisenstein -Adam Rippon -Dow Jones -Obama portrait -This Is Us -Oscar Nominations 2018 -Virginia Woolf -Super blue blood Moon -Paula Modersohn-Becker -Super Bowl score -NBA Trades -Carter G. Woodson -Justin Timberlake -Chloe Kim Snowboarder -Enzo Amore -Jennifer Aniston -SpaceX -Virginia Woolf -NSA -Super Bowl score -Solo Trailer -Virginia Woolf -SZA -Robert Mueller -Sergei Eisenstein -Trey Gowdy -Venom -Florida shooting -Solo Trailer -Paula Modersohn-Becker -Florida shooting -Mexico earthquake -Winter Olympics -National Pizza Day -Cavs -Happy Valentines Day -LL Bean -Happy Valentines Day -Super Bowl score -Olympic Medal Count -Royal Rumble 2018 -Super Bowl score -Winter Olympics -Super Bowl 2018 -Kentucky shooting -Super Bowl Commercials -Super Bowl score -Government Shutdown Meaning -National Pizza Day -Wilder Penfield -calculator -Government Shutdown Meaning -Winter Olympics -Winter Olympics -Wilder Penfield -Virginia Woolf -Super Bowl 2018 -Elizabeth Blackwell -Florida shooting -Zion Williamson -Paula Modersohn-Becker -Patriots -Paula Modersohn-Becker -Wilder Penfield -FA Cup -Dwyane Wade -Government Shutdown -Justin Timberlake -Mardi Gras 2018 -Shaun White -Super Bowl score -Harley Barber -Stan Lee -Happy Valentines Day -Happy Valentines Day -Government Shutdown -Super Bowl 2018 -Kim Kardashian -Florida shooting -Alaska earthquake -Kentucky shooting -Wilder Penfield -Patriots -Kim Kardashian -Carter G. Woodson -Kylie Jenner -Winter Olympics -Pro Bowl 2018 -Sergei Eisenstein -Patti LuPone -Blue Ivy -Wilder Penfield -Natalie Wood -Carter G. Woodson -Florida shooting -Dwyane Wade -Groundhog Day 2018 -Virginia Woolf -Derrick Rose -Best Superbowl Commercials 2018 -Kylie Jenner -Super blue blood Moon -SpaceX -Kylie Jenner -Sergei Eisenstein -Cherry Seaborn -Elizabeth Blackwell -Carter G. Woodson -Oscar Nominations 2018 -Anna Kournikova -Wilder Penfield -Valentines Day -Neil Diamond -Wilder Penfield -Dua Lipa -Google Classroom -Valentines Day Memes -Quincy Jones -Government Shutdown Meaning -Virginia Woolf -Wilder Penfield -Government shutdown -Wilder Penfield -Grammys 2018 -Adam Rippon -Government Shutdown -Tesla in space -calculator -Altered Carbon -Virginia Woolf -Super Bowl score -Puppy Bowl 2018 -Patriots -Super Bowl 2018 -Sergei Eisenstein -Ursula Le Guin -luge -Winter Olympics -Larry Nassar -Florida shooting -Bill Paxton -Elizabeth Blackwell -Virginia Woolf -Super Bowl 2018 -Super Bowl 2018 halftime show -Elizabeth Blackwell -Rasual Butler -Wilder Penfield -SpaceX -Gus Kenworthy -Wilder Penfield -Valentines Day -Patriots -Black Panther -Patriots -Government Shutdown -Paula Modersohn-Becker -Aaron Fies -Solo Trailer -Doomsday Clock -Sergei Eisenstein -Kylie Jenner Baby Girl -Mike Tomlin -Paula Modersohn-Becker -Patriots -Larry Nassar -Kylie Jenner -Winter Olympics -What Time Is The Super Bowl -Adam Rippon -Super Bowl score -Super Bowl 2018 -Shaun White -SpaceX -Dow Jones -Super Bowl score -Patriots -Patriots -Government shutdown -Wilder Penfield -Wilder Penfield -Waco -Larry Nassar -Bitcoin Price -Virginia Woolf -Super Bowl score -Terry Bradshaw -Fredo Santana -What Time Is The Super Bowl -Virginia Woolf -Justin Timberlake -Vikings Vs Eagles -Grammys 2018 -What Time Is The Super Bowl -Winter Olympics -Memo -Cloverfield Paradox -Cloverfield Paradox -Nascar Schedule -Virginia Woolf -KSI -Dwyane Wade -Carter G. Woodson -Virginia Woolf -Super Bowl 2018 -Dwyane Wade -Florida shooting -Carter G. Woodson -Florida shooting -Childish Gambino -Government Shutdown -Bob Marley -SpaceX -Kylie Jenner -Paula Modersohn-Becker -Elizabeth Blackwell -Utah Jazz -Patriots -H&r Block -What Time Is The Super Bowl -Mark Salling -Wilder Penfield -Florida shooting -Zion Williamson -Cloverfield Paradox -What Time Is The Super Bowl -Wilder Penfield -Vikings Vs Eagles -Cavs -Paula Modersohn-Becker -Sergei Eisenstein -Ash Wednesday -NFL Honors -Google docs -Patriots -Paula Modersohn-Becker -Super Bowl 2018 halftime show -SpaceX -Hostiles -Super Bowl Winners -luge -Florida shooting -Lindsey Vonn -Ash Wednesday -Did the Groundhog See His Shadow -Dow Jones -SpaceX -Super Bowl score -Adam Schiff -Mexico earthquake -Edwin Jackson -Dow Jones -Virginia Woolf -Winter Olympics -Larry Nassar -Mexico Vs Bosnia -Shaun White -Black Panther -Carter G. Woodson -XFL -Super Bowl score -HomePod -Government Shutdown -Despacito -Blake Griffin -Patriots -Joe Kennedy -Black Lightning -Winter Olympics -Patriots -Dane Cook -Carter G. Woodson -Halsey -Friends movie -NBA Trades -Jennifer Aniston -Google Drive -Wilder Penfield -Carter G. Woodson -SpaceX -James Harden -Danielle Herrington -Larry Nassar -Danielle Herrington -Carter G. Woodson -Florida shooting -Shaun White -Alex Smith -Did the Groundhog See His Shadow -Justin Timberlake -school closings -Florida shooting -Camila Cabello -school closings -Early Man -Tom Izzo -Wilder Penfield -Nba All Star 2018 -Winter Olympics -New England Patriots owner -Paula Modersohn-Becker -Super Bowl 2018 -Vikings vs Eagles -stock market -Tom Brady daughter -Super Bowl 2018 -Paula Modersohn-Becker -Paula Modersohn-Becker -Carter G. Woodson -Justin Timberlake -Super Bowl 2018 -Sergei Eisenstein -SpaceX -This Is Us -Carter G. Woodson -What Time Is The Super Bowl -Justin Timberlake -Winter Olympics -Tyler Hilinski -Dow Jones -Grammys 2018 -Paula Modersohn-Becker -Winter Olympics -Grammys 2018 -United States Of America Winter Olympics -Terrell Owens -Bitcoin Price -SpaceX -Sergei Eisenstein -Dow Jones -NFL Honors -Bill Parcells -Virginia Woolf -Paula Modersohn-Becker -Trump State of the Union -Florida shooting -Carter G. Woodson -Virginia Woolf -Oscar Nominations 2018 -Cherry Seaborn -Sergei Eisenstein -Super Bowl 2018 -Happy Valentines Day -Super Bowl score -Super Bowl 2018 -SpaceX -Carter G. Woodson -Olive Garden -Winter Olympics -Super Bowl 2018 -Super Bowl score -Justin Timberlake -Government shutdown -Carter G. Woodson -Elizabeth Blackwell -Montgomery County Public Schools -Florida shooting -What Time Is The Super Bowl -Happy Valentines Day -Wilder Penfield -Winter Olympics -Super Bowl Commercials 2018 -Sergei Eisenstein -Justin Timberlake -Sergei Eisenstein -Patriots -New England Patriots owner -Government shutdown 2018 -Virginia Woolf -Chipper Jones -Sergei Eisenstein -Winter Olympics -Sergei Eisenstein -Winter Olympics -Bob Dole -Kris Dunn -Patriots -School closings -Tom Petty -Shaun White -NBA Trades -Did the Groundhog See His Shadow -Oscar Nominations 2018 -Paula Modersohn-Becker -Paula Modersohn-Becker -Government Shutdown -Sergei Eisenstein -SpaceX -Super Bowl score -Grammys 2018 -Sergei Eisenstein -Solo Trailer -Super blue blood Moon -Government Shutdown 2018 -Kentucky shooting -Lonzo Ball -Kylie Jenner -State of the Union -Patriots -Super Bowl score -Carter G. Woodson -Bitcoin Price -Lena Zawaideh -Wilder Penfield -Patriots -Virginia Woolf -Venom -Bradie Tennell -This Is Us -Black Panther -Patriots -Paula Modersohn-Becker -New England Patriots owner -Sergei Eisenstein -Blue Moon -Justin Timberlake -Snapchat Update -Tom Brady -Mcdonald's -Kylie Jenner -Super Bowl 2018 -Larry Nassar -Carter G. Woodson -Katie Couric -Justin Timberlake -Wilder Penfield -Wilder Penfield -Chinese New Year 2018 -Olympic Medal Count -Presidents Day 2018 -Solo Trailer -National Pizza Day -Super Bowl 2018 -Patriots -Wilder Penfield -What Time Is The Super Bowl -Patriots -Dow Jones -Vikings Vs Eagles -Groundhog Day 2018 -Groundhog Day 2018 -Virginia Woolf -Pro Bowl 2018 -Groundhog Day 2018 -Nintendo Labo -Gianni Versace -Elizabeth Blackwell -Florida shooting -What Time Is The Super Bowl -Chicago Weather -Justin Timberlake -Yu Darvish -Patriots -Paula Modersohn-Becker -Florida shooting -Nintendo Labo -Maria Menounos -Super Bowl score -Jimmy Garoppolo -Vince McMahon -Winter Olympics -Chloe Kim -Kylie Jenner -Florida shooting -Valentines Day -Mardi Gras 2018 -Virginia Woolf -Winter Olympics -weather tomorrow -Super Bowl score -Super blue blood Moon -Wilder Penfield -Carter G. Woodson -Obama portrait -Government Shutdown -SpaceX -Jason Kidd -Elton John -Oscar Nominations 2018 -Super Bowl 2018 -Carter G. Woodson -Carl Higbie -Winter Olympics -Paula Modersohn-Becker -fake news awards -Elton John -Mark Salling -Elizabeth Blackwell -Patriots -Elizabeth Blackwell -Kentucky shooting -What Time Is The Super Bowl -Super Bowl score -Kylie Jenner -Paula Modersohn-Becker -Black Panther -Winter Olympics -What Time Is The Super Bowl -Larry Nassar -Lindsey Vonn -Sergei Eisenstein -UFC 220 -Florida shooting -Kylie Jenner -Happy Valentines Day -Eli Manning -Elizabeth Blackwell -Virginia Woolf -Pro Bowl 2018 -Despacito -Amazon stock -Paula Modersohn-Becker -Patriots -Chicago Weather -UFC 220 -NFL Honors -Edwin Jackson -Florida shooting -Super Bowl 2018 -Sammy Sosa -Alex Smith -Oscar Nominations 2018 -Super Bowl score -Carter G. Woodson -Obama portrait -School closings -Incredibles 2 -Olympic Medal Count -Stan Lee -Florida shooting -Virginia Woolf -Daryle Singletary -Happy Valentines Day -NBC Sports -Maddie Mastro -Aaron Feis -Vikings vs Eagles -Red Gerard -SpaceX -Norovirus -Super Bowl score -Solo Trailer -Nintendo Labo -Sarah Barthel -Paula Modersohn-Becker -Grammys 2018 -Melania Trump -Taiwan Earthquake Today -Erykah Badu -Sergei Eisenstein -Justin Timberlake -Carter G. Woodson -Jessica Chastain -Patriots -Joe Kennedy -Carter G. Woodson -Carter G. Woodson -Super Bowl 2018 -Dwyane Wade -Florida shooting -pissant -Wilder Penfield -Tiger Woods -Florida shooting -Patty Hearst -Winter Olympics -Kylie Jenner -Vikings vs Eagles -Happy Valentines Day -Wilder Penfield -Carter G. Woodson -Winter Olympics -Winter Olympics -Paula Modersohn-Becker -Virginia Woolf -Virginia Woolf -Shaun White -Government Shutdown -Winter Olympics -Quincy Jones -Super Bowl 2018 -Google Classroom -Elizabeth Blackwell -Jason Kelce -Wilder Penfield -Super Bowl 2018 -Justin Timberlake -Florida shooting -Riverdale -Kesha Grammy -Wilder Penfield -Melania Trump -Carter G. Woodson -Fifty Shades Freed -Mikaela Shiffrin -Sal Castro Middle School -Virginia Woolf -Kim Cattrall -Sergei Eisenstein -Virginia Woolf -Carter G. Woodson -Winter Olympics -Sergei Eisenstein -Elizabeth Blackwell -Joe Kennedy -Elton John -shutdown -Did the Groundhog See His Shadow -Elizabeth Blackwell -Altered Carbon -Alaska earthquake -Florida shooting -Carter G. Woodson -Carter G. Woodson -Rasual Butler -Josh McDaniels -Elizabeth Blackwell -Elizabeth Blackwell -John Mahoney -Sergei Eisenstein -SpaceX -Isaiah Thomas -Justin Timberlake -Super Bowl 2018 -Tonga -Venom -Black Panther -State of the Union -Elizabeth Blackwell -Kylie Jenner Baby Girl -Portia de Rossi -Winter Olympics -Vanessa Trump -Sergei Eisenstein -Olympic Medal Count -Kentucky shooting -Lunar eclipse -Happy Valentines Day -luge -Jalen Ramsey -Virginia Woolf -What Time Is The Super Bowl -Patriots -Wilder Penfield -Virginia Woolf -Super Bowl 2018 -Government Shutdown -Vanity Fair Cover -Isaiah Thomas -Wonder Woman -Elizabeth Blackwell -Lonzo Ball -Peter Rabbit -Super Bowl 2018 -Carter G. Woodson -Winter Olympics -Florida shooting -SAG Awards 2018 -Lady Bird -Larry Nassar -Obama portrait -Cavs -Government Shutdown -Alex Smith -Tennys Sandgren -Mikaela Shiffrin -Isaiah Thomas -Patriots -Edwin Jackson -What Time Is The Super Bowl -Florida shooting -Super Bowl 2018 -Rose McGowan -SpaceX -Blue Moon -Johnny Weir -Groundhog Day 2018 -Oscar Nominations 2018 -Florida shooting -Super blue blood Moon -Super Bowl score -Wilder Penfield -calculator -Florida shooting -SpaceX -Carter G. Woodson -Winter Olympics -SpaceX -Mark Salling -Mark Salling -Sergei Eisenstein -Patriots -Hillary Clinton -Trump State of the Union -Sergei Eisenstein -SAG Awards 2018 -Elizabeth Blackwell -Terrell Owens -Justin Timberlake -Solo Trailer -Super Bowl score -Super Bowl score -Sergei Eisenstein -Patriots -Mueller -Josh McDaniels -Mark Salling -Paula Modersohn-Becker -government shutdown -Super Bowl score -Paula Modersohn-Becker -Virginia Woolf -Trey Gowdy -Winter Olympics -Chloe Kim -Super Bowl 2018 -Super Bowl 2018 -Justin Timberlake -Super Bowl 2018 -Tessa Virtue -Paula Modersohn-Becker -Cloverfield Paradox -Wilder Penfield -Gianni Versace -Patriots -State of the Union -Sergei Eisenstein -Super Bowl 2018 -Princess Eugenie -Kelly Clark -Jason Kidd -Tom Brady daughter -Grammys 2018 -Kylie Jenner -Super Bowl score -Government shutdown 2018 -Sergei Eisenstein -Super Bowl score -Super Blue Blood Moon -Super Bowl score -Paula Modersohn-Becker -Florida shooting -Rasual Butler -Lena Zawaideh -Cory Booker -Fifty Shades Freed -SpaceX -Drake -State of the Union -Super Bowl score -Patriots -Black Panther -Super Bowl score -Happy Valentines Day -Red Gerard -New England Patriots owner -Wilder Penfield -Steven Tyler -Women's March 2018 -Sergei Eisenstein -Sergei Eisenstein -Paula Modersohn-Becker -Tom Petty -Super Bowl score -Sergei Eisenstein -Government Shutdown -Sergei Eisenstein -Tony Romo -Shaun White -Florida shooting -Classroom -Sergei Eisenstein -Riverdale -Black Panther -Puppy Bowl 2018 -Snapchat Update -Scott Baio -Super Bowl 2018 -Trey Gowdy -Florida shooting -Paula Modersohn-Becker -Paula Modersohn-Becker -Virginia Woolf -Jason Kelce -Elizabeth Blackwell -Super Bowl 2018 -Larry Nassar -Joe Kennedy -Dow Jones -Bob Marley -Solo Trailer -Super Bowl Commercials 2018 -Terrell Owens -Winter Olympics -Patriots -Super Bowl score -Winter Olympics -Super Bowl score -Carter G. Woodson -Paula Modersohn-Becker -Classroom -Harry Styles -Peter Rabbit -Virginia Woolf -Vikings vs Eagles -Super Bowl Commercials 2018 -Florida shooting -Champions League -Wilder Penfield -Sergei Eisenstein -Sal Castro Middle School -Wilder Penfield -Kylie Jenner -Winter Olympics -Wilder Penfield -Super Bowl 2018 -Super Bowl 2018 -Winter Olympics -Patti LuPone -Wilder Penfield -Sergei Eisenstein -Elizabeth Blackwell -Patriots -Super Bowl score -Kylie Jenner -Super blue blood Moon -Fortnite New Map -Matt Czuchry -Super Bowl score -Sabrina Dhowre -Sergei Eisenstein -Grammys 2018 -Wilder Penfield -Rodney Hood -What Time Is The Super Bowl -Wilder Penfield -Trump State of the Union -Sergei Eisenstein -Super Bowl score -Enzo Amore -Super Bowl Winners -Solo Trailer -Larry Nassar -school closings -Justin Timberlake -Winter Olympics -Super Bowl score -Virginia Woolf -Justin Timberlake -Florida shooting -Harry Styles -Vikings Vs Eagles -Government Shutdown -Quincy Jones -Did the Groundhog See His Shadow -New England Patriots owner -Fredo Santana -Virginia Woolf -Florida shooting -Florida shooting -Oscar Nominations 2018 -Patriots -What Time Is The Super Bowl -Oar Olympics -Ar 15 -Kylie Jenner -Super blue blood Moon -Matt Patricia -Grammys 2018 -Patriots -Virginia Woolf -Derrick Rose -Wilder Penfield -What Time Is The Super Bowl -Bill Parcells -Reg E Cathey -Trey Gowdy -Hailee Steinfeld -Super Bowl score -Patriots -Larry Nassar -Winter Olympics -Luke Wilson -Happy Valentines Day -Josh Allen -Super Bowl Commercials 2018 -John Mahoney -Johnny Weir -Betty White -Winter Olympics -Super Bowl score -Elizabeth Blackwell -Scott Baio -Sergei Eisenstein -Shaun White -Elizabeth Blackwell -school closings -Yu Darvish -Solo Trailer -Justin Timberlake -Wilder Penfield -Mikaela Shiffrin -Olympic Medal Count -Kylie Jenner -Virginia Woolf -Justin Timberlake -Kylie Jenner -Mikaela Shiffrin -Winter Olympics -Justin Timberlake -Westerville Ohio -State of the Union -Grammys 2018 -Paula Modersohn-Becker -Wilder Penfield -Virginia Woolf -Chicago West -Government Shutdown 2018 -Cherry Seaborn -Early Man -Government shutdown -Kentucky shooting -Joe Kennedy -Hope Hicks -Florida shooting -Mark Salling -Super Bowl score -Carter G. Woodson -Patriots -Virginia Woolf -Patriots -Elizabeth Blackwell -Super Bowl score -Mikaela Shiffrin -Paula Modersohn-Becker -Shaun White -Fredo Santana -State of the Union -Government Shutdown Meaning -Elizabeth Blackwell -Super Bowl Commercials 2018 -Sabrina Dhowre -Super Bowl 2018 -Vikings Vs Eagles -calculator -Mark Salling -Mikaela Shiffrin -Groundhog Day 2018 -Natalie Portman -Winter Olympics -SpaceX -SpaceX -Eli Manning -Paula Modersohn-Becker -Kylie Jenner -Sergei Eisenstein -Kylie Jenner -This Is Us -Sergei Eisenstein -The 15:17 to Paris -Justin Timberlake -Sergei Eisenstein -Justin Timberlake -Super Bowl 2018 -Groundhog Day 2018 -Robert Wagner -Olympics 2018 -Justin Timberlake -United States Of America Winter Olympics -Robert Mueller -State of the Union -Sandy Hook -Justin Timberlake -Winter Olympics -Justin Timberlake -Super Bowl 2018 -Justin Timberlake -SpaceX -Dow Jones -CNN -Carter G. Woodson -SAG Awards 2018 -Paula Modersohn-Becker -Ash Wednesday -Isaiah Thomas -Outback Steakhouse -Virginia Woolf -Chrissy Teigen -Vikings Vs Eagles -Florida shooting -Alex Smith -Paula Modersohn-Becker -Carter G. Woodson -Super Bowl score -Super Bowl 2018 -Quincy Jones -Julie Ertz -Bitcoin Price -Megan Barry -Best Superbowl Commercials 2018 -Black Panther -Bode Miller -Wilder Penfield -Gods Plan -Happy Valentines Day -Paula Modersohn-Becker -Dow Jones -Carter G. Woodson -Sean Hannity -Super Bowl 2018 -New England Patriots owner -Larry Nassar -Wilder Penfield -Quincy Jones -Super Bowl 2018 -Paula Modersohn-Becker -Super Bowl 2018 -Carter G. Woodson -Vikings Vs Eagles -Nathan Chen -Walter Payton -Wilder Penfield -What Time Is The Super Bowl -Shaun White -Grammys 2018 -Super Bowl Winners -Shaun White -Justin Timberlake -Jason Kelce -Obama portrait -NBA Trades -State of the Union -Lil Pump -Presidents Day 2018 -Mark Salling -NFC Championship Game 2018 -Zion Williamson -Tyler Hilinski -Elizabeth Blackwell -Johnny Weir -Carter G. Woodson -Rose McGowan -Alexa Commercial -Mark E Smith -Sergei Eisenstein -Cherry Seaborn -Paula Modersohn-Becker -Virginia Woolf -Carrie Underwood -Kylie Jenner Baby Girl -Wilder Penfield -Virginia Woolf -Elton John -Government Shutdown -Kylie Jenner -Stormi -What Time Is The Super Bowl -Winter Olympics -Patriots -Elizabeth Blackwell -Earthquake Today -Camila Cabello -Elizabeth Blackwell -Vikings Vs Eagles -Kentucky shooting -NHL All Star Game -Super Bowl score -Elton John -Patriots -Wilder Penfield -Wilder Penfield -Netflix Stock -Virginia Woolf -Black Panther -Grammys 2018 -Carter G. Woodson -Larry Nassar -SpaceX -Sergei Eisenstein -Sting -Adam Hicks -Wilder Penfield -Elizabeth Blackwell -Carter G. Woodson -The 15:17 to Paris -Elizabeth Blackwell -Paula Modersohn-Becker -Paula Modersohn-Becker -Caitlin McHugh -Vikings Vs Eagles -Deadpool 2 -Valentines Day -Valentines Day -Sergei Eisenstein -Harley Barber -Winter Olympics -Royal Rumble 2018 -Solo Trailer -Dow Jones -Tom Petty -SpaceX -Alexa Commercial -Paula Modersohn-Becker -Blake Griffin -Patriots -Did the Groundhog See His Shadow -Virginia Woolf -Mattie Larson -What Time Is The Super Bowl -Florida shooting -SpaceX -Tom Brady -Patriots -Carter G. Woodson -Wilder Penfield -calculator -Government Shutdown -Super Bowl score -Wilder Penfield -Cavs -Elizabeth Blackwell -Florida shooting -Hostiles -Shaun White -Hope Hicks -Ann Curry -Zion Williamson -Alex Smith -Kylie Jenner -The Home Depot -Virginia Woolf -Super Bowl 2018 -Super Bowl 2018 -SpaceX -Dow Jones -Super Blue Blood Moon -Carter G. Woodson -Winter Olympics -Kim Kardashian -Carter G. Woodson -Carter G. Woodson -Patriots -Wilder Penfield -Shaun White -Adam Rippon -Florida shooting -Winter Olympics -Mark Salling -Paula Modersohn-Becker -Google Drive -shutdown -SpaceX -Carter G. Woodson -Meteor -Memo -Gods Plan -Tammy Duckworth -Virginia Woolf -Monster Hunter World -Bitcoin Price -UFC 220 -Johnny Weir -Patriots -State of the Union -Kentucky shooting -What Time Is The Super Bowl -Black Panther -Super Bowl 2018 -Duke Basketball -Outback Steakhouse -Russell Wilson -Yoel Romero -Anna Kournikova -Dwyane Wade -Obama portrait -Justin Timberlake -Wilder Penfield -New England Patriots owner -Valentines Day Cards -Justin Timberlake -Wilder Penfield -Jason Kelce -Government shutdown 2018 -Wilder Penfield -Super Bowl score -Obama portrait -Patriots -Sergei Eisenstein -Pro Bowl 2018 -Virginia Woolf -Winter Olympics -Government Shutdown -Sergei Eisenstein -Virginia Woolf -Patriots -Mardi Gras 2018 -Did the Groundhog See His Shadow -Super Bowl score -Carter G. Woodson -Charissa Thompson -Paula Modersohn-Becker -Alaska earthquake -New England Patriots owner -Wilder Penfield -Cloverfield Paradox -Solo Trailer -Super Bowl score -This Is Us -Super Bowl score -Puppy Bowl 2018 -Vanessa Trump -Alex Smith -Senior Bowl -Adam Rippon -Wilder Penfield -Shibutani -Florida shooting -State of the Union -Kylie Jenner -Florida shooting -Oscar Nominations 2018 -Virginia Woolf -IXL -Adam Rippon -Adam Rippon -Patriots -Solo Trailer -Elizabeth Blackwell -Woody Allen -Winter Olympics -Virginia Woolf -Elizabeth Blackwell -Robert Mueller -Obama portrait -Luke Wilson -Paula Modersohn-Becker -Obama portrait -Kesha -Kesha Grammy -Joel Taylor -Super Bowl 2018 -Walter Payton -Government Shutdown -Sergei Eisenstein -Paula Modersohn-Becker -Patriots -Patriots -Cedi Osman -The 15:17 to Paris -Super Bowl 2018 -Super Bowl 2018 -Enzo Amore -Justin Timberlake -Carter G. Woodson -Tyler Hilinski -Winter Olympics -Winter Olympics -Super Bowl score -Fredo Santana -Patriots -Jason Kidd -Paula Modersohn-Becker -Jemele Hill -Eli Manning -Mark Salling -Doomsday Clock -What Time Is The Super Bowl -Trey Gowdy -This Is Us -Elizabeth Blackwell -Carter G. Woodson -Kingdom Come Deliverance -Outback Steakhouse -Bitcoin Price -United States Of America Winter Olympics -Taiwan -Super Bowl score -Mardi Gras 2018 -Aaliyah -Larry Nassar -Virginia Woolf -Super Bowl score -Yu Darvish -Lari White -Blake Griffin -Patriots -Wilder Penfield -Super Bowl score -Kylie Jenner -Valentines Day -Patriots -H&r Block -Zion Williamson -Ash Wednesday -Larry Nassar -Gianni Versace -Winter Olympics -Winter Olympics -Celebrity Big Brother cast -Super Bowl 2018 -SpaceX -Grammys 2018 -Cherry Seaborn -Super Bowl score -Sergei Eisenstein -Virginia Woolf -Carter G. Woodson -Jennifer Aniston -North Korean cheerleaders -Trump State of the Union -SAG Awards 2018 -Patriots -Morgan Freeman -New California -Tonga -Yu Darvish -Super blue blood Moon -Ursula Le Guin -Winter Olympics -Wilder Penfield -Kentucky shooting -Patriots -Elizabeth Blackwell -Adam Rippon -Vic Damone -Grammys 2018 -Vikings Vs Eagles -Olympic medal count -Government shutdown 2018 -Adam Rippon -Dow Jones -Government shutdown 2018 -Wilder Penfield -Kesha -Carter G. Woodson -Patriots -Virginia Woolf -School Closings -Elizabeth Blackwell -Kylie Jenner Baby Girl -Super Bowl 2018 -Wilder Penfield -Hope Hicks -Kentucky shooting -Highline College -Super Bowl score -Jason Kidd -Vikings Vs Eagles -State of the Union -Puppy Bowl 2018 -Kylie Jenner -Olive Garden -Snap Stock -Adam Rippon -Patriots -Patriots -Super Bowl 2018 -Frank Reich -Government Shutdown Meaning -Tom Brady daughter -Carter G. Woodson -Gods Plan -Neil Diamond -Super Bowl 2018 -Sergei Eisenstein -Super Bowl Commercials 2018 -Rachel Brand -Wilder Penfield -XFL -Carter G. Woodson -Hostiles -Women's March 2018 -Super Bowl 2018 -Super blue blood Moon -SpaceX -Patriots -Larry Nassar -Super Bowl Winners -Sergei Eisenstein -12 Strong -Adam Hicks -Super Bowl score -Google Drive -Government Shutdown -Groundhog Day 2018 -Patti LuPone -Grammys 2018 -Super Bowl score -What Time Is The Super Bowl -Kentucky shooting -Patriots -Rob Gronkowski -Korea -Celtics -Luke Wilson -Kodak Black -Release The Memo -Wilder Penfield -Mark Salling -calculator -Patriots -Larry Nassar -Football Playoffs 2018 -Elton John tickets -What Time Is The Super Bowl -Virginia Woolf -Get Out -Black Panther -Solo Trailer -Justin Timberlake -Mark Salling -Ursula Le Guin -Shaun White -Elizabeth Blackwell -Sergei Eisenstein -SAG Awards 2018 -Nintendo Labo -Luke Wilson -Sergei Eisenstein -SpaceX -Wilder Penfield -Virginia Woolf -State of the Union -Super Bowl 2018 -Groundhog Day 2018 -Government Shutdown Meaning -FC Barcelona -Google docs -Carter G. Woodson -Mark Salling -Happy Valentines Day -Winter Olympics -Paula Modersohn-Becker -Roger Federer -Halsey -Sergei Eisenstein -Super Bowl score -Patriots -Sergei Eisenstein -Winter Olympics -Grammys 2018 -Paula Modersohn-Becker -Sergei Eisenstein -Patriots -Rasual Butler -Super Bowl score -Reg E Cathey -Shibutani -Kylie Jenner -Pro Bowl 2018 -Grammys 2018 -Fortnite New Map -Betty White -Sergei Eisenstein -Kylie Jenner -Meteor -Oscar Nominations 2018 -Wilder Penfield -Grammys 2018 -Marlon Brando -Ash Wednesday -Cavs -Kylie Jenner -Super Bowl 2018 -This is Us -Chloe Kim -Women's March 2018 -Florida shooting -Vikings Vs Eagles -Google docs -Elizabeth Blackwell -Grammys 2018 -Winter Olympics -Lil Pump -Elizabeth Blackwell -Winter Olympics -Alaska earthquake -Obama portrait -Virginia Woolf -Chris Paul -Winter Olympics -SAG Awards 2018 -Super Bowl 2018 -Super Bowl 2017 -NASA -Rodney Hood -Kylie Jenner -Justin Timberlake -Rasual Butler -Carter G. Woodson -Wilder Penfield -Westminster Dog Show 2018 -Chipper Jones -Elizabeth Blackwell -Dwyane Wade -Winter Olympics -Happy Valentines Day -Winter Olympics -Pro Bowl 2018 -Mark Salling -Kim Kardashian -Patriots -Celebrity Big Brother cast -Blake Griffin -Jen Selter -Did the Groundhog See His Shadow -Andre Roberson -Florida shooting -Florida shooting -Super Bowl 2018 -Florida shooting -Kylie Jenner -Vikings Vs Eagles -Florida shooting -Patriots -Grammys 2018 -Oscar Nominations 2018 -Black Panther -Wilder Penfield -Despacito -Super Bowl score -Berkshire Hathaway -Patriots -Anna Kournikova -Wilder Penfield -fake news awards -Paula Modersohn-Becker -Winter Olympics -Grammys 2018 -Super Blue Blood Moon -Sergei Eisenstein -Maze Runner: The Death Cure -Vikings Vs Eagles -Den of Thieves -Did the Groundhog See His Shadow -What Time Is The Super Bowl -Super blue blood Moon -calculator -Carter G. Woodson -Andre the Giant -Paula Modersohn-Becker -Winter Olympics -Elizabeth Blackwell -Obama portrait -Wilder Penfield -Manchester United -Wilder Penfield -Sergei Eisenstein -Elizabeth Blackwell -Olympic Medal Count -Black Panther -Virginia Woolf -Erykah Badu -Joe Kennedy -IXL -Super Bowl 2018 -Groundhog Day 2018 -Super Bowl score -Marlon Brando -Grammys 2018 -Super Bowl score -Paula Modersohn-Becker -NBA Trades -Sergei Eisenstein -Winter Olympics -Black Panther -Kesha -Super Bowl score -Grammys 2018 -Virginia Woolf -Real Madrid -Government Shutdown -Virginia Woolf -Jennifer Aniston -Grammys 2018 -Wilder Penfield -NFL Honors -Dow Jones -Wilder Penfield -Cavs -Chinese New Year 2018 -Super Bowl score -Vikings vs Eagles -Amy Schumer -Super Bowl Winners -Super Bowl 2018 -Aaliyah -Google docs -Paula Modersohn-Becker -NFC Championship Game 2018 -Patriots -Elizabeth Blackwell -Florida shooting -Super Bowl score -Super Bowl Winners -Terrell Owens -Florida shooting -Jennifer Aniston -Waco -Patriots -Shaun White -Larry Nassar -Super Bowl score -happy new year in Chinese -Super Blue Blood Moon -Todd Haley -Winter Olympics -Jason Kelce -Virginia Woolf -Paula Modersohn-Becker -Florida shooting -Government Shutdown Meaning -Winter Olympics -SAG Awards 2018 -Black Panther -UFC 220 -Wilder Penfield -Bitcoin Price -Joe Kennedy -Paula Modersohn-Becker -Steve Mcnair -Florida shooting -Sal Castro Middle School -What Time Is The Super Bowl -School closings -Danielle Herrington -SpaceX -Super Bowl 2018 -School Closings -Elizabeth Blackwell -Larry Nassar -Patriots -Manchester United -Wilder Penfield -Virginia Woolf -Winter Olympics -Florida shooting -Sergei Eisenstein -Super Bowl 2018 -Yu Darvish -Bob Dole -Paula Modersohn-Becker -Kylie Jenner -Kylie Jenner -Groundhog Day 2018 -Tammy Duckworth -Wilder Penfield -Alex Smith -Cherry Seaborn -Government Shutdown -Patriots -Black Panther -Jessica Chastain -Cloverfield Paradox -12 Strong -Super Bowl score -Celebrity Big Brother cast -Government Shutdown -Paula Modersohn-Becker -Florida shooting -Grammys 2018 -Super Bowl 2018 -Carter G. Woodson -Earthquake -Super Bowl 2018 -earthquake -Virginia Woolf -Virginia Woolf -Carter G. Woodson -Grammys 2018 -Sergei Eisenstein -This Is Us -SAG Awards 2018 -calculator -The 15:17 to Paris -Grammys 2018 -Bitcoin Price -Lil Pump -Patriots -Zion Williamson -Government shutdown -Alessia Cara -Paula Modersohn-Becker -Red Gerard -Paula Modersohn-Becker -XFL -Winter Olympics -Will Ferrell -Larry Nassar -Sergei Eisenstein -Scott Baio -Alaska earthquake -Paula Modersohn-Becker -Carter G. Woodson -Mr Rogers -Post Malone -Obama portrait -Super Bowl 2018 -SpaceX -Cloverfield Paradox -Super blue blood Moon -Costco Wholesale -curling -Dwyane Wade -Justin Timberlake -Paula Modersohn-Becker -Shaun White -Wilder Penfield -Florida shooting -NHL All Star Game -Wilder Penfield -Winter Olympics -UFC 220 -LeBron James -Wilder Penfield -What Time Is The Super Bowl -Super Bowl Winners -Sergei Eisenstein -Super Bowl score -Tyler Hilinski -Lakers -Super Bowl score -Justin Timberlake -BitConnect -Kesha Grammy -Patriots -Kylie Jenner Baby Girl -Wilder Penfield -Sergei Eisenstein -Elizabeth Blackwell -Sergei Eisenstein -Monster Hunter World -Trump State of the Union -Conor McGregor -Mark Salling -NASA -Pro Bowl 2018 -Alexa Commercial -Patriots -Carter G. Woodson -Elizabeth Blackwell -Super Bowl 2018 -Oscar Nominations 2018 -calculator -Super Bowl score -Government Shutdown -New England Patriots owner -Mike Fisher -Government Shutdown -When We First Met -Cloverfield Paradox -Groundhog Day 2018 -Carter G. Woodson -Sergei Eisenstein -Quincy Jones -Virginia Woolf -calculator -Super Bowl score -Dwyane Wade -Elizabeth Blackwell -Winter Olympics -Wilder Penfield -Larry Nassar -Patriots -Super Bowl 2018 -Oscar Nominations 2018 -Sergei Eisenstein -Florida shooting -Wilder Penfield -John Mahoney -Fidel Castro -Patriots -Mark Salling -Sergei Eisenstein -Paula Modersohn-Becker -MS13 -Kelsey Grammer -Paula Modersohn-Becker -Sergei Eisenstein -Wilder Penfield -Patriots -Kylie Jenner -SpaceX -Grammys 2018 -luge -Steve Wynn News -Carter G. Woodson -Virginia Woolf -What Time Is The Super Bowl -Black Panther -Super Bowl 2018 -school closings -Google docs -Jen Selter -Paula Modersohn-Becker -What Time Is The Super Bowl -Wilder Penfield -Wilder Penfield -Steve Wynn -Carter G. Woodson -Government Shutdown Meaning -Mattie Larson -Super Bowl score -Jennifer Aniston -Lindsey Vonn -Princess Eugenie -What Time Is The Super Bowl -Virginia Woolf -Hope Hicks -Terrell Owens -Nikki Haley -Fredo Santana -Andrew Cunanan -Sergei Eisenstein -Solo Trailer -Virginia Woolf -Paula Modersohn-Becker -Wilder Penfield -John Mahoney -Ash Wednesday -Patriots -Alex Smith -Drive -Paula Modersohn-Becker -Aaron Fies -Carter G. Woodson -Government Shutdown Meaning -Monster Hunter World -Chris Stapleton -Super Bowl 2018 -AFC Championship Game 2018 -Jimmy Kimmel -Super Bowl 2018 -Cavs -Vanessa Marcil -Larry Nassar -Elizabeth Blackwell -Elizabeth Blackwell -Carter G. Woodson -Winter Olympics -Florida shooting -Google Drive -fake news awards -Elizabeth Blackwell -Kylie Jenner -Super Bowl score -Wilder Penfield -Did the Groundhog See His Shadow -What Time Is The Super Bowl -School closings -Wilder Penfield -Florida shooting -Sergei Eisenstein -Rob Gronkowski -Happy Valentines Day -Super Bowl score -Trump State of the Union -Cnbc -February -Paula Modersohn-Becker -Rodney Hood -Jennifer Aniston -Did the Groundhog See His Shadow -Scott Baio -Google docs -Sergei Eisenstein -Patriots -Shaun White -school closings -Blake Griffin -Alex Smith -Google Drive -Black Lightning -Lunar eclipse -Monster Hunter World -Elizabeth Blackwell -Kylie Jenner -Super Bowl 2018 -Virginia Woolf -NBC Sports -Amazon HQ2 -calculator -Florida shooting -Justin Timberlake -Larry Nassar -Nathan Chen -Puppy Bowl 2018 -Winter Olympics -Jimmy Garoppolo -Super Bowl 2018 -Wilder Penfield -Super Bowl 2018 -Super Bowl score -Chloe Kim -Mark Salling -Winter Olympics -Virginia Woolf -Elizabeth Blackwell -Jennifer Aniston -Groundhog Day 2018 -Winter Olympics -Phantom Thread -Chloe Kim -Tom Petty -Malcom Butler -Alex Reimer -Groundhog Day 2018 -National Pizza Day -Government Shutdown Meaning -Sergei Eisenstein -Kylie Jenner -Isaiah Thomas -Paula Modersohn-Becker -Grammys 2018 -Mavic Air -Super blue blood Moon -Wilder Penfield -Terrell Owens -Jeremy London -Kylie Jenner -Winter Olympics -Elizabeth Blackwell -Super Bowl score -Super Bowl 2018 -stock market -Justin Timberlake -Andre Roberson -Winter Olympics -Vikings Vs Eagles -Paula Modersohn-Becker -What Time Is The Super Bowl -Grammys 2018 -Champions League -UFC 220 -Paula Modersohn-Becker -Black Lightning -Kentucky shooting -Elizabeth Blackwell -Carter G. Woodson -Kylie Jenner -Paula Modersohn-Becker -Alessia Cara -Sergei Eisenstein -Women's March 2018 -Kylie Jenner -Florida shooting -Reg E Cathey -Real Madrid -calculator -What Time Is The Super Bowl -Justin Timberlake -Super Bowl 2018 -Reg E Cathey -Release The Memo -Olivia Munn -Florida shooting -Meteor -Shaun White -Grammys 2018 -Bob Marley -Omarosa -Grammys 2018 -United States Of America Winter Olympics -Chloe Kim -Aaron Feis -Fifty Shades Freed -Hostiles -Winter Olympics -Lindsey Vonn -Carter G. Woodson -Justin Timberlake -Paula Modersohn-Becker -LeBron James -Justin Timberlake -Andre Roberson -Wilder Penfield -Florida shooting -What Time Is The Super Bowl -Wilder Penfield -Justin Timberlake -Paula Modersohn-Becker -Justin Timberlake -Sergei Eisenstein -Elizabeth Blackwell -Yoel Romero -Carter G. Woodson -Valentines Day Memes -Super Bowl 2018 -NFC Championship Game 2018 -Patti LuPone -Kylie Jenner -Super Bowl score -Carter G. Woodson -Olympic Medal Count -Jennifer Aniston -Sergei Eisenstein -Winter Olympics -Elizabeth Blackwell -What Time Is The Super Bowl -Edwin Jackson -Sergei Eisenstein -Wilder Penfield -calculator -Daryle Singletary -Robert Mueller -CNN -Sergei Eisenstein -Grammys 2018 -Sergei Eisenstein -Sergei Eisenstein -Virginia Woolf -XFL -Super blue blood Moon -Bitcoin Price -Paula Modersohn-Becker -SAG Awards 2018 -Virginia Woolf -Winter Olympics -Virginia Woolf -Isaiah Canaan -Shiffrin -Patriots -Carter G. Woodson -What Time Is The Super Bowl -Jo Jo White -Virginia Woolf -SpaceX -State of the Union -Carter G. Woodson -Apple stock -Jessica Chastain -Black Panther -Carter G. Woodson -Alex Smith -Rodney Hood -Rodney Hood -Government Shutdown -Black Panther -Government Shutdown -Bob Dole -Wilder Penfield -Mardi Gras 2018 -Kim Kardashian -What Time Is The Super Bowl -Grammys 2018 -Simona Halep -Elizabeth Blackwell -Florida shooting -Real Madrid -James Baldwin -Carrie Underwood -Marlon Brando -School closings -Wilder Penfield -Kentucky shooting -Dua Lipa -Kylie Jenner -Winter Olympics -Wilder Penfield -Carter G. Woodson -Paula Modersohn-Becker -Carter G. Woodson -Edwin Jackson -Cavs -Elizabeth Blackwell -Winter Olympics -Mikaela Shiffrin -Solo Trailer -Groundhog Day 2018 -Super Bowl 2018 -Heath Ledger -Vikings vs Eagles -Elizabeth Blackwell -Kylie Jenner -Sergei Eisenstein -Jason Momoa -Bitcoin Price -Super Bowl score -Kim Kardashian -What Time Is The Super Bowl -Friends movie -Isaiah Thomas -CNN -Winter Olympics -Patriots -Alex Smith -Wilder Penfield -Dane Cook -LeBron James -Super Bowl Winners -Tesla in space -Gianni Versace -Carter G. Woodson -Black Panther -UFC 221 -Oscar Nominations 2018 -Elizabeth Blackwell -Carter G. Woodson -Robert Wagner -Super Bowl 2018 -Oscar Nominations 2018 -Paul Ryan -Elizabeth Blackwell -Paula Modersohn-Becker -Kris Dunn -Virginia Woolf -Lee Miglin -Carter G. Woodson -Larry Nassar -Sergei Eisenstein -Super Bowl 2018 -Super Bowl score -Super Bowl 2018 -Google docs -Government Shutdown Meaning -Super blue blood Moon -Winter Olympics -Super Bowl 2018 -Andrew McCabe -Patriots -Winter Olympics -Super Bowl score -Government shutdown -SpaceX -What Time Is The Super Bowl -Super blue blood Moon -Larry Nassar -Chinese New Year 2018 -Fifty Shades Freed -Cnbc -United States Postal Service -Florida shooting -School Closings -Super Bowl 2018 -Sergei Eisenstein -SpaceX -Super Bowl 2018 -Oscar Nominations 2018 -Elizabeth Blackwell -Lindsey Vonn -Virginia Woolf -SAG Awards 2018 -Happy Valentines Day -Mikaela Shiffrin -Super blue blood Moon -New England Patriots owner -Winter Olympics -SpaceX -Carter G. Woodson -State of the Union -Super Bowl 2018 -Kylie Jenner -Dog Food Recall -Terrell Owens -Sergei Eisenstein -Elizabeth Blackwell -SpaceX -Highline College -Cedi Osman -Peter Rabbit -Government Shutdown Meaning -Florida shooting -Elizabeth Blackwell -Carter G. Woodson -Kesha Grammy -Winter Olympics -Chicago West -Wilder Penfield -Winter Olympics -Joe Kennedy -Sea of Thieves -Carter G. Woodson -Super Bowl 2018 halftime show -Lil Pump -Andrew Cunanan -Dow Jones -Childish Gambino -Carter G. Woodson -Obama portrait -Did the Groundhog See His Shadow -Sergei Eisenstein -Alaska earthquake -Left Shark -Black Panther -Best Superbowl Commercials 2018 -Harry Styles -12 Strong -Sergei Eisenstein -Government Shutdown Meaning -Patriots -United States Of America Winter Olympics -State of the Union -Neil Diamond -SpaceX -Wilder Penfield -Elizabeth Blackwell -SpaceX -Super Bowl score -NBA Trades -Super Bowl Winners -Mexico earthquake -Enzo Amore -Alessia Cara -Government Shutdown -Larry Nassar -Vanessa Trump -Super Bowl 2017 -Grammys 2018 -Grammys 2018 -Uma Thurman -Sergei Eisenstein -Google docs -Black Panther -NSA -Paula Modersohn-Becker -Derrick Rose -Super Bowl score -Groundhog Day 2018 -What Time Is The Super Bowl -Solo Trailer -Betty White -Bitcoin Price -Elizabeth Blackwell -What Time Is The Super Bowl -KSI Vs Weller -Wilder Penfield -H&r Block -Hostiles Movie -Florida shooting -Elizabeth Blackwell -Yu Darvish -Virginia Woolf -SpaceX -Dow Jones -Florida shooting -Black Panther -Government Shutdown -Patriots -Shaun White -Carter G. Woodson -Wilder Penfield -Virginia Woolf -AR-15 -Patriots -JUUL -Tammy Duckworth -Kylie Jenner -Wilder Penfield -Florida shooting -Winter Olympics -Chinese New Year 2018 -Paula Modersohn-Becker -Rasual Butler -Blake Griffin -Super Bowl score -Super blue blood Moon -Childish Gambino -Virginia Woolf -Paula Modersohn-Becker -Oar Olympics -Elizabeth Blackwell -Elizabeth Blackwell -SAG Awards 2018 -Kylie Jenner -Patriots -Elizabeth Blackwell -Patriots -Edible Arrangements -Virginia Woolf -Dennis Edwards -This Is Us -Winter Olympics -Bill Belichick -Zion Williamson -Release The Memo -Ellen Pompeo -Netflix Stock -Super blue blood Moon -Steve Mcnair -Lonzo Ball -Uma Thurman -Virginia Woolf -Super Bowl score -fake news awards -Happy Valentines Day -Elizabeth Blackwell -Uma Thurman -Chinese New Year 2018 -Chloe Kim -Chloe Kim -Earthquake -Wilder Penfield -UFC 220 -Super Bowl 2018 -Virginia Woolf -SpaceX -Bob Dole -Kylie Jenner -Celebrity Big Brother cast -Alison Brie -Wilder Penfield -Virginia Woolf -Virginia Woolf -Wilder Penfield -Olympic Medal Count -What Time Is The Super Bowl -Paula Modersohn-Becker -Lari White -Bob Dole -Mark Salling -Elizabeth Blackwell -Wilder Penfield -Bitcoin Price -Sergei Eisenstein -Carter G. Woodson -Super Bowl 2018 -Winter Olympics -Super Bowl Commercials 2018 -Grammys 2018 -Mikaela Shiffrin -Wilder Penfield -Montreal Cognitive Assessment -Tessa Virtue -Winter Olympics -Scott Baio -Super Bowl score -Paula Modersohn-Becker -Elizabeth Blackwell -Alessia Cara -Sergei Eisenstein -Winter Olympics -Super blue blood Moon -Super Bowl score -Ash Wednesday -Black Panther -SpaceX -Winter Olympics -Royal Rumble 2018 -School Closings -Adam Rippon -Women's March 2018 -Kylie Jenner -Did the Groundhog See His Shadow -Solo Trailer -Florida shooting -Fortnite New Map -Nancy Pelosi -Super Bowl score -happy new year in Chinese -Wilder Penfield -UFC 220 -Super Bowl 2018 -Super Bowl score -Wilder Penfield -Highline College -Patriots -Super Bowl 2018 -Sergei Eisenstein -Celebrity Big Brother cast -Groundhog Day 2018 -Government Shutdown Meaning -Winter Olympics -Joe Kennedy -Patriots -Puppy Bowl 2018 -Elizabeth Blackwell -Black Panther -Winter Olympics -Wilder Penfield -Dwyane Wade -Paula Modersohn-Becker -Patriots -Florida shooting -Joshua Cooper Ramo -New England Patriots owner -Elizabeth Blackwell -Lunar eclipse -Bruno Mars Tour 2018 -Paula Modersohn-Becker -Jalen Ramsey -Government Shutdown -Groundhog Day 2018 -Kingdom Come Deliverance -Florida shooting -Super Bowl 2018 -Sergei Eisenstein -Government shutdown -Winter Olympics -Paula Modersohn-Becker -12 Strong -Kylie Jenner -Florida shooting -Virginia Woolf -Paula Modersohn-Becker -United States Of America Winter Olympics -Patriots -Florida shooting -Government Shutdown -Mark Salling -SpaceX -Larry Nassar -CNN -Super Bowl Commercials 2018 -CNN -Lunar eclipse -Super Bowl score -Football Playoffs 2018 -Johnny Weir -Jason Kelce -Sergei Eisenstein -The Home Depot -Kingdom Come Deliverance -Kylie Jenner -Bill Paxton -Bitcoin Price -Sergei Eisenstein -Sergei Eisenstein -Kylie Jenner -Tom Petty -Amy Schumer -Forever My Girl -Ohio State basketball -Aaliyah -Carter G. Woodson -Elizabeth Blackwell -Winter Olympics -Government Shutdown -Elizabeth Blackwell -Amy Schumer -Paula Modersohn-Becker -Virginia Woolf -Doomsday Clock -Paula Modersohn-Becker -What Time Is The Super Bowl -Mark Salling -Cryptocurrency News -Government shutdown -Johnny Weir -Virginia Woolf -Joe Kennedy -Florida shooting -Virginia Woolf -Stock Market Crash Today -Deadpool 2 -Chris Long -Fredo Santana -Patriots -Super Bowl 2018 -What Time Is The Super Bowl -Virginia Woolf -Joe Kennedy -DeMarcus Cousins -Virginia Woolf -Super Bowl 2018 -Andrew Cunanan -Oar Olympics -Mark Salling -Black Panther -Gigi Hadid -The Alienist -Super Bowl score -Grammys 2018 -Virginia Woolf -Valentines Day -Meteor -Sergei Eisenstein -Chris Paul -UFC 220 -Trump State of the Union -SpaceX -Tiger Woods -Fortnite New Map -Patriots -Larry Nassar -Cherry Seaborn -Vanessa Trump -Tiger Woods -Omarosa -Super Bowl score -Jeremy London -Bitcoin Price -SpaceX -Sergei Eisenstein -Government Shutdown Meaning -school closings -Winter Olympics -Justin Timberlake -Elizabeth Blackwell -Carter G. Woodson -Otto Warmbier -Kentucky shooting -Puppy Bowl 2018 -Chris Paul -Carter G. Woodson -Black Panther -Dow Jones -Winter Olympics -Frank Reich -Virginia Woolf -Rodney Hood -Carter G. Woodson -Virginia Woolf -James Maslow -Johnny Weir -Patriots -Wilder Penfield -Patriots -New England Patriots owner -Super Bowl 2018 -Virginia Woolf -Super Bowl score -Super Bowl 2018 -Justin Timberlake -Wilder Penfield -Wilder Penfield -Royal Rumble 2018 -Grammys 2018 -Groundhog Day 2018 -Super Bowl 2018 -Carter G. Woodson -Justin Timberlake -Marlon Brando -Yoel Romero -Winter Olympics -Paula Modersohn-Becker -Justin Timberlake -Winter Olympics -What Time Is The Super Bowl -Chris Paul -Government Shutdown -SAG Awards 2018 -Patriots -Virginia Woolf -United States Of America Winter Olympics -Shaun White -Larry Nassar -Patriots -Kylie Jenner -Kylie Jenner -Paula Modersohn-Becker -Sergei Eisenstein -Joel Taylor -school closings -SpaceX -Patriots -Matt Patricia -Sergei Eisenstein -Virginia Woolf -Groundhog Day 2018 -Paula Modersohn-Becker -State of the Union -Super Bowl 2018 -Sarah Barthel -Government Shutdown -Justin Timberlake -Elizabeth Blackwell -Patriots -Justin Timberlake -Super Bowl score -Patti LuPone -Stock Market Crash Today -Patriots -Black Panther -Vince McMahon -Patriots -Kelsey Grammer -Virginia Woolf -Eric Wood -Nintendo Labo -Johnny Weir -Patriots -Carter G. Woodson -Greg Monroe -Elizabeth Blackwell -Virginia Woolf -Winter Olympics -Virginia Woolf -Super Blue Blood Moon -Winter Olympics -Shaun White -Alex Smith -Solo Trailer -Sergei Eisenstein -Black Panther -Florida shooting -Wilder Penfield -Super Bowl 2018 -Super Bowl score -SpaceX -Wilder Penfield -Terrell Owens -Shaun White -stock market -Sergei Eisenstein -Scott Baio -Winter Olympics -Paula Modersohn-Becker -Chloe Kim -Mikaela Shiffrin -Solo Trailer -Jennifer Aniston -Alex Smith -Pro Bowl 2018 -Kylie Jenner Baby Girl -Paula Modersohn-Becker -Gods Plan -Kylie Jenner -Presidents Day 2018 -Patriots -Patriots -Blake Griffin -Super Bowl score -OKC Thunder -Vikings Vs Eagles -Super Bowl 2018 -Carrie Underwood -FC Barcelona -Jamie Anderson -Black Panther -Super Bowl 2018 -Carter G. Woodson -Carter G. Woodson -Alessia Cara -Bitcoin Price -Carter G. Woodson -Super Bowl 2018 -Sergei Eisenstein -Kesha -Dow Jones -Heath Ledger -Andre the Giant -Bitcoin Price -Kim Kardashian -SpaceX -Jason Momoa -Rampage -Oscar Nominations 2018 -Paula Modersohn-Becker -Winter Olympics -Cavs -Government Shutdown 2018 -Bitcoin Price -Government Shutdown Meaning -Patriots -Oscar Nominations 2018 -Carter G. Woodson -Carter G. Woodson -Mark Salling -Blake Griffin -Cedi Osman -Winter Olympics -State of the Union -Duke basketball -Government Shutdown -Halsey -Paula Modersohn-Becker -Russell Wilson -Mark Salling -Joe Kennedy -Justin Timberlake -Wilder Penfield -Stan Lee -Gods Plan -Elizabeth Blackwell -SZA -Elizabeth Blackwell -Johnny Weir -Super Bowl 2018 -Wilder Penfield -Super Bowl score -Elizabeth Blackwell -Carter G. Woodson -Peter Rabbit -Nba All Star 2018 -Paula Modersohn-Becker -Shaun White -Chris Stapleton -Josh McDaniels -Gods Plan -Venom -What Time Is The Super Bowl -Sergei Eisenstein -Women's March 2018 -SpaceX -Wilder Penfield -Elizabeth Blackwell -Super Bowl score -Lady Bird -SpaceX -Ohio State basketball -Patriots -Oscar Nominations 2018 -Bitcoin Price -Oscar Nominations 2018 -Todd Haley -Rasual Butler -Sergei Eisenstein -Venom -Elizabeth Blackwell -Elizabeth Blackwell -Government Shutdown -Solo Trailer -stock market -Chipper Jones -Rampage -Duke basketball -Super Bowl Winners -Sergei Eisenstein -Groundhog Day 2018 -Ar 15 -school closings -Terrell Owens -Elton John -Quincy Jones -Joe Kennedy -Super Bowl 2018 -Winter Olympics -Kylie Jenner -Winter Olympics -State of the Union -Bitcoin Price -Kylie Jenner Baby Girl -Kim Kardashian -SpaceX -CNN -Larry Nassar -Blake Griffin -Fifty Shades Freed -Reg E Cathey -Kesha Grammy -Steve Wynn -Shibutani -What Time Is The Super Bowl -February -Super Bowl 2018 -Winter Olympics -Bitcoin Price -Justin Timberlake -Sea Of Thieves -Virginia Woolf -Lady Bird -Wilder Penfield -Grammys 2018 -Winter Olympics -Classroom -Sergei Eisenstein -Alessia Cara -Sergei Eisenstein -Patriots -UFC 220 -Grammys 2018 -stock market -Chloe Kim -Omarosa -Virginia Woolf -Shaun White -Larry Nassar -Super Bowl 2018 -Brie Larson -Super Bowl 2018 -Florida shooting -Alessia Cara -Paula Modersohn-Becker -Virginia Woolf -SpaceX -Sergei Eisenstein -Anna Kournikova -Government Shutdown -Alex Reimer -Enzo Amore -Sergei Eisenstein -Virginia Woolf -Jessica Biel -Super Bowl 2018 -Doomsday Clock -Kylie Jenner -Carter G. Woodson -Highline College -Manchester United -Oscar Nominations 2018 -Kylie Jenner -Jessica Chastain -Groundhog Day 2018 -Nba All Star Draft -Super Bowl score -Kylie Jenner -Sergei Eisenstein -Wilder Penfield -Blake Griffin -Florida shooting -Patriots -United States Of America Winter Olympics -Carter G. Woodson -Grammys 2018 -Virginia Woolf -State of the Union -Dow Jones -Dow Jones -Grammys 2018 -Johnny Weir -Alaska earthquake -Carter G. Woodson -Justin Timberlake -Marlon Brando -Happy Valentines Day -Kylie Jenner -Sergei Eisenstein -Bitcoin Price -Kylie Jenner -Sergei Eisenstein -Left Shark -Florida shooting -Yu Darvish -Paula Modersohn-Becker -Sergei Eisenstein -Vikings Vs Eagles -Sandy Hook -Alex Reimer -Paula Modersohn-Becker -Elizabeth Blackwell -Winter Olympics -Super Bowl score -Childish Gambino -Ar 15 -Adam Rippon -IXL -Super Bowl 2018 -Carter G. Woodson -Virginia Woolf -Government Shutdown -Vikings Vs Eagles -Enzo Amore -Winter Olympics -Florida shooting -Cnbc -Justin Timberlake -Elizabeth Blackwell -Super Bowl Commercials 2018 -Forever My Girl -Elizabeth Blackwell -Patriots -State of the Union -Super blue blood Moon -New England Patriots owner -Amy Schumer -Doomsday Clock -Elizabeth Blackwell -Release The Memo -Mark Salling -Winter Olympics -Super Bowl score -National Pizza Day -Outback Steakhouse -Friends movie -Vikings Vs Eagles -Early Man -Wilder Penfield -Sharon Stone -Super Bowl 2018 -Vanessa Trump -Sea Of Thieves -Winter Olympics -Mark Salling -Daytona 500 -Super Bowl 2018 -Black Panther -Elizabeth Blackwell -lady gaga grammys -Super Bowl score -Kylie Jenner -Jennifer Aniston -AR-15 -CNN -Elizabeth Blackwell -Highline College -Justin Timberlake -Black Panther -Happy Valentines Day -Shaun White -Florida shooting -Kylie Jenner -Florida shooting -Trump State of the Union -Elizabeth Blackwell -Pro Bowl 2018 -Mikaela Shiffrin -Super blue blood Moon -Blood Moon -Virginia Woolf -Brynn Cameron -Paula Modersohn-Becker -Alessia Cara -Paula Modersohn-Becker -What Time Is The Super Bowl -Carter G. Woodson -Elizabeth Blackwell -Winter Olympics -Larry Nassar -Kylie Jenner -Government Shutdown Meaning -Grammys 2018 -SpaceX -SpaceX -Kodak Black -Virginia Woolf -Happy Valentines Day -Super Bowl 2018 -Dwyane Wade -Government Shutdown -shutdown -Ash Wednesday -Oar Olympics -SpaceX -Florida shooting -Florida shooting -Venom -Isaiah Thomas -Winter Olympics -Super blue blood Moon -Super Bowl 2018 -Grammys 2018 -Chinese New Year 2018 -Virginia Woolf -Kylie Jenner -Edwin Jackson -Happy Valentines Day -All Star Weekend 2018 -Bruno Mars Tour 2018 -Sergei Eisenstein -Justin Timberlake -Paula Modersohn-Becker -Kylie Jenner -New England Patriots owner -Larry Nassar -Despacito -Virginia Woolf -Josh McDaniels -Amtrak -SpaceX -Sergei Eisenstein -Paula Modersohn-Becker -Paula Modersohn-Becker -Winter Olympics -Grammys 2018 -Dwyane Wade -Carter G. Woodson -Outback Steakhouse -Elizabeth Blackwell -Florida shooting -Sergei Eisenstein -Emily Sweeney -Larry Nassar -Elizabeth Blackwell -Elizabeth Blackwell -Carter G. Woodson -Patriots -Trump State of the Union -Government Shutdown -New California -Mark Salling -Chris Stapleton -Virginia Woolf -Lena Zawaideh -Carter G. Woodson -Pro Bowl 2018 -Daryle Singletary -SpaceX -Elizabeth Blackwell -Gianni Versace -Justin Timberlake -Government shutdown -Elizabeth Blackwell -Government Shutdown -Elizabeth Blackwell -Florida shooting -Andrew McCabe -United States Of America Winter Olympics -Super Bowl Commercials 2018 -Sergei Eisenstein -Kim Kardashian -XIV -tsunami -slides -Government Shutdown -Shaun White -Patriots -Get Out -Zion Williamson -What Time Is The Super Bowl -Elizabeth Blackwell -Costco Wholesale -Florida shooting -Super Bowl 2018 -Farmers Insurance Open 2018 -Chinese New Year 2018 -Grammys 2018 -Winter Olympics -Taiwan Earthquake Today -Drive -SpaceX -Sergei Eisenstein -Florida shooting -Happy Valentines Day -Kesha -Cloverfield Paradox -Kylie Jenner -Patriots -Dwyane Wade -NSA -Montreal Cognitive Assessment -Mardi Gras 2018 -Paula Modersohn-Becker -Wilder Penfield -SpaceX -Kylie Jenner Baby Girl -Uma Thurman -Sergei Eisenstein -United States Of America Winter Olympics -Kylie Jenner -Government Shutdown Meaning -Larry Nassar -State of the Union -Vikings Vs Eagles -Vikings Vs Eagles -Aaron Hernandez -Zuleyka Rivera -NASA -Wilder Penfield -Lady Gaga -Hope Hicks -Wilder Penfield -Dwyane Wade -Royal Rumble 2018 -Florida shooting -Tesla in space -Ash Wednesday -Paula Modersohn-Becker -Super Bowl 2018 -Culture 2 -Paula Modersohn-Becker -Elizabeth Blackwell -Jennifer Aniston -Super Bowl score -Super Bowl 2018 -Carter G. Woodson -Elizabeth Blackwell -Carter G. Woodson -Daytona 500 -Carter G. Woodson -Happy Valentines Day -Kylie Jenner -Justin Timberlake -Carter G. Woodson -Zion Williamson -Paula Modersohn-Becker -This Is Us -Matt Patricia -Super Bowl score -Vikings Vs Eagles -Bitcoin Price -Women's March 2018 -Super Bowl score -Lindsey Vonn -SpaceX -Incredibles 2 -Carter G. Woodson -Blue Ivy -Elizabeth Blackwell -Patriots -Lari White -Puppy Bowl 2018 -Super Bowl score -Kylie Jenner -Nintendo Labo -Monster Hunter World -National Pizza Day -Virginia Woolf -Government shutdown 2018 -Andrew Cunanan -Tennys Sandgren -Wilder Penfield -XFL -Sergei Eisenstein -Kylie Jenner -Carter G. Woodson -Winter Olympics -Florida shooting -Kylie Jenner -Deadpool 2 -Kylie Jenner -Super Bowl Commercials -Super Bowl 2018 -Mavic Air -Winter Olympics -Cherry Seaborn -Google Classroom -Paula Modersohn-Becker -Elizabeth Blackwell -Andre Roberson -AFC Championship Game 2018 -Royal Rumble 2018 -Carter G. Woodson -Super Bowl score -Dwyane Wade -Paula Modersohn-Becker -Sergei Eisenstein -Kylie Jenner -Alaska earthquake -Super blue blood Moon -Drive -Oscar Nominations 2018 -Vikings Vs Eagles -Florida shooting -Elizabeth Blackwell -Carter G. Woodson -Royal Rumble 2018 -Real Madrid -Winter Olympics -Trump State of the Union -Florida shooting -AR-15 -Chris Stapleton -Quincy Jones -Winter Olympics -Dane Cook -UFC 220 -Super Bowl score -Super Bowl 2018 -Florida shooting -Alessia Cara -Valentines Day -Jessica Chastain -Winter Olympics -XFL -Elizabeth Blackwell -Carter G. Woodson -Fifty Shades Freed -Florida shooting -Chicago West -Jeffrey Tambor -NBA Trades -Walter Payton -Patriots -Elizabeth Blackwell -Florida shooting -North Korean cheerleaders -Alex Smith -Justin Timberlake -Carter G. Woodson -Carter G. Woodson -Vikings vs Eagles -Carter G. Woodson -What Time Is The Super Bowl -Groundhog Day 2018 -Sergei Eisenstein -Sergei Eisenstein -Olympic Medal Count -Kylie Jenner -Fifty Shades Freed -Patriots -Larry Nassar -Sergei Eisenstein -Super Bowl score -Paula Modersohn-Becker -Presidents Day 2018 -What Time Is The Super Bowl -Super Bowl 2018 halftime show -Justin Timberlake -The Alienist -Wilder Penfield -Super Bowl 2018 -Portia de Rossi -Super Bowl score -Fidel Castro -Bitcoin Price -Florida shooting -Paula Modersohn-Becker -Carter G. Woodson -Jen Selter -Chris Stapleton -Super Bowl 2018 -Jalen Ramsey -Wilder Penfield -Winter Olympics -State of the Union -Enzo Amore -Mark Salling -Did the Groundhog See His Shadow -SpaceX -Super Bowl 2018 -What Time Is The Super Bowl -State of the Union -Memo -Winter Olympics -Patriots -SAG Awards 2018 -Elizabeth Blackwell -Elizabeth Blackwell -Wilder Penfield -Florida shooting -Fredo Santana -Super Bowl score -SpaceX -Government shutdown -Yu Darvish -Virginia Woolf -Kim Kardashian -Grammys 2018 -Black Panther -Maddie Mastro -Cloverfield Paradox -Mcdonald's -Maze Runner: The Death Cure -Nintendo Labo -Cbs -What Time Is The Super Bowl -Lindsey Vonn -Elton John -Bruno Mars -Trump State of the Union -Groundhog Day 2018 -Groundhog Day 2018 -Carter G. Woodson -Emily Sweeney -Google Classroom -Kylie Jenner -Paula Modersohn-Becker -Highline College -Lady Bird -Carter G. Woodson -Yu Darvish -Elton John -Wilder Penfield -Florida shooting -Wilder Penfield -12 Strong -Florida shooting -Super Bowl score -Tom Petty -Kylie Jenner -NFC Championship Game 2018 -Alaska earthquake -Patriots -Paula Modersohn-Becker -CNN -Winter Olympics -Wilder Penfield -Maze Runner: The Death Cure -Justin Timberlake -Florida shooting -Paula Modersohn-Becker -Jacob Copeland -Isaiah Canaan -Government Shutdown -Langston Hughes -Timor Leste -Edwin Jackson -Memo -Carter G. Woodson -Solo Trailer -Sergei Eisenstein -What Time Is The Super Bowl -UFC 220 -Winter Olympics -Wilder Penfield -Neil Diamond -Trey Gowdy -Alison Brie -Patti LuPone -Wilder Penfield -Virginia Woolf -NBA Trades -Snap Stock -Johnny Weir -Winter Olympics -Super Bowl 2018 -Grammys 2018 -Scott Baio -Winter Olympics -Super Bowl 2018 -Super Bowl score -Winter Olympics -Sea of Thieves -Stormi -What Time Is The Super Bowl -Carter G. Woodson -Justin Timberlake -Government Shutdown -James Harden -Florida shooting -Vikings Vs Eagles -Bitcoin Price -Patti LuPone -Alex Smith -Paula Modersohn-Becker -Oscar Nominations 2018 -Groundhog Day 2018 -State of the Union -Elton John -Larry Nassar -Wilder Penfield -Larry Nassar -Kentucky shooting -SAG Awards 2018 -Elizabeth Blackwell -Black Panther -Grammys 2018 -Johnny Weir -Google Classroom -Alex Smith -State of the Union -Florida shooting -Obama portrait -Lunar eclipse -Kentucky shooting -Google docs -Florida shooting -Pro Bowl 2018 -Sergei Eisenstein -Virginia Woolf -Chinese New Year 2018 -Super Bowl Winners -Patriots -Tom Petty -Super Bowl 2018 -Elizabeth Blackwell -Kylie Jenner -Virginia Woolf -Wilder Penfield -Florida shooting -Mark Salling -Oscar Nominations 2018 -Government shutdown 2018 -Black Panther -Dua Lipa -PlayStation Network -Kentucky shooting -XFL -Google docs -Carter G. Woodson -Obama portrait -Patriots -Bitcoin Price -Shaun White -Paula Modersohn-Becker -Elizabeth Blackwell -Solo Trailer -Florida shooting -Sergei Eisenstein -Grammys 2018 -Hope Hicks -Super Bowl 2018 -Patriots -Carter G. Woodson -Florida shooting -Government Shutdown -Lady Gaga -Dow Jones -Wilder Penfield -Larry Nassar -Puppy Bowl 2018 -Will Ferrell -Elizabeth Blackwell -Florida shooting -Florida shooting -Mikaela Shiffrin -Oscar Nominations 2018 -Carter G. Woodson -Adam Rippon -Sergei Eisenstein -Wilder Penfield -Patti LuPone -Winter Olympics -Jenna Morasca -Wilder Penfield -Virginia Woolf -Black Panther -Groundhog Day 2018 -Patriots -Robert Wagner -Paula Modersohn-Becker -Virginia Woolf -Wilder Penfield -Super blue blood Moon -Super Blue Blood Moon -Government Shutdown 2018 -Olympic Medal Count -Did the Groundhog See His Shadow -Kim Cattrall -Chicago West -Yoel Romero -Edible Arrangements -SpaceX -Paula Modersohn-Becker -Kesha -Patriots -Wilder Penfield -Paula Modersohn-Becker -James Harden -Super Bowl 2018 -Sergei Eisenstein -Bitcoin Price -Carter G. Woodson -Vikings Vs Eagles -Government Shutdown Meaning -Elizabeth Blackwell -Patriots -Memo -Roger Federer -Carter G. Woodson -Florida shooting -What Time Is The Super Bowl -Kesha Grammy -Pro Bowl 2018 -Florida shooting -Florida shooting -Valentines Day -Dow Jones -Groundhog Day 2018 -Virginia Woolf -Best Superbowl Commercials 2018 -Quincy Jones -Cavs -Wilder Penfield -New England Patriots owner -Winter Olympics -What Time Is The Super Bowl -Rasual Butler -Daryle Singletary -Winter Olympics -Super Bowl 2018 -Patriots -Lonzo Ball -Solo Trailer -Ar 15 -Wilder Penfield -Alaska earthquake -UFC 220 -Winter Olympics -Detroit Lions -Obama portrait -Florida shooting -Alaska earthquake -Ash Wednesday -LeBron James -Patriots -Alessia Cara -Wilder Penfield -Groundhog Day 2018 -tsunami -National Pizza Day -When We First Met -Carter G. Woodson -Virginia Woolf -Ash Wednesday -Kylie Jenner -Quincy Jones -Winter Olympics -Virginia Woolf -Virginia Woolf -Kelsey Grammer -Fredo Santana -Virginia Woolf -Carter G. Woodson -Oscar Nominations 2018 -Patriots -Chris Long -Chris Paul -Real Madrid -Carter G. Woodson -Virginia Woolf -Childish Gambino -Edwin Jackson -Super blue blood Moon -Winter Olympics -Venom -Ar 15 -Wilder Penfield -Super Bowl 2018 -Patriots -Joe Kennedy -Groundhog Day 2018 -Oscar Nominations 2018 -Jamie Dornan -calculator -SpaceX -Larry Nassar -Florida shooting -Sting -Steve Wynn -Meteor -Carter G. Woodson -Sergei Eisenstein -LeBron James -State of the Union -National Pizza Day -Daryle Singletary -Did the Groundhog See His Shadow -Lady Bird -Joy Villa -Sergei Eisenstein -Sergei Eisenstein -Justin Timberlake -Virginia Woolf -Carter G. Woodson -Bitcoin Price -Outback Steakhouse -Paula Modersohn-Becker -Sergei Eisenstein -Winter Olympics -Government Shutdown -Tesla in space -Patriots -Patriots -Carrie Underwood -Government Shutdown -Dwyane Wade -Chris Long -Greg Monroe -Carter G. Woodson -Virginia Woolf -Cryptocurrency News -Wilder Penfield -earthquake today -School closings -Jo Jo White -Wilder Penfield -Paula Modersohn-Becker -Senior Bowl -Memo -Paula Modersohn-Becker -Valentines Day -Jane Fonda -SpaceX -Wilder Penfield -Paula Modersohn-Becker -Sergei Eisenstein -Justin Timberlake -Zion Williamson -Wilder Penfield -Winter Olympics -Shaun White -Larry Nassar -Paula Modersohn-Becker -Winter Olympics -Patriots -SAG Awards 2018 -Florida shooting -Andrew Cunanan -Valentines Day -Sergei Eisenstein -Carter G. Woodson -UFC 220 -Winter Olympics -The Alienist -Florida shooting -Kesha -Sergei Eisenstein -Amazon Stock -Taiwan Earthquake Today -Jason Kidd -Wilder Penfield -Super blue blood Moon -Florida shooting -Rodney Hood -Carter G. Woodson -Jason Kelce -Paula Modersohn-Becker -Wilder Penfield -Warren Miller -Nathan Chen -Paula Modersohn-Becker -Greg Monroe -Patriots -Super Bowl score -Rodney Hood -Kylie Jenner Baby Girl -Government Shutdown -Oscar Nominations 2018 -Oscar Nominations 2018 -Sandy Hook -Bitcoin Price -Memo -Hostiles Movie -Paula Modersohn-Becker -What Time Is The Super Bowl -Florida shooting -Lindsey Vonn -Virginia Woolf -Justin Timberlake -Winter Olympics -Super Bowl 2018 -Larry Nassar -Virginia Woolf -Jamie Anderson -Mardi Gras 2018 -Government Shutdown 2018 -Zion Williamson -Bernie Sanders -Super Bowl score -Virginia Woolf -Carter G. Woodson -UFC 220 -Super Bowl score -Kylie Jenner -Red Gerard -Memo -Patriots -Virginia Woolf -Lunar eclipse -Grammys 2018 -Carter G. Woodson -Oar Olympics -Dow Jones -Grammys 2018 -Wilder Penfield -Kylie Jenner Baby Girl -Olivia Culpo -SpaceX -Super Bowl score -CNN -Sergei Eisenstein -Nancy Pelosi -Carter G. Woodson -Sergei Eisenstein -Virginia Woolf -Carter G. Woodson -Elizabeth Blackwell -Derrick Rose -Presidents Day 2018 -Olympic Medal Count -Deadpool 2 -Dwyane Wade -Elizabeth Blackwell -CBS Sports -Kesha Grammy -Paula Modersohn-Becker -Google Drive -Mark Salling -Government shutdown 2018 -Dwyane Wade -Tiger Woods -Super Bowl 2018 -Florida shooting -Sergei Eisenstein -Evgenia Medvedeva -stock market -Cavs -Grammys 2018 -Obama portrait -State of the Union -What Time Is The Super Bowl -Senior Bowl -Mark Salling -Super Bowl score -Virginia Woolf -Vikings vs Eagles -Virginia Woolf -Lunar eclipse -Kylie Jenner -Virginia Woolf -Carter G. Woodson -Cbs -Ohio State basketball -Tonga -Wilder Penfield -Isaiah Thomas -Trump State of the Union -SpaceX -Sergei Eisenstein -Paula Modersohn-Becker -Fifty Shades Freed -Grammys 2018 -Larry Nassar -Earthquake -Happy Valentines Day -Luke Wilson -Winter Olympics -Virginia Woolf -Carter G. Woodson -CNN -Mark Salling -Cavs -Lakers -Elizabeth Blackwell -Black Panther -Florida shooting -Manchester United -Deadpool 2 -Wilder Penfield -Super Bowl 2018 -What Time Is The Super Bowl -Sergei Eisenstein -Olympics 2018 -Oscar Nominations 2018 -Jason Kelce -Winter Olympics -Super Bowl score -Dow Jones -Otto Warmbier -Jennifer Aniston -Grammys 2018 -Elizabeth Blackwell -Larry Nassar -Winter Olympics -Memo -Grammys 2018 -Virginia Woolf -Patriots -Omarosa -Matt Patricia -Winter Olympics -Bitcoin Price -Patriots -Chicago Weather -Florida shooting -Super Bowl 2018 -Larry Nassar -Winter Olympics -Daryle Singletary -Jo Jo White -Elizabeth Blackwell -Paula Modersohn-Becker -Carter G. Woodson -Alessia Cara -Patriots -Black Panther -Patriots -SpaceX -Olympic Medal Count -Elizabeth Blackwell -Carter G. Woodson -Korea -Sergei Eisenstein -SpaceX -Dwyane Wade -Vikings Vs Eagles -Chloe Kim -Trey Gowdy -New England Patriots owner -Oscar Nominations 2018 -Pro Bowl 2018 -Groundhog Day 2018 -Wilder Penfield -Jeff Flake -Joel Taylor -Alaska earthquake -Dwyane Wade -Super Bowl score -Tiger Woods -Paula Modersohn-Becker -Olympics 2018 -Olive Garden -Super Bowl 2018 -Super Bowl score -Sergei Eisenstein -Luke Wilson -Bitcoin Price -Winter Olympics -Winter Olympics -Mardi Gras 2018 -Shaun White -Royal Rumble 2018 -Mikaela Shiffrin -Virginia Woolf -Grammys 2018 -Justin Timberlake -Grammys 2018 -Florida shooting -Paula Modersohn-Becker -Virginia Woolf -SpaceX -This Is Us -Justin Timberlake -SpaceX -Kim Kardashian -Caroline Wozniacki -SpaceX -SpaceX -Jennifer Aniston -Super Bowl score -Rob Delaney -Elizabeth Blackwell -Chloe Kim -Dow Jones -Elizabeth Blackwell -Blood Moon -Paula Modersohn-Becker -Chinese New Year 2018 -Phantom Thread -Super Bowl score -Kim Kardashian -Wilder Penfield -Aaliyah -Sergei Eisenstein -Larry Nassar -Caroline Wozniacki -Carter G. Woodson -Happy Valentines Day -Oscar Nominations 2018 -Hailee Steinfeld -Larry Nassar -Super Bowl score -Mikaela Shiffrin -Did the Groundhog See His Shadow -Ash Wednesday -Grammys 2018 -Patriots -Florida shooting -Sergei Eisenstein -Virginia Woolf -Black Panther -Sergei Eisenstein -Kylie Jenner -Sergei Eisenstein -school closings -Patriots -Virginia Woolf -Florida shooting -Government shutdown -Waco -Yahoo Finance -Andrew Cunanan -Red Gerard -Dow Jones -Rob Delaney -Grammys 2018 -SpaceX -Super Bowl score -Rasual Butler -Sergei Eisenstein -Patriots -Blake Griffin -Lorenzo Cain -Kentucky shooting -Wilder Penfield -Government Shutdown -Super Bowl 2018 -Elizabeth Blackwell -Wilder Penfield -Florida shooting -Kirstjen Nielsen -Government shutdown -Sergei Eisenstein -UFC 221 -Ash Wednesday -Carter G. Woodson -Mexico earthquake -Trayvon Martin -Justin Timberlake -Kesha Grammy -Patriots -Super Bowl 2018 -Groundhog Day 2018 -Mardi Gras 2018 -Aliona Savchenko -Amazon stock -Virginia Woolf -Larry Nassar -Patriots -Virginia Woolf -Patriots -Greg Monroe -Bob Dole -Super Bowl score -Shaun White -Larry Nassar -Virginia Woolf -Sergei Eisenstein -Winter Olympics -Amy Schumer -Super Bowl score -Paula Modersohn-Becker -Cloverfield Paradox -Wilder Penfield -Super Bowl 2018 -Carter G. Woodson -Super Bowl 2018 -Fifty Shades Freed -Florida shooting -Florida shooting -Super Bowl 2018 -Cavs -Fredo Santana -Black Panther -Kingdom Come Deliverance -Aaliyah -Sergei Eisenstein -Deadpool 2 -What Time Is The Super Bowl -Tom Brady -Jon Huntsman -Larry Nassar -Jacob Copeland -Trump State of the Union -Joe Kennedy -Rolling Loud -Jamie Anderson -Virginia Woolf -Super Bowl 2018 -Super Bowl 2018 halftime show -Katie Couric -Elton John -Cherry Seaborn -Sergei Eisenstein -Patriots -Grammys 2018 -The Home Depot -Winter Olympics -The Alienist -What Time Is The Super Bowl -Groundhog Day 2018 -Florida shooting -Kentucky shooting -Altered Carbon -Jennifer Aniston -Mark Salling -Super Bowl score -Super Bowl score -Marlon Brando -Super Bowl 2018 -Alison Brie -Government Shutdown -Winter Olympics -Paula Modersohn-Becker -Paula Modersohn-Becker -Mardi Gras 2018 -Google Classroom -Pro Bowl 2018 -Justin Timberlake -Vic Damone -Kim Cattrall -Terrell Owens -Senior Bowl -Winter Olympics -Elizabeth Blackwell -Government Shutdown -Winter Olympics -Celebrity Big Brother cast -What Time Is The Super Bowl -John Mahoney -Winter Olympics -Virginia Woolf -Kentucky shooting -Grammys 2018 -Government Shutdown Meaning -Wilder Penfield -Amy Schumer -School Closings -Winter Olympics -Obama portrait -Gods Plan -Mike Tomlin -Patriots -Luke Wilson -Columbine -Jalen Ramsey -Tara Lipinski -Black Panther -Google docs -Government Shutdown -Kawhi Leonard -Wilder Penfield -Nathan Chen -Sergei Eisenstein -Olympic Medal Count -Sergei Eisenstein -Larry Nassar -Super blue blood Moon -earthquake today -Patriots -Caitlin McHugh -Chris Stapleton -Sergei Eisenstein -Justin Timberlake -Kesha -Rihanna -Kylie Jenner -Betty White -Grammys 2018 -Wilder Penfield -Larry Nassar -Ash Wednesday -Carter G. Woodson -Vikings Vs Eagles -Happy Valentines Day -Government shutdown 2018 -IXL -Dow Jones -Patriots -Solo Trailer -OKC Thunder -Patriots -Senior Bowl -Larry Nassar -What Time Is The Super Bowl -Groundhog Day 2018 -Kylie Jenner -Super blue blood Moon -Carter G. Woodson -Winter Olympics -Patriots -Winter Olympics -Wilder Penfield -Eli Manning -Virginia Woolf -Super Bowl 2018 -Virginia Woolf -Winter Olympics -Virginia Woolf -Rob Porter -Florida shooting -Wilder Penfield -Super Bowl 2018 -Jeffrey Tambor -Grammys 2018 -Carter G. Woodson -Paula Modersohn-Becker -Paula Modersohn-Becker -Elizabeth Blackwell -Royal Rumble 2018 -Winter Olympics -Larry Nassar -Wilder Penfield -New England Patriots owner -Oscar Nominations 2018 -NBA Trades -Grammys 2018 -Memo -Alex Smith -CBS Sports -Grammys 2018 -State of the Union -Virginia Woolf -CNN -Rasual Butler -Winter Olympics -Patriots -Pro Bowl 2018 -Carter G. Woodson -Carter G. Woodson -Kevin Love -Mark Salling -Google Classroom -Jason Kidd -Justin Timberlake -Florida shooting -Government shutdown 2018 -Virginia Woolf -Super Bowl score -Cavs -Lunar eclipse -Elizabeth Blackwell -Jamie Anderson -Sergei Eisenstein -Gigi Hadid -Wilder Penfield -Snake -Sergei Eisenstein -Paula Modersohn-Becker -Super blue blood Moon -Justin Timberlake -Blue Ivy -What Time Is The Super Bowl -Government Shutdown -Dwyane Wade -Chicago West -Government Shutdown -SpaceX -Anthony Davis -Super Bowl score -Joe Kennedy -Shaun White -Incredibles 2 -James Maslow -Edible Arrangements -Shiffrin -Kylie Jenner -Sergei Eisenstein -Wilder Penfield -Chinese New Year 2018 -Stock Market Crash Today -Luke Wilson -school closings -Kylie Jenner -Enzo Amore -Florida shooting -Patriots -Mark Salling -Terrell Owens -Fifty Shades Freed -Super Bowl 2018 -Nathan Chen -Kentucky shooting -Super Bowl 2018 -Quincy Jones -Red Gerard -Grey's Anatomy -Wilder Penfield -Carter G. Woodson -Wilder Penfield -Grammys 2018 -Larry Nassar -Virginia Woolf -Release The Memo -Black Panther -Winter Olympics -Super Bowl score -SpaceX -Chloe Kim -Super Bowl 2018 -Grammys 2018 -Childish Gambino -Super Bowl 2018 -Bob Dole -Government shutdown 2018 -Paula Modersohn-Becker -Super Bowl 2018 -Florida shooting -Patriots -Trump State of the Union -Paula Modersohn-Becker -Super Bowl score -Winter Olympics -Quincy Jones -Cloverfield Paradox -Sergei Eisenstein -Super Bowl score -Happy Valentines Day -SpaceX -Tessa Virtue -Alex Smith -Virginia Woolf -Ash Wednesday -Happy Valentines Day -Carter G. Woodson -Government Shutdown -Government Shutdown -Patriots -Elizabeth Blackwell -Sergei Eisenstein -Government Shutdown -Elizabeth Blackwell -Robert Wagner -SpaceX -Paula Modersohn-Becker -Larry Nassar -Oscar Nominations 2018 -Brie Larson -Florida shooting -Government Shutdown -Florida shooting -Trump State of the Union -Government Shutdown -Stock Market Crash Today -State of the Union -Alaska earthquake -Reg E Cathey -Winter Olympics -Virginia Woolf -CNN -Evgenia Medvedeva -Elizabeth Blackwell -Chloe Kim -Paul Ryan -Alaska earthquake -Super Bowl score -Andrew Cunanan -Elizabeth Blackwell -Super Bowl 2018 -Paula Modersohn-Becker -Vikings Vs Eagles -Florida shooting -Winter Olympics -New England Patriots owner -Wilder Penfield -Jason Kelce -Super Bowl score -Gianni Versace -Sergei Eisenstein -Vikings Vs Eagles -earthquake today -Solo Trailer -Blake Griffin -Florida shooting -calculator -Blake Griffin -Carter G. Woodson -SZA -Virginia Woolf -Larry Nassar -Carter G. Woodson -Wilder Penfield -Chloe Kim -Patriots -Florida shooting -Den of Thieves -Winter Olympics -Kylie Jenner -Cloverfield Paradox -Kim Kardashian -Kylie Jenner -Super Bowl score -Wilder Penfield -Shaun White -Kentucky shooting -Elizabeth Blackwell -Shaun White -Oar Olympics -United States Of America Winter Olympics -Duke basketball -Super Bowl 2017 -Winter Olympics -Obama portrait -Super Bowl score -Chloe Kim -Justin Timberlake -Elizabeth Blackwell -Chief Wahoo -Super Bowl 2018 -Cnbc -Super Bowl 2018 -Bitcoin Price -This Is Us -Justin Timberlake -SpaceX -Did the Groundhog See His Shadow -SpaceX -Alex Reimer -The 15:17 to Paris -Kylie Jenner -Kylie Jenner -Sergei Eisenstein -Chloe Kim -Super Bowl Commercials -National Pizza Day -Nathan Chen -School Closings -Patriots -Luke Wilson -Michigan State -Football Playoffs 2018 -Rasual Butler -Sergei Eisenstein -Elizabeth Blackwell -The Resident -Winter Olympics -Super Bowl 2018 -Pro Bowl 2018 -Aliona Savchenko -What Time Is The Super Bowl -Jeremy London -Larry Nassar -Portia de Rossi -UFC 220 -Tiger Woods -school closings -Blake Griffin -Virginia Woolf -Sergei Eisenstein -Super Bowl 2018 -Grammys 2018 -Cory Booker -Paula Modersohn-Becker -Shaun White -Kylie Jenner -Steven Tyler -Lady Bird -Zion Williamson -Did the Groundhog See His Shadow -What Time Is The Super Bowl -Elizabeth Blackwell -Super Bowl score -Winter Olympics -Eli Manning -What Time Is The Super Bowl -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl score -Dow Jones -SZA -Sergei Eisenstein -Meteor -Did the Groundhog See His Shadow -Grey's Anatomy -Celebrity Big Brother cast -Super Bowl score -Wilder Penfield -Groundhog Day 2018 -Paula Modersohn-Becker -Larry Nassar -Groundhog Day 2018 -Royal Rumble 2018 -Johnny Weir -Rob Porter -NHL All Star Game -calculator -Vikings vs Eagles -Super Bowl 2018 -Elizabeth Blackwell -Patriots -Paula Modersohn-Becker -Larry Nassar -Purdue basketball -Rodney Hood -Justin Timberlake -Grammys 2018 -Dwyane Wade -Government shutdown 2018 -Steven Tyler -Emily Sweeney -Shaun White -Florida shooting -New California -12 Strong -Florida shooting -Florida shooting -Winter Olympics -Edgar Martinez -Winter Olympics -Childish Gambino -Wilder Penfield -Patriots -Florida shooting -Carter G. Woodson -Carter G. Woodson -CNN -Super Bowl 2018 -Virginia Woolf -Justin Timberlake -Rob Porter -What Time Is The Super Bowl -Black Panther -Kylie Jenner -Paula Modersohn-Becker -Mark Salling -Wilder Penfield -Lou Anna Simon -Elizabeth Blackwell -Elizabeth Blackwell -SpaceX -Black Panther -Super Bowl 2018 -Trump State of the Union -Scott Baio -Super Bowl 2018 -Vikings Vs Eagles -Kylie Jenner -Virginia Woolf -Florida shooting -Emily Sweeney -Cavs -Elizabeth Blackwell -Ted Bundy -Andrew Cunanan -Marlon Brando -Elton John -Grammys 2018 -Alison Brie -Chinese New Year 2018 -Winter Olympics -Patriots -Bitcoin Price -Super Bowl 2018 -Elizabeth Blackwell -Winter Olympics -Carter G. Woodson -Bellator 192 -Virginia Woolf -Dow Jones -Government Shutdown -Meteor -Happy Valentines Day -Rasual Butler -Marlon Brando -Kim Kardashian -Chicago West -Shaun White -Alaska earthquake -Patriots -Winter Olympics -Winter Olympics -Tom Petty -Super Bowl 2018 -Jacob Copeland -Virginia Woolf -Wilder Penfield -Super Bowl score -Ar 15 -Virginia Woolf -Super Bowl score -school closings -Florida shooting -School closings -school closings -Chloe Kim -Wilder Penfield -Super Bowl score -Wilder Penfield -Sergei Eisenstein -NBA Trades -Berkshire Hathaway -Cavs -Meteor -Justin Timberlake -Dwyane Wade -SAG Awards 2018 -Amy Schumer -Wilder Penfield -Earthquake Today -Larry Nassar -Elizabeth Blackwell -Vikings Vs Eagles -Wilder Penfield -Super Bowl score -Super Bowl 2018 -Chipper Jones -Florida shooting -Patriots -Blue Moon -Lunar eclipse -Sergei Eisenstein -Sergei Eisenstein -What Time Is The Super Bowl -Virginia Woolf -Bill Belichick -Shaun White -The 15:17 to Paris -SpaceX -Dow Jones -Sergei Eisenstein -Super Bowl score -Valentines Day Images -Super Bowl 2018 -Grammys 2018 -Super Bowl score -Larry Nassar -Steve Mcnair -Dow Jones -Virginia Woolf -The 15:17 to Paris -All Star Weekend 2018 -Sergei Eisenstein -Winter Olympics -Simona Halep -Chloe Kim -Vikings Vs Eagles -Patriots -SpaceX -Pro Bowl 2018 -Florida shooting -CNN -Winter Olympics -Edgar Martinez -Andrew Cunanan -Donald Trump Jr -Florida shooting -SAG Awards 2018 -Florida shooting -Apolo Ohno -Carter G. Woodson -Sergei Eisenstein -Vic Damone -Patriots -Patriots -Winter Olympics -Super Bowl 2018 -Paula Modersohn-Becker -Shiffrin -Carrie Underwood -Google Drive -Elizabeth Blackwell -Kylie Jenner -Culture 2 -Mardi Gras 2018 -Royal Rumble 2018 -Super Bowl score -Vanessa Trump -Virginia Woolf -Super Bowl 2018 -Vince McMahon -Happy Valentines Day -Kentucky shooting -Winter Olympics -Did the Groundhog See His Shadow -Winter Olympics -Wilder Penfield -Jenna Morasca -Gianni Versace -Virginia Woolf -SAG Awards 2018 -Virginia Woolf -Alaska earthquake -Celtics -Josh McDaniels -Mardi Gras 2018 -Alaska earthquake -Royal Rumble 2018 -Grammys 2018 -Mark Salling -Chicago West -Trey Gowdy -Mark Salling -Grammys 2018 -Florida shooting -Alex Smith -Sergei Eisenstein -Jennifer Aniston -Blake Griffin -Kylie Jenner -Elizabeth Blackwell -Virginia Woolf -Super Bowl 2018 -Florida shooting -Winter Olympics -Sergei Eisenstein -Trump State of the Union -Patriots -Valentines Day -Carter G. Woodson -Grammys 2018 -Super Bowl 2018 -Ash Wednesday -Super Bowl 2018 -Robert Wagner -Mardi Gras 2018 -Alaska earthquake -Wilder Penfield -Grammys 2018 -Virginia Woolf -Super Bowl 2018 -Black Panther -Snapchat Update -Tiger Woods -Sergei Eisenstein -Winter Olympics -Virginia Woolf -Fredo Santana -NBA Trades -Super Bowl score -Super Bowl score -Purdue basketball -Cloverfield Paradox -CNN -Jason Kidd -Steve Wynn -Google docs -Super Bowl score -SpaceX -Paula Modersohn-Becker -Jennifer Aniston -Patriots -SpaceX -Grammys 2018 -Florida shooting -Virginia Woolf -Oscar Nominations 2018 -Super Bowl 2018 -New England Patriots owner -Patriots -Amy Schumer -Vikings Vs Eagles -Jessica Chastain -Florida shooting -Venom -Florida shooting -Super Bowl Commercials 2018 -Grammys 2018 -Patriots -SpaceX -Sergei Eisenstein -Happy Valentines Day -Government Shutdown -Florida shooting -Elizabeth Blackwell -Jason Kelce -What Time Is The Super Bowl -Black Panther -Florida shooting -Wilder Penfield -Carter G. Woodson -Enzo Amore -Early Man -Uma Thurman -Winter Olympics -Virginia Woolf -Carter G. Woodson -Lunar eclipse -Grammys 2018 -Larry Nassar -Elizabeth Blackwell -Florida shooting -Blake Griffin -Matt Czuchry -UFC 220 -LeBron James -Carter G. Woodson -Patriots -Larry Nassar -Winter Olympics -Earthquake -Sergei Eisenstein -Groundhog Day 2018 -Super Bowl 2018 -SpaceX -Alessia Cara -Bob Marley -Oscar Nominations 2018 -Lunar eclipse -Vikings Vs Eagles -Winter Olympics -Royal Rumble 2018 -School Closings -Super Bowl 2018 -XFL -Elizabeth Blackwell -All Star Weekend 2018 -Josh McDaniels -Lindsey Vonn -SpaceX -Patriots -Super Bowl score -Paula Modersohn-Becker -Fredo Santana -Wilder Penfield -Black Panther -Chinese New Year 2018 -Josh McDaniels -Happy Valentines Day -Paula Modersohn-Becker -Government Shutdown -Elizabeth Blackwell -Winter Olympics -Justin Timberlake -Virginia Woolf -Google Classroom -Did the Groundhog See His Shadow -Wilder Penfield -SAG Awards 2018 -Blue Moon -Super Bowl 2018 -Wilder Penfield -Bitcoin Price -Government Shutdown -Lonzo Ball -Patriots -Rett Syndrome -Conor McGregor -Fredo Santana -Elizabeth Blackwell -Winter Olympics -Government Shutdown Meaning -Super Bowl 2018 -Kesha Grammy -Paula Modersohn-Becker -Real Madrid -Carter G. Woodson -Rett Syndrome -Virginia Woolf -Wilder Penfield -Oscar Nominations 2018 -Grammys 2018 -National Pizza Day -Dow Jones -Sal Castro Middle School -Wilder Penfield -Josh McDaniels -Florida shooting -SAG Awards 2018 -Super Bowl score -Lakers -Lindsey Vonn -Super Bowl 2018 -Patriots -Kylie Jenner -Super Bowl 2018 -Sergei Eisenstein -Black Panther -Super Bowl score -Super Bowl 2018 -State of the Union -Paula Modersohn-Becker -Patriots -Bitcoin Price -Amy Schumer -Sarah Barthel -Manchester United -Super Bowl 2018 -Super Bowl 2018 -Jason Kelce -Cloverfield Paradox -Omarosa -Super blue blood Moon -Chicago West -Government Shutdown -What Time Is The Super Bowl -Sergei Eisenstein -Katie Couric -Ash Wednesday -Super Bowl score -This Is Us -Winter Olympics -Blake Griffin Trade -Mardi Gras 2018 -Chief Wahoo -United States Of America Winter Olympics -Justin Timberlake -Kentucky shooting -Vanity Fair Cover -Sergei Eisenstein -Paula Modersohn-Becker -SpaceX -Patriots -Groundhog Day 2018 -Virginia Woolf -Super Bowl 2018 -Florida shooting -Justin Timberlake -Kentucky shooting -Sergei Eisenstein -Reg E Cathey -Shaun White -Justin Timberlake -SAG Awards 2018 -Carter G. Woodson -Classroom -Duke Basketball -Government shutdown -Wilder Penfield -Fifty Shades Freed -Super Bowl score -Ronaldinho -Carter G. Woodson -calculator -Wilder Penfield -Florida shooting -Government shutdown -Virginia Woolf -Wilder Penfield -Shaun White -Kratom -Winter Olympics -Duke Basketball -Super blue blood Moon -Sergei Eisenstein -Cherry Seaborn -Super Bowl score -Paula Modersohn-Becker -Black Panther -Paula Modersohn-Becker -Mark Salling -Mikaela Shiffrin -Dwyane Wade -Jessica Chastain -Wilder Penfield -Winter Olympics -Omarosa -Ash Wednesday -Blake Griffin -Grammys 2018 -Super Bowl 2018 -Carter G. Woodson -What Time Is The Super Bowl -Super Bowl 2018 -stock market -Paula Modersohn-Becker -What Time Is The Super Bowl -Rachel Brand -Patriots -Esteban Loaiza -Super Bowl 2018 -Josh McDaniels -Government Shutdown Meaning -Elizabeth Blackwell -fake news awards -Elizabeth Blackwell -What Time Is The Super Bowl -Joel Taylor -Winter Olympics -Marlon Brando -Daytona 500 -Cavs -Isaiah Thomas -Florida shooting -Jason Kelce -Cloverfield Paradox -Kylie Jenner -Bitcoin Price -Super blue blood Moon -Shaun White -Joshua Cooper Ramo -Wilder Penfield -Virginia Woolf -Joe Kennedy -Fredo Santana -Super Bowl score -Government Shutdown -Sergei Eisenstein -Julie Ertz -This Is Us -Florida shooting -Winter Olympics -Olivia Munn -Chinese New Year 2018 -SpaceX -Chloe Kim -Kim Kardashian -Virginia Woolf -Wilder Penfield -Quincy Jones -Super Bowl 2018 -Virginia Woolf -What Time Is The Super Bowl -United States Of America Winter Olympics -Paula Modersohn-Becker -Chinese New Year 2018 -Wilder Penfield -Bitcoin Price -Groundhog Day 2018 -Natalie Wood -Halsey -Justin Timberlake -What Time Is The Super Bowl -Solo Trailer -Mark Salling -Lady Gaga -Kylie Jenner -Ash Wednesday -Ohio State basketball -Donald Trump Jr -NFC Championship Game 2018 -Jamie Dornan -Patriots -Super Bowl score -Florida shooting -Mueller -Virginia Woolf -Wilder Penfield -AR-15 -Google docs -Florida shooting -Florida shooting -Carter G. Woodson -Kylie Jenner Baby Girl -Fifty Shades Freed -Oscar Nominations 2018 -Pro Bowl 2018 -What Time Is The Super Bowl -Ash Wednesday -Dennis Edwards -Justin Timberlake -Patriots -Happy Valentines Day -SpaceX -Elizabeth Blackwell -Elizabeth Blackwell -Dwyane Wade -Quincy Jones -Super Bowl score -Florida shooting -Andrew Cunanan -Joe Kennedy -Olive Garden -Mardi Gras 2018 -Winter Olympics -Government Shutdown -Mexico earthquake -What Time Is The Super Bowl -Mike Fisher -Florida shooting -Google Classroom -United States Of America Winter Olympics -Chicago West -Super Bowl score -Westminster Dog Show 2018 -Kylie Jenner -Virginia Woolf -Super Bowl 2018 -What Time Is The Super Bowl -Edible Arrangements -Carter G. Woodson -Kawhi Leonard -Super Bowl score -Sergei Eisenstein -Kate Upton -Government shutdown 2018 -Florida shooting -Carter G. Woodson -Paula Modersohn-Becker -Wilder Penfield -Paula Modersohn-Becker -Government Shutdown Meaning -Tyler Hilinski -Roger Federer -Super Bowl score -Florida shooting -Heath Ledger -SpaceX -Florida shooting -Wilder Penfield -Elizabeth Blackwell -Larry Nassar -tsunami -Elizabeth Blackwell -Toys R Us -Valentines Day Cards -What Time Is The Super Bowl -Chinese New Year 2018 -Carter G. Woodson -Lena Zawaideh -State of the Union -Super Bowl score -Royal Rumble 2018 -Paula Modersohn-Becker -Winter Olympics -Nba All Star 2018 -Kylie Jenner -Hillary Clinton -Oscar Nominations 2018 -Elizabeth Blackwell -Sergei Eisenstein -Paula Modersohn-Becker -Florida shooting -Carter G. Woodson -Winter Olympics -Sergei Eisenstein -CNN -Montgomery County Public Schools -Wilder Penfield -Prince William -Winter Olympics -Grammys 2018 -Trey Gowdy -Virginia Woolf -Government shutdown 2018 -What Time Is The Super Bowl -Elizabeth Blackwell -Altered Carbon -Altered Carbon -What Time Is The Super Bowl -What Time Is The Super Bowl -Valentines Day -Royal Rumble 2018 -Justin Timberlake -Grammys 2018 -Virginia Woolf -National Pizza Day -Virginia Woolf -Elizabeth Blackwell -Dwyane Wade -Winter Olympics -Paula Modersohn-Becker -Mark Salling -Solo Trailer -What Time Is The Super Bowl -OKC Thunder -Jason Kelce -Uma Thurman -Super Bowl 2018 -Paula Modersohn-Becker -Grammys 2018 -Vikings vs Eagles -Kate Upton -Grammys 2018 -Larry Nassar -Kim Cattrall -Super Bowl Commercials 2018 -Super Bowl 2018 -Kylie Jenner -Best Superbowl Commercials 2018 -Sergei Eisenstein -Super Bowl score -Juventus -Virginia Woolf -Florida shooting -Sea of Thieves -Super Bowl 2018 -Kylie Jenner -Patriots -Winter Olympics -What Time Is The Super Bowl -Bitcoin Price -Virginia Woolf -Wilder Penfield -Adam Rippon -Olympic medal count -Jessica Chastain -Fortnite New Map -Sergei Eisenstein -BitConnect -Super Bowl score -Larry Nassar -Vikings Vs Eagles -Sergei Eisenstein -This Is Us -Nadal -Government Shutdown -Hope Hicks -Lari White -Carter G. Woodson -Florida shooting -Winter Olympics -Patriots -Alex Smith -Super Bowl score -Sergei Eisenstein -Rob Porter -Patriots -SpaceX -Mikaela Shiffrin -Wilder Penfield -Super Bowl 2018 -Wilder Penfield -Joe Kennedy -Did the Groundhog See His Shadow -tsunami -Royal Rumble 2018 -Call Me by Your Name -United States Of America Winter Olympics -Elizabeth Blackwell -Sergei Eisenstein -Greg Monroe -Emily Sweeney -Korea -Government shutdown -UFC 220 -Fredo Santana -Kentucky shooting -Adam Rippon -Sergei Eisenstein -Super Bowl 2018 -Joe Kennedy -Virginia Woolf -Justin Timberlake -Super Bowl score -Wilder Penfield -Virginia Woolf -curling -Government Shutdown -Alex Smith -Virginia Woolf -Kentucky shooting -Fredo Santana -Steven Tyler -Justin Timberlake -Elizabeth Blackwell -Jessica Chastain -Patriots -Blake Griffin -Elizabeth Blackwell -Shaun White -Florida shooting -Cavs -Elton John -When We First Met -Enzo Amore -Kesha -Matt Patricia -What Time Is The Super Bowl -Elizabeth Blackwell -Valentines Day -Paula Modersohn-Becker -Elizabeth Blackwell -Wilder Penfield -Oscar Nominations 2018 -Daniel Kaluuya -Oscar Nominations 2018 -Julie Ertz -Mark Salling -Florida shooting -Winter Olympics -Super Bowl Commercials 2018 -Paula Modersohn-Becker -What Time Is The Super Bowl -Incredibles 2 -Larry Nassar -Release The Memo -Wilder Penfield -LL Bean -Jennifer Aniston -Black Panther -Pro Bowl 2018 -Alaska earthquake -New England Patriots owner -Black Panther -Chipper Jones -SpaceX -Carter G. Woodson -Super Bowl 2018 -Groundhog Day 2018 -Altered Carbon -Did the Groundhog See His Shadow -Paula Modersohn-Becker -Virginia Woolf -Florida shooting -Oscar Nominations 2018 -Daryle Singletary -Government shutdown 2018 -New England Patriots owner -Carter G. Woodson -Tyler Hilinski -Elizabeth Blackwell -Nathan Chen -Anthony Davis -Esteban Loaiza -Alaska earthquake -Culture 2 -Hailee Steinfeld -Super Bowl 2018 -Uma Thurman -Sergei Eisenstein -Wilder Penfield -Virginia Woolf -Princess Eugenie -Chris Mazdzer -Government Shutdown -Government Shutdown Meaning -Harley Barber -LeBron James -Patriots -Shaun White -Adam Rippon -Russell Wilson -Super Bowl score -National Pizza Day -Super Bowl 2018 -Elizabeth Blackwell -Paula Modersohn-Becker -Obama portrait -Elizabeth Blackwell -Oscar Nominations 2018 -Kesha Grammy -Winter Olympics -Kim Kardashian -Josh McDaniels -Bitcoin Price -Groundhog Day 2018 -Super Bowl 2018 -Tom Petty -Lunar eclipse -Super Bowl Winners -Wilder Penfield -Kodak Black -Cavs -Mardi Gras 2018 -Elizabeth Blackwell -Best Superbowl Commercials 2018 -XFL -Government Shutdown -Patriots -Mark Salling -Super blue blood Moon -Super Bowl 2018 -School Closings -SpaceX -Fredo Santana -Langston Hughes -Tiger Woods -Super Bowl Commercials -Wilder Penfield -Sergei Eisenstein -Marlon Brando -Patti LuPone -Puppy Bowl 2018 -Paula Modersohn-Becker -Winter Olympics -Groundhog Day 2018 -Patriots -Patriots -Super Bowl 2018 -Winter Olympics -Wilder Penfield -Carter G. Woodson -SpaceX -Steve Wynn News -Elizabeth Blackwell -Kim Kardashian -Harley Barber -Carrie Underwood -Fredo Santana -Kylie Jenner -Carter G. Woodson -Carter G. Woodson -Justin Timberlake -Carter G. Woodson -Kelly Clark -Fredo Santana -Florida shooting -Winter Olympics -Elizabeth Blackwell -Jacob Copeland -Winter Olympics -Carter G. Woodson -New England Patriots owner -Sergei Eisenstein -Sergei Eisenstein -Memo -Florida shooting -Obama portrait -Sergei Eisenstein -XFL -Winter Olympics -SpaceX -Super Bowl score -Elizabeth Blackwell -Patriots -Super Bowl score -Deadpool 2 -National Pizza Day -Larry Nassar -Doomsday Clock -Elton John -Did the Groundhog See His Shadow -Sergei Eisenstein -SpaceX -Virginia Woolf -Tara Lipinski -Wilder Penfield -Kesha Grammy -Rachel Brand -Patriots -Super Bowl 2018 -Winter Olympics -Devin Nunes -Outback Steakhouse -Virginia Woolf -Cloverfield Paradox -Tessa Virtue -Grey's Anatomy -School Closings -Solo Trailer -Virginia Woolf -Carter G. Woodson -Tom Petty -Justin Timberlake -Google Classroom -Solo Trailer -Shiffrin -Grammys 2018 -Mark Salling -Super Bowl 2018 -Vikings Vs Eagles -Government Shutdown -Elizabeth Blackwell -Super Bowl 2018 -Blue Moon -Virginia Woolf -Tonga -Alex Smith -Derrick Rose -Kim Kardashian -Stock Market Crash Today -Super Bowl score -Solo Trailer -Florida shooting -Greg Monroe -Google docs -JUUL -Wilder Penfield -New California -SpaceX -Florida shooting -Larry Nassar -Dwyane Wade -This Is Us -Mark Salling -Sergei Eisenstein -Larry Nassar -Justin Timberlake -Cavs -Elizabeth Blackwell -Sergei Eisenstein -Groundhog Day 2018 -Shaun White -Super Bowl 2018 -Black Panther -Winter Olympics -Paula Modersohn-Becker -Patriots -Jason Kelce -Carter G. Woodson -Super Bowl score -Grammys 2018 -Obama portrait -Paula Modersohn-Becker -Super Bowl 2018 -Super Bowl score -Cavs -Winter Olympics -Solo Trailer -Kylie Jenner Baby Girl -Jason Kidd -Blake Griffin -Solo Trailer -What Time Is The Super Bowl -Celebrity Big Brother cast -Kesha -Paula Modersohn-Becker -What Time Is The Super Bowl -What Time Is The Super Bowl -Super Bowl 2018 -Justin Timberlake -Justin Timberlake -What Time Is The Super Bowl -Winter Olympics -Patriots -Wilder Penfield -Government Shutdown Meaning -Paula Modersohn-Becker -Winter Olympics -Wilder Penfield -Meteor -Lakers -Blake Griffin -Joe Kennedy -This Is Us -Larry Nassar -Elizabeth Blackwell -Justin Timberlake -Royal Rumble 2018 -New England Patriots owner -Winter Olympics -What Time Is The Super Bowl -Carter G. Woodson -Elizabeth Blackwell -Eli Manning -Tom Petty -Larry Nassar -Grammys 2018 -SpaceX -Super Bowl 2018 -Carter G. Woodson -Devin Nunes -Peter Rabbit -Larry Nassar -State of the Union -Virginia Woolf -Luke Wilson -UFC 220 -Aaron Feis -Super Bowl 2018 -Obama portrait -Winchester -Super Bowl 2018 -Kentucky shooting -tsunami -Lunar eclipse -Kylie Jenner -Mark Salling -Super blue blood Moon -Waco -Paula Modersohn-Becker -Winter Olympics -Jessica Chastain -Larry Nassar -Lady Gaga -Grey's Anatomy -Stock Market Crash Today -Sergei Eisenstein -Elizabeth Blackwell -State of the Union -Sharon Stone -Wilder Penfield -Carter G. Woodson -Government Shutdown -Did the Groundhog See His Shadow -Joel Taylor -Wilder Penfield -SpaceX -Black Panther -Super Bowl 2018 -Vikings Vs Eagles -Virginia Woolf -Florida shooting -Elizabeth Blackwell -Super Bowl score -Grammys 2018 -Farmers Insurance Open 2018 -Joe Kennedy -Chief Wahoo -Super Bowl 2018 -Deadpool 2 -Wilder Penfield -Sergei Eisenstein -Wilder Penfield -Wilder Penfield -New England Patriots owner -Elton John -Jennifer Aniston -Virginia Woolf -Government Shutdown -Shaun White -Joe Kennedy -Wilder Penfield -Cherry Seaborn -SAG Awards 2018 -Winter Olympics -Florida shooting -School Closings -What Time Is The Super Bowl -Friends movie -Florida shooting -Riverdale -Dow Jones -Netflix Stock -Presidents Day 2018 -Super Bowl 2018 -Patriots -Kylie Jenner -Larry Nassar -Prince William -Rob Delaney -Government Shutdown Meaning -Vikings Vs Eagles -Blake Griffin -Shaun White -Florida shooting -Florida shooting -Super Bowl 2018 -Paula Modersohn-Becker -Super Bowl 2018 -Peter Rabbit -Will Ferrell -Fredo Santana -Super Bowl score -Happy Valentines Day -Kentucky shooting -Grammys 2018 -Justin Timberlake -Paula Modersohn-Becker -Super blue blood Moon -Super Bowl 2018 -Valentines Day -Mark Salling -BitConnect -Sergei Eisenstein -Joe Kennedy -Mikaela Shiffrin -H&r Block -Pro Bowl 2018 -Cherry Seaborn -Wilder Penfield -Andrew Cunanan -Wilder Penfield -Super Bowl score -school closings -Super Bowl score -Paula Modersohn-Becker -Florida shooting -Johnny Weir -Sergei Eisenstein -Melania Trump -Patriots -Paula Modersohn-Becker -Winter Olympics -Super Bowl 2018 -Carter G. Woodson -Groundhog Day 2018 -Patriots -Sergei Eisenstein -Justin Timberlake -Nba All Star Draft -Ohio State basketball -SpaceX -Super blue blood Moon -Rasual Butler -SpaceX -Larry Nassar -Grammys 2018 -Wilder Penfield -Virginia Woolf -Edwin Jackson -Sergei Eisenstein -Paula Modersohn-Becker -Kylie Jenner -Patriots -Don Lemon -Joe Kennedy -Chris Long -Kylie Jenner -Virginia Woolf -Adam Rippon -Culture 2 -Shiffrin -Memo -Google docs -New England Patriots owner -Edwin Jackson -Paula Modersohn-Becker -Virginia Woolf -Patriots -Winter Olympics -Bitcoin Price -Blake Griffin Trade -Sergei Eisenstein -Super Bowl score -Jason Kelce -Wilder Penfield -Kylie Jenner -Wilder Penfield -Royal Rumble 2018 -Elizabeth Blackwell -Todd Haley -Elizabeth Blackwell -Winter Olympics -Super Bowl score -Brynn Cameron -Patriots -Super Bowl 2018 -What Time Is The Super Bowl -Justin Timberlake -New England Patriots owner -Shani Davis -Obama portrait -Elizabeth Blackwell -Super Bowl score -Kylie Jenner -Maddie Mastro -Dow Jones -Bob Dole -Patriots -UFC 220 -Chloe Kim -Groundhog Day 2018 -Jimmy Garoppolo -LeBron James -What Time Is The Super Bowl -Grammys 2018 -Winter Olympics -Chloe Kim -Carter G. Woodson -Johnny Weir -Justin Timberlake -Robert Wagner -Carter G. Woodson -Vikings Vs Eagles -Sergei Eisenstein -SpaceX -Super Bowl 2018 -Government Shutdown 2018 -Grammys 2018 -Kentucky shooting -Robert Wagner -Bitcoin Price -Sergei Eisenstein -Nathan Chen -John Mahoney -Super Bowl score -Sergei Eisenstein -Paula Modersohn-Becker -Government shutdown 2018 -Dow Jones -What Time Is The Super Bowl -Virginia Woolf -Lena Zawaideh -Kentucky shooting -Justin Timberlake -Steve Wynn -Harry Styles -Florida shooting -Kylie Jenner -What Time Is The Super Bowl -Elizabeth Blackwell -Sergei Eisenstein -Real Madrid -Super Bowl Commercials -Sergei Eisenstein -Government shutdown 2018 -Mavic Air -Fredo Santana -Virginia Woolf -Andrew McCabe -Winter Olympics -Valentines Day -Did the Groundhog See His Shadow -Vikings Vs Eagles -Fredo Santana -Jacob Copeland -Winter Olympics -Government Shutdown Meaning -Government Shutdown -Rasual Butler -Super Bowl 2018 -United States Of America Winter Olympics -Florida shooting -Dwyane Wade -Grammys 2018 -Florida shooting -State of the Union -Blake Griffin -Joel Taylor -Wilder Penfield -Altered Carbon -Natalie Wood -Eli Manning -Super blue blood Moon -Government Shutdown Meaning -Uma Thurman -Did the Groundhog See His Shadow -Florida shooting -Super Bowl score -Patriots -Government shutdown 2018 -Don Lemon -Super Bowl 2018 -Sergei Eisenstein -Sergei Eisenstein -Government Shutdown -Black Panther -Joe Kennedy -Elizabeth Blackwell -Happy Valentines Day -Mardi Gras 2018 -Zion Williamson -This Is Us -Robert Wagner -Bill Parcells -Grammys 2018 -Elizabeth Blackwell -Larry Nassar -Government Shutdown -Carter G. Woodson -SpaceX -Sergei Eisenstein -Patriots -Blake Griffin -Sergei Eisenstein -United States Of America Winter Olympics -Winter Olympics -Kirstjen Nielsen -Chief Wahoo -Paula Modersohn-Becker -Super Bowl 2018 -Ash Wednesday -Florida shooting -Winter Olympics -Virginia Woolf -Super Bowl 2018 -Super Bowl score -Paula Modersohn-Becker -Bruno Mars -Paula Modersohn-Becker -Wilder Penfield -Wilder Penfield -Valentines Day Images -Patriots -Super Bowl score -UFC 220 -Blake Griffin -What Time Is The Super Bowl -Lady Doritos -Vikings vs Eagles -Tammy Duckworth -Vic Damone -UFC 220 -Wilder Penfield -Wilder Penfield -Memo -Olympic medal count -CNN -Florida shooting -NBA Trades -Carter G. Woodson -Wilder Penfield -Zion Williamson -Government shutdown -Shaun White -Winter Olympics -Black Panther -Obama portrait -Rodney Hood -Blake Griffin -Michigan State -Virginia Woolf -Reg E Cathey -Patriots -Carter G. Woodson -Virginia Woolf -Super Bowl score -Happy Valentines Day -Kim Kardashian -Winter Olympics -Isaiah Thomas -Justin Timberlake -Super Bowl score -Grammys 2018 -Wilder Penfield -Winter Olympics -Winter Olympics -National Pizza Day -Wilder Penfield -Elizabeth Blackwell -12 Strong -Grammys 2018 -Meteor -Super Bowl score -Cloverfield Paradox -Sergei Eisenstein -Chinese New Year 2018 -Cryptocurrency News -Forever My Girl -Cavs -Black Panther -Black Panther -Wilder Penfield -Black Panther -Ash Wednesday -Wilder Penfield -Super Bowl score -Super Bowl 2018 -Winter Olympics -Justin Timberlake -SAG Awards 2018 -Super Bowl 2018 -Fifty Shades Freed -Carter G. Woodson -Florida shooting -Winter Olympics -Carter G. Woodson -Did the Groundhog See His Shadow -Steve Mcnair -Black Panther -Nba All Star Draft -Wilder Penfield -Patriots -Super Bowl Commercials 2018 -Elizabeth Blackwell -Winter Olympics -Carter G. Woodson -Chris Paul -Kylie Jenner -Super Bowl 2018 -Super Bowl score -SAG Awards 2018 -SZA -Elizabeth Blackwell -Alex Smith -tsunami -stock market -Sergei Eisenstein -Paula Modersohn-Becker -SpaceX -Florida shooting -Timor Leste -Chinese New Year 2018 -Kylie Jenner -Julie Ertz -Happy Valentines Day -Dow Jones -Lari White -Florida shooting -Kylie Jenner Baby Girl -Trump State of the Union -Puppy Bowl 2018 -Samson -Sergei Eisenstein -Elizabeth Blackwell -calculator -Patriots -Dwyane Wade -Super Bowl score -Florida shooting -Super Bowl 2018 -Virginia Woolf -Edwin Jackson -Stan Lee -Black Panther -UFC 220 -Government Shutdown 2018 -Justin Timberlake -Paula Modersohn-Becker -Mcdonald's -Elizabeth Blackwell -Justin Timberlake -Camila Cabello -Celebrity Big Brother cast -Carter G. Woodson -Winter Olympics -What Time Is The Super Bowl -This Is Us -Winter Olympics -Elizabeth Blackwell -Sergei Eisenstein -Wilder Penfield -Google Drive -Paula Modersohn-Becker -Aliona Savchenko -Paula Modersohn-Becker -Elizabeth Blackwell -Peter Rabbit -Winter Olympics -Carter G. Woodson -Patriots -Dow Jones -Florida shooting -Super Bowl score -Release The Memo -Virginia Woolf -Justin Timberlake -Royal Rumble 2018 -State of the Union -Paula Modersohn-Becker -Carter G. Woodson -Carter G. Woodson -Super Bowl Commercials 2018 -Olympics 2018 -Government Shutdown -Sergei Eisenstein -Patriots -Ash Wednesday -Paula Modersohn-Becker -Elon Musk -Patriots -Meteor -school closings -This Is Us -Fifty Shades Freed -Elizabeth Blackwell -Call Me by Your Name -Virginia Woolf -Virginia Woolf -Elizabeth Blackwell -Winter Olympics -Patriots -Super blue blood Moon -Patriots -Government Shutdown -Dow Jones -Patriots -Sergei Eisenstein -Kentucky shooting -Pro Bowl 2018 -Happy Valentines Day -Sergei Eisenstein -Tammy Duckworth -SAG Awards 2018 -Patriots -Patriots -Shaun White -SpaceX -Ellen DeGeneres -Paula Modersohn-Becker -Justin Timberlake -Winter Olympics -Groundhog Day 2018 -Google Classroom -calculator -Happy Valentines Day -Winter Olympics -Obama portrait -Vikings Vs Eagles -Katie Couric -Kylie Jenner -CNN -Oscar Nominations 2018 -Paula Modersohn-Becker -Luke Wilson -Quentin Tarantino -Sergei Eisenstein -calculator -Wilder Penfield -Kylie Jenner Baby Girl -Kylie Jenner -Florida shooting -Virginia Woolf -Scott Baio -Sergei Eisenstein -Paula Modersohn-Becker -Dwyane Wade -Justin Timberlake -New England Patriots owner -Super Blue Blood Moon -Russell Wilson -Peter Rabbit -Carter G. Woodson -Patriots -Super Bowl 2018 -Super Bowl 2018 -Florida shooting -Sergei Eisenstein -Johnny Weir -Aaliyah -Jennifer Aniston -Did the Groundhog See His Shadow -Super Bowl 2018 -Winter Olympics -Government Shutdown Meaning -Carter G. Woodson -Larry Nassar -Elizabeth Blackwell -The Home Depot -Carter G. Woodson -Super Bowl 2018 -Isaiah Canaan -Terrell Owens -NFC Championship Game 2018 -Wilder Penfield -What Time Is The Super Bowl -Wilder Penfield -Alex Smith -Women's March 2018 -Carter G. Woodson -Rasual Butler -Super Bowl 2018 -Amy Schumer -Andrew Cunanan -Mardi Gras 2018 -Cherry Seaborn -Patriots -Happy Valentines Day -Government Shutdown -Shiffrin -Elizabeth Blackwell -Eli Manning -Robert Wagner -NFL Honors -Bitcoin Price -Wilder Penfield -Sergei Eisenstein -Patriots -Sea Of Thieves -Florida shooting -Super Bowl 2018 -Tammy Duckworth -Memo -Patriots -Jason Kidd -Despacito -Super blue blood Moon -Justin Timberlake -Virginia Woolf -Kim Kardashian -Memo -Turpin -XFL -Montreal Cognitive Assessment -Patriots -Elizabeth Blackwell -Chloe Kim Snowboarder -Florida shooting -Walter Payton -NBA Trades -Sergei Eisenstein -Elizabeth Blackwell -Forever My Girl -Columbine -Wilder Penfield -Dow Jones -Omarosa -Groundhog Day 2018 -Mikaela Shiffrin -Kim Kardashian -Stormi -Florida shooting -Jason Kelce -Blood Moon -Oscar Nominations 2018 -Natalie Wood -Justin Timberlake -Patriots -Justin Timberlake -Larry Nassar -Sergei Eisenstein -Hope Hicks -Virginia Woolf -Rose McGowan -Larry Nassar -Jennifer Aniston -Mexico Vs Bosnia -Winter Olympics -Elizabeth Blackwell -Carl Higbie -Real Madrid -Royal Rumble 2018 -Government Shutdown Meaning -Chinese New Year 2018 -Patriots -Winter Olympics -Florida shooting -Jason Kidd -Patti LuPone -Virginia Woolf -Winter Olympics -SAG Awards 2018 -Adam Rippon -Dow Jones -Patti LuPone -Black Panther -Cloverfield Paradox -Super Bowl 2018 -Super Bowl 2018 -Elizabeth Blackwell -Shaun White -Government Shutdown -Government Shutdown -Super Bowl 2018 -Elizabeth Blackwell -Virginia Woolf -Classroom -Sergei Eisenstein -Carter G. Woodson -Utah Jazz -Johnny Weir -Adam Rippon -Lakers -Grammys 2018 -Lindsey Vonn -Jamie Anderson -Winter Olympics -Friends movie -Justin Timberlake -Virginia Woolf -Trey Gowdy -Grammys 2018 -Paula Modersohn-Becker -Kylie Jenner -This Is Us -Kylie Jenner Baby Girl -Groundhog Day 2018 -Wilder Penfield -Lady Bird -Norovirus -What Time Is The Super Bowl -Winter Olympics -Valentines Day -James Harden -Daryle Singletary -Toys R Us -Paula Modersohn-Becker -Winter Olympics -Kentucky shooting -Government Shutdown -Paula Modersohn-Becker -Fredo Santana -Virginia Woolf -Dow Jones -Justin Timberlake -NBA Trades -Wilder Penfield -Wilder Penfield -Slender Man -State of the Union -Patriots -Did the Groundhog See His Shadow -Memo -Columbine -Culture 2 -Did the Groundhog See His Shadow -New England Patriots owner -XFL -Super Bowl score -Tiger Woods -NSA -Cherry Seaborn -Winter Olympics -Mikaela Shiffrin -Reg E Cathey -Super Bowl 2018 -Patriots -Sergei Eisenstein -Virginia Woolf -State of the Union -What Time Is The Super Bowl -Carter G. Woodson -Quincy Jones -Super Bowl Commercials 2018 -Donald Trump Jr -Black Panther -earthquake -Oscar Nominations 2018 -CNN -State of the Union -Wilder Penfield -Vikings Vs Eagles -Scott Baio -Government shutdown 2018 -Vikings Vs Eagles -Johnny Weir -Cryptocurrency News -Chloe Kim -Larry Nassar -Super Bowl score -Super Bowl score -Red Gerard -Carter G. Woodson -Super Bowl score -Super Bowl score -Super Bowl score -SpaceX -Super Bowl 2018 -calculator -Black Panther -Elizabeth Blackwell -Sergei Eisenstein -Post Malone -Adam Rippon -Chicago West -Kylie Jenner -Justin Timberlake -Virginia Woolf -Altered Carbon -Super Bowl 2018 -Derrick Rose -Kristaps Porzingis -What Time Is The Super Bowl -Kesha -Paula Modersohn-Becker -Winter Olympics -Carter G. Woodson -Super Bowl 2018 -Dow Jones -Government Shutdown -Wilder Penfield -Grammys 2018 -Chicago Weather -SpaceX -State of the Union -Alaska earthquake -Abraham Lincoln -Obama portrait -Google docs -Carter G. Woodson -Government Shutdown -Early Man -Kesha Grammy -This Is Us -Fredo Santana -Winter Olympics -Super Bowl 2018 -Winter Olympics -Groundhog Day 2018 -Sergei Eisenstein -Vikings Vs Eagles -Adam Rippon -Lindsey Vonn -Justin Timberlake -Bob Dole -Elizabeth Blackwell -Joe Kennedy -Sandy Hook -Jennifer Aniston -Patriots -Alex Reimer -Elizabeth Blackwell -Patriots -Elizabeth Blackwell -Peter Rabbit -Altered Carbon -Cavs -Call Me by Your Name -Florida shooting -Justin Timberlake -Super Bowl 2018 -Super Bowl Winners -Patriots -Toys R Us -Memo -Government Shutdown -Super Bowl score -Eli Manning -Chloe Kim Snowboarder -Kesha -Alex Smith -What Time Is The Super Bowl -Government Shutdown -James Harden -Alaska earthquake -Michigan State -Paula Modersohn-Becker -Blake Griffin Trade -Virginia Woolf -Sergei Eisenstein -Johnny Weir -Super Bowl 2018 -Winter Olympics -Sergei Eisenstein -Elizabeth Blackwell -Patriots -Edwin Jackson -Wilder Penfield -Utah Jazz -Stormi -Paula Modersohn-Becker -Super Bowl 2018 -Patriots -Sergei Eisenstein -Aaron Feis -Did the Groundhog See His Shadow -Winter Olympics -Paula Modersohn-Becker -Wilder Penfield -Black Panther -Carrie Underwood -Winter Olympics -Pink -Josh McDaniels -Lari White -Snap Stock -Kesha Grammy -Snapchat Update -This Is Us -Sergei Eisenstein -Winter Olympics -Happy Valentines Day -Super Bowl score -Grammys 2018 -Wilder Penfield -Mikaela Shiffrin -Super Bowl 2018 -Winter Olympics -Super Bowl 2018 -Jimmy Garoppolo -HomePod -School Closings -What Time Is The Super Bowl -Virginia Woolf -Devin Nunes -Winter Olympics -Carter G. Woodson -Obama portrait -Carter G. Woodson -Paula Modersohn-Becker -Happy Valentines Day -Tessa Virtue -Black Panther -Carter G. Woodson -Turpin -Alessia Cara -Dow Jones -SpaceX -Yu Darvish -Solo Trailer -Real Madrid -Patti LuPone -Dow Jones -Google Classroom -Patriots -Carter G. Woodson -Real Madrid -Shani Davis -Florida shooting -Mikaela Shiffrin -Pyeongchang 2018 Olympic Winter Games -Patriots -Otto Warmbier -Super Bowl score -Mark Salling -Andrew Cunanan -Super Blue Blood Moon -Melania Trump -Virginia Woolf -Carter G. Woodson -Football Playoffs 2018 -Google Classroom -Elizabeth Blackwell -Elizabeth Blackwell -Steven Tyler -Wilder Penfield -Florida shooting -Grammys 2018 -School Closings -Justin Timberlake -Wilder Penfield -SpaceX -Will Ferrell -National Pizza Day -SAG Awards 2018 -Patriots -Super Bowl score -Wilder Penfield -Government Shutdown -Mark Salling -Olympic Medal Count -SpaceX -Bitcoin Price -Florida shooting -Patriots -Elizabeth Blackwell -Isaiah Canaan -Winter Olympics -Jennifer Aniston -Super Bowl Commercials 2018 -Virginia Woolf -Florida shooting -Virginia Woolf -Sergei Eisenstein -NFC Championship Game 2018 -Super Bowl 2018 -Paula Modersohn-Becker -Patriots -Carter G. Woodson -Elizabeth Blackwell -What Time Is The Super Bowl -Paula Modersohn-Becker -Super Bowl 2018 -Wilder Penfield -slides -UFC 221 -UFC 221 -Elizabeth Blackwell -Memo -Trump State of the Union -Florida shooting -Super Bowl score -Amy Schumer -Carter G. Woodson -Paula Modersohn-Becker -Florida shooting -Government Shutdown -SpaceX -What Time Is The Super Bowl -calculator -What Time Is The Super Bowl -SpaceX -February -Carter G. Woodson -Cavs -Emily Sweeney -Carter G. Woodson -Pro Bowl 2018 -Florida shooting -LL Bean -Florida shooting -Wilder Penfield -Super blue blood Moon -Government shutdown 2018 -Esteban Loaiza -Carter G. Woodson -Sergei Eisenstein -Carter G. Woodson -Jennifer Aniston -Carter G. Woodson -earthquake -Justin Timberlake -Sergei Eisenstein -Paula Modersohn-Becker -Florida shooting -Justin Timberlake -Florida shooting -Yahoo Finance -Royal Rumble 2018 -Elizabeth Blackwell -Chris Stapleton -school closings -Shaun White -Terrell Owens -Winter Olympics -SpaceX -Esteban Loaiza -Super Bowl 2018 -Josh McDaniels -Carter G. Woodson -Valentines Day Images -Winter Olympics -Super Bowl 2018 -Super Bowl 2018 -Wilder Penfield -Winter Olympics -Super Bowl score -Luke Wilson -Sergei Eisenstein -Florida shooting -Nba All Star Draft -Dow Jones -Elizabeth Blackwell -Aliona Savchenko -Bitcoin Price -Grammys 2018 -Paula Modersohn-Becker -Wilder Penfield -Government Shutdown Meaning -New England Patriots owner -SpaceX -Elizabeth Blackwell -Trump State of the Union -Fifty Shades Freed -Matt Patricia -12 Strong -Chicago West -Super Bowl 2018 -Paula Modersohn-Becker -Adam Rippon -Sean Hannity -State of the Union -Sergei Eisenstein -Larry Nassar -Google Drive -Alex Smith -Virginia Woolf -Elon Musk -State of the Union -Cloverfield Paradox -UFC 220 -Carter G. Woodson -Virginia Woolf -Samson -Evgenia Medvedeva -Sarah Barthel -Super Bowl 2018 -Vikings Vs Eagles -Kylie Jenner -Super Bowl score -Andrew Cunanan -NBA Trades -Chinese New Year 2018 -Carter G. Woodson -Florida shooting -Terrell Owens -Elizabeth Blackwell -Super Bowl score -Carter G. Woodson -Tesla in space -Nba All Star Draft -Florida shooting -Florida shooting -Alison Brie -Super Bowl score -Virginia Woolf -Carter G. Woodson -Alex Smith -Larry Nassar -Black Panther -Sabrina Dhowre -Shaun White -Wonder Woman -Larry Nassar -Government Shutdown -Bitcoin Price -Wilder Penfield -Virginia Woolf -Kylie Jenner -Virginia Woolf -Mark Salling -Champions League -Super Bowl 2018 -Wilder Penfield -Johnny Weir -Wilder Penfield -Sergei Eisenstein -James Baldwin -This Is Us -Wilder Penfield -Sal Castro Middle School -Patriots -Happy Valentines Day -Mark Salling -Snapchat Update -Super Bowl Commercials 2018 -Jamie Dornan -XFL -Olympics 2018 -This Is Us -Mardi Gras 2018 -Elizabeth Blackwell -Super Bowl score -Jason Kelce -Carter G. Woodson -Royal Rumble 2018 -AR-15 -Carter G. Woodson -Natalie Portman -Super Bowl 2018 -Florida shooting -Super Bowl 2018 -Brynn Cameron -Adam Rippon -Tyler Hilinski -Sergei Eisenstein -school closings -School Closings -Elizabeth Blackwell -Winter Olympics -Rasual Butler -School Closings -Tiger Woods -SAG Awards 2018 -Snapchat Update -Sergei Eisenstein -Chloe Kim -Virginia Woolf -Pro Bowl 2018 -Hope Hicks -Vikings Vs Eagles -Elizabeth Blackwell -This Is Us -SAG Awards 2018 -Paula Modersohn-Becker -Florida shooting -stock market -Super Bowl score -Daryle Singletary -Super Bowl score -Cavs -Langston Hughes -Nascar Schedule -Drake -Super Bowl score -Virginia Woolf -Super Bowl Commercials 2018 -SpaceX -Happy Valentines Day -Oscar Nominations 2018 -Elizabeth Blackwell -Conor McGregor -Paula Modersohn-Becker -Vikings Vs Eagles -Sergei Eisenstein -Virginia Woolf -SpaceX -Elizabeth Blackwell -Roger Federer -Chinese New Year 2018 -Andrew Cunanan -Mikaela Shiffrin -Devin Nunes -Adam Rippon -Sergei Eisenstein -Simona Halep -calculator -Virginia Woolf -Happy Valentines Day -Mark Salling -Virginia Woolf -Paula Modersohn-Becker -MS13 -Paula Modersohn-Becker -New England Patriots owner -Wilder Penfield -Virginia Woolf -Wilder Penfield -Shaun White -Nathan Chen -Alex Reimer -Patriots -Super Bowl 2018 -Kim Kardashian -Patriots -Virginia Woolf -Patriots -Paula Modersohn-Becker -Lena Zawaideh -Dow Jones industrial average -Wilder Penfield -Sea Of Thieves -Josh McDaniels -Grammys 2018 -What Time Is The Super Bowl -Eli Manning -Government shutdown -Joe Kennedy -Winter Olympics -Patriots -Justin Timberlake -Alaska earthquake -Manchester United -Real Madrid -Kylie Jenner -Pink -Black Panther -Lil Pump -Paula Modersohn-Becker -Patriots -NHL All Star Game -Super Bowl score -calculator -The 15:17 to Paris -CNN -Florida shooting -Sergei Eisenstein -Carter G. Woodson -Grammys 2018 -Obama portrait -Kylie Jenner -Enzo Amore -Super Bowl score -Chloe Kim -Super Bowl score -Dwyane Wade -Did the Groundhog See His Shadow -LeBron James -Groundhog Day 2018 -Patriots -Paula Modersohn-Becker -Super Bowl Commercials 2018 -Scott Baio -Omarosa -Dow Jones -Nintendo Labo -Sergei Eisenstein -Blake Griffin -Florida shooting -Wilder Penfield -CBS Sports -Wilder Penfield -Grammys 2018 -Mardi Gras 2018 -Paula Modersohn-Becker -Virginia Woolf -Paula Modersohn-Becker -Dow Jones -Marlon Brando -Virginia Woolf -Carter G. Woodson -Valentines Day -Mark Salling -Winter Olympics -Larry Nassar -Justin Timberlake -SZA -Virginia Woolf -Wilder Penfield -Casey Affleck -Super Bowl score -Justin Timberlake -What Time Is The Super Bowl -Paula Modersohn-Becker -Virginia Woolf -SpaceX -Culture 2 -Paula Modersohn-Becker -Super Bowl 2018 -Wilder Penfield -Enzo Amore -SAG Awards 2018 -Patriots -Wilder Penfield -Aaron Feis -Sal Castro Middle School -Carter G. Woodson -Grammys 2018 -Lunar eclipse -Pro Bowl 2018 -Paula Modersohn-Becker -Super Bowl score -Celtics -Elizabeth Blackwell -Sergei Eisenstein -Justin Timberlake -Vikings Vs Eagles -Super Bowl 2018 -Carter G. Woodson -Sergei Eisenstein -Snapchat Update -Sergei Eisenstein -Uma Thurman -Super Bowl score -Carter G. Woodson -Grammys 2018 -Winter Olympics -Elizabeth Blackwell -Carter G. Woodson -Virginia Woolf -SpaceX -stock market -Google Classroom -NBA Trades -Super Bowl score -Kesha Grammy -SpaceX -National Pizza Day -Vikings vs Eagles -Google Classroom -Pro Bowl 2018 -SAG Awards 2018 -Virginia Woolf -Otto Warmbier -Chris Fischer -Ash Wednesday -Virginia Woolf -LeBron James -Meteor -Patriots -Winter Olympics -Fredo Santana -SpaceX -Sergei Eisenstein -Daryle Singletary -Tom Petty -Vikings Vs Eagles -Justin Timberlake -Paula Modersohn-Becker -Chloe Kim -Government Shutdown Meaning -Government shutdown -Larry Nassar -Super Bowl score -Super Bowl 2018 -Government Shutdown -Cavs -Bitcoin Price -Wilder Penfield -Daryle Singletary -Government Shutdown -NHL All Star Game -Government shutdown -Carter G. Woodson -Patriots -Patriots -Elizabeth Blackwell -Florida shooting -Winter Olympics -Classroom -Virginia Woolf -Paula Modersohn-Becker -Solo Trailer -Super Bowl score -Josh McDaniels -NBA Trades -Patriots -Justin Timberlake -Jennifer Aniston -Wilder Penfield -Winter Olympics -Justin Timberlake -Winter Olympics -The 15:17 to Paris -Super blue blood Moon -Shaun White -Larry Nassar -Florida shooting -Oscar Nominations 2018 -XFL -Elizabeth Blackwell -Olive Garden -Zion Williamson -Isaiah Thomas -Sergei Eisenstein -Florida shooting -SpaceX -Bitcoin Price -Government shutdown 2018 -Kylie Jenner -Dow Jones -Virginia Woolf -Omarosa -Duke Basketball -NBA Trades -CNN -Don Lemon -Bitcoin Price -Government Shutdown -Virginia Woolf -Groundhog Day 2018 -State of the Union -Black Panther -Vikings Vs Eagles -Paula Modersohn-Becker -Sergei Eisenstein -Elizabeth Blackwell -Kim Kardashian -Carter G. Woodson -Justin Timberlake -Winter Olympics -Alaska earthquake -Wilder Penfield -Did the Groundhog See His Shadow -Florida shooting -Super Bowl score -Sergei Eisenstein -Lonzo Ball -Mark Salling -Dow Jones -Florida shooting -Government shutdown 2018 -Adam Rippon -Alaska earthquake -SAG Awards 2018 -Wilder Penfield -Paula Modersohn-Becker -Florida shooting -Mark Salling -Dow Jones -Elizabeth Blackwell -Super Bowl Commercials 2018 -Winter Olympics -Government Shutdown -Ellen Pompeo -Larry Nassar -Paula Modersohn-Becker -Virginia Woolf -Stock Market Crash Today -Wilder Penfield -Paragon -Sergei Eisenstein -Patriots -Daryle Singletary -SpaceX -Larry Nassar -stock market -Carter G. Woodson -Patti LuPone -Eli Manning -Tom Brady -Virginia Woolf -Virginia Woolf -calculator -Super Bowl score -Elizabeth Blackwell -Dragon Ball Super -Paula Modersohn-Becker -Virginia Woolf -Dow Jones -Super blue blood Moon -Winter Olympics -What Time Is The Super Bowl -Oscar Nominations 2018 -Patriots -Kylie Jenner -Lunar eclipse -Grammys 2018 -Paula Modersohn-Becker -Paula Modersohn-Becker -Government Shutdown 2018 -Mardi Gras 2018 -Government Shutdown 2018 -Elizabeth Blackwell -Super Bowl 2018 -Paula Modersohn-Becker -Kim Kardashian -Chloe Kim -Kentucky shooting -Bob Marley -Michelle Obama -Government shutdown -Johnny Weir -Patriots -Government Shutdown -Super Bowl score -Black Lightning -Homeland -Winter Olympics -Sergei Eisenstein -SpaceX -Google docs -Elton John tickets -Carter G. Woodson -Cavs -Virginia Woolf -Super Bowl 2018 -Celtics -Pro Bowl 2018 -Alex Smith -Wilder Penfield -Royal Rumble 2018 -SAG Awards 2018 -Grammys 2018 -Chloe Kim -Super Bowl 2018 -Virginia Woolf -Super Bowl score -Florida shooting -Lunar eclipse -School Closings -Eli Manning -Government Shutdown -Groundhog Day 2018 -Frederick Douglass -Patriots -NBA Trades -Vikings Vs Eagles -Alex Reimer -Elizabeth Blackwell -Carter G. Woodson -Sarah Barthel -Virginia Woolf -Deadpool 2 -Meteor -Justin Timberlake -SpaceX -Josh McDaniels -Red Gerard -Kylie Jenner -Ellen DeGeneres -Paula Modersohn-Becker -Kylie Jenner -Paula Modersohn-Becker -Wilder Penfield -Patriots -Mikaela Shiffrin -Scott Baio -Super Bowl score -What Time Is The Super Bowl -Kentucky shooting -Ash Wednesday -Super Bowl 2018 -Brynn Cameron -Florida shooting -Elton John -Winter Olympics -Wilder Penfield -Elizabeth Blackwell -Wilder Penfield -Groundhog Day 2018 -Rachel Brand -Google Classroom -Adam Rippon -Super Bowl Commercials 2018 -Super blue blood Moon -Super Blue Blood Moon -Tom Petty -SpaceX -State of the Union -Oscar Nominations 2018 -Florida shooting -Carter G. Woodson -New England Patriots owner -Royal Rumble 2018 -Quincy Jones -Larry Nassar -Danielle Herrington -Winter Olympics -Jennifer Aniston -Florida shooting -government shutdown -Jennifer Aniston -Carter G. Woodson -Government Shutdown -Carter G. Woodson -Ash Wednesday -Friends The Movie 2018 -Mark Salling -Super Bowl score -Super Bowl Commercials -Super Bowl score -Dow Jones -Valentines Day -Virginia Woolf -Virginia Woolf -Luke Wilson -Toys R Us -What Time Is The Super Bowl -Grammys 2018 -Cavs -Happy Valentines Day -Kim Kardashian -Government Shutdown -Forever My Girl -Oscar Nominations 2018 -Jason Kelce -Carter G. Woodson -Super Bowl score -Patriots -Bruno Mars -Cavs -Sergei Eisenstein -Carter G. Woodson -Despacito -SpaceX -Steven Tyler -Super Bowl score -Andrew Cunanan -Paula Modersohn-Becker -Immaculate Conception -Super Bowl Commercials 2018 -Winter Olympics -Cavs -Florida shooting -Zuleyka Rivera -Grammys 2018 -Blake Griffin -School Closings -Tom Brady daughter -Celtics -OKC Thunder -Winter Olympics -Super Bowl 2018 -Kim Cattrall -Sergei Eisenstein -Wilder Penfield -Mexico -Vikings Vs Eagles -Royal Rumble 2018 -Carter G. Woodson -SpaceX -School Closings -Super blue blood Moon -Mardi Gras 2018 -Carter G. Woodson -Super Bowl Winners -Larry Nassar -What Time Is The Super Bowl -stock market -Sergei Eisenstein -Forever My Girl -Super Bowl 2018 -Paula Modersohn-Becker -Monster Hunter World -Government Shutdown -Patriots -Terry Bradshaw -Cloverfield Paradox -Childish Gambino -School Closings -Outback Steakhouse -Tom Petty -Super Bowl Commercials 2018 -Paula Modersohn-Becker -Super Bowl 2018 -Florida shooting -Winter Olympics -Sergei Eisenstein -Patriots -Solo Trailer -New England Patriots owner -Paula Modersohn-Becker -Sergei Eisenstein -Kylie Jenner -Sergei Eisenstein -Virginia Woolf -Super Bowl score -Duke Basketball -Kylie Jenner -Virginia Woolf -Quentin Tarantino -Elizabeth Blackwell -Derrick Rose -Super Bowl 2018 -Winter Olympics -Celtics -State of the Union -Super Bowl score -Virginia Woolf -Blue Moon -Carter G. Woodson -Tom Petty -Sergei Eisenstein -Justin Timberlake -Groundhog Day 2018 -Elizabeth Blackwell -Carter G. Woodson -Super Bowl score -Celtics -Winter Olympics -Winter Olympics -Carrie Underwood -Greg Monroe -Elizabeth Blackwell -Ursula Le Guin -Super Bowl Commercials -Elton John -Elizabeth Blackwell -Virginia Woolf -Carter G. Woodson -Grammys 2018 -UFC 220 -Virginia Woolf -Paula Modersohn-Becker -Justin Timberlake -Paula Modersohn-Becker -John Mahoney -LeBron James -Justin Timberlake -Winter Olympics -Marlon Brando -Super Bowl score -Super Bowl score -Zion Williamson -Larry Nassar -Virginia Woolf -Super Bowl 2018 -Virginia Woolf -Wilder Penfield -Oscar Nominations 2018 -Florida shooting -Carter G. Woodson -Oscar Nominations 2018 -Ash Wednesday -Paula Modersohn-Becker -Super Blue Blood Moon -LeBron James -Grammys 2018 -Jamie Anderson -Call Me by Your Name -Virginia Woolf -Sergei Eisenstein -Olympic medal count -Super Bowl score -Virginia Woolf -Super Bowl 2018 -Deadpool 2 -Super Bowl 2018 -Memo -Did the Groundhog See His Shadow -Florida shooting -Florida shooting -Virginia Woolf -Wilder Penfield -Amy Schumer -All Star Weekend 2018 -Kylie Jenner -Alessia Cara -Shaun White -Government Shutdown -Carter G. Woodson -Florida shooting -Obama portrait -Elizabeth Blackwell -Virginia Woolf -Gregory Salcido -Black Panther -Carter G. Woodson -Dennis Edwards -Justin Timberlake -Purdue basketball -National Pizza Day -Zion Williamson -SAG Awards 2018 -Kylie Jenner -Mark E Smith -Joe Kennedy -Super blue blood Moon -Paula Modersohn-Becker -Florida shooting -Duke Basketball -Montreal Cognitive Assessment -Amy Schumer -Patriots -Government Shutdown 2018 -Virginia Woolf -Elizabeth Blackwell -Sergei Eisenstein -Adam Rippon -Winter Olympics -Carter G. Woodson -Shibutani -Black Panther -Johnny Weir -Google Drive -Patriots -Kesha -SpaceX -Chloe Kim -Best Superbowl Commercials 2018 -Justin Timberlake -Winter Olympics -Did the Groundhog See His Shadow -Paula Modersohn-Becker -Champions League -Kesha Grammy -Jacob Copeland -Patriots -Matt Patricia -NBA Trades -Mikaela Shiffrin -Super Bowl 2018 -Winter Olympics -Patriots -Larry Nassar -Sergei Eisenstein -Montreal Cognitive Assessment -Super blue blood Moon -Scott Baio -SpaceX -Virginia Woolf -Eli Manning -Wilder Penfield -Scott Baio -Ted Bundy -Rachel Brand -Super Bowl score -Ash Wednesday -Carter G. Woodson -Paula Modersohn-Becker -Andrew Cunanan -Cavs -Sal Castro Middle School -Super Bowl 2018 -Patriots -Happy Valentines Day -Sergei Eisenstein -Justin Timberlake -Quincy Jones -Vikings vs Eagles -CBS Sports -Anastasia Bryzgalova -Larry Nassar -State of the Union -Farmers Insurance Open 2018 -Jimmy Garoppolo -Chloe Kim -Paula Modersohn-Becker -Kylie Jenner -Patriots -Gods Plan -Florida shooting -Sergei Eisenstein -Jessica Chastain -XFL -Florida shooting -Winter Olympics -Larry Nassar -Paula Modersohn-Becker -Mitt Romney -Paula Modersohn-Becker -Cloverfield Paradox -Elizabeth Blackwell -What Time Is The Super Bowl -Carter G. Woodson -Nba All Star Draft -Sergei Eisenstein -Virginia Woolf -Larry Nassar -Elizabeth Blackwell -Google docs -Peter Rabbit -The 15:17 to Paris -CNN -Florida shooting -Wilder Penfield -Winter Olympics -Uma Thurman -Kentucky shooting -Houston Rockets -Justin Timberlake -Sergei Eisenstein -Carter G. Woodson -NFL Honors -Deadpool 2 -Bitcoin Price -Wilder Penfield -Tiger Woods -Isaiah Canaan -Mark Salling -Jason Momoa -Oscar Nominations 2018 -Blake Griffin -Sergei Eisenstein -Elizabeth Blackwell -Dow Jones -Winter Olympics -New California -Sergei Eisenstein -Super Bowl score -Woody Allen -SpaceX -Elizabeth Blackwell -Valentines Day -Black Panther -Paula Modersohn-Becker -Government Shutdown -Joe Kennedy -Shiffrin -Chicago West -Patriots -Best Superbowl Commercials 2018 -Florida shooting -SAG Awards 2018 -Devin Nunes -Winter Olympics -Super Bowl score -Patriots -Dwyane Wade -Winter Olympics -Sergei Eisenstein -Wilder Penfield -Valentines Day -SpaceX -Grammys 2018 -Patriots -NBA Trades -Jennifer Aniston -Andre the Giant -XFL -Meteor -Patriots -Super Bowl 2018 -Oscar Nominations 2018 -Super Bowl 2018 -Virginia Woolf -Elizabeth Blackwell -Elizabeth Blackwell -Eli Manning -Elizabeth Blackwell -Government Shutdown -Women's March 2018 -Larry Nassar -State of the Union -Hope Hicks -Sergei Eisenstein -Homeland -Kylie Jenner -Super Bowl 2018 -Elizabeth Blackwell -Sergei Eisenstein -Virginia Woolf -Groundhog Day 2018 -Shaun White -Florida shooting -Chicago West -Paula Modersohn-Becker -Sergei Eisenstein -UFC 220 -Florida shooting -Cavs -Virginia Woolf -Winter Olympics -Sergei Eisenstein -Stormi -Portia de Rossi -Cavs -Quincy Jones -Gus Kenworthy -Meteor -Paula Modersohn-Becker -Elizabeth Blackwell -Sergei Eisenstein -Florida shooting -Greg Monroe -Paula Modersohn-Becker -Super Bowl 2018 -Robert Wagner -Shaun White -Grammys 2018 -State of the Union -The 15:17 to Paris -Kodak Black -NBA Trades -Trayvon Martin -Carter G. Woodson -Justin Timberlake -Virginia Woolf -Turpin -Black Panther -Super Bowl 2017 -Winter Olympics -Trump State of the Union -Winter Olympics -Justin Timberlake -Eli Manning -John Mahoney -Sergei Eisenstein -Sergei Eisenstein -Chinese New Year 2018 -Virginia Woolf -Super Bowl score -Vikings vs Eagles -Elizabeth Blackwell -Paula Modersohn-Becker -Larry Nassar -Obama portrait -Alex Reimer -SpaceX -Elizabeth Blackwell -Ash Wednesday -Winter Olympics -Andrew Cunanan -Super Bowl 2018 -Fredo Santana -State of the Union -Virginia Woolf -Trump State of the Union -Did the Groundhog See His Shadow -Luke Wilson -Super Bowl score -Alex Smith -Paula Modersohn-Becker -Chicago West -Steve Mcnair -Wilder Penfield -Virginia Woolf -Patriots -Sergei Eisenstein -Sea of Thieves -Super Bowl Commercials 2018 -Wilder Penfield -Manchester United -Grammys 2018 -Elizabeth Blackwell -Dennis Edwards -Maddie Mastro -Shaun White -Scott Baio -Cloverfield Paradox -The 15:17 to Paris -Johnny Weir -Jacob Copeland -Government Shutdown -Blood Moon -Groundhog Day 2018 -Virginia Woolf -Virginia Woolf -Elizabeth Blackwell -Super Bowl score -Carter G. Woodson -Rasual Butler -Government shutdown 2018 -Jenna Morasca -Sergei Eisenstein -Groundhog Day 2018 -Solo Trailer -What Time Is The Super Bowl -Senior Bowl -Bellator 192 -Government shutdown 2018 -Wilder Penfield -Wilder Penfield -SpaceX -Edwin Jackson -Elizabeth Blackwell -Dow Jones -Patty Hearst -Nathan Chen -Super Bowl 2018 -Carter G. Woodson -Winter Olympics -Super Bowl 2018 -This Is Us -Sergei Eisenstein -Government Shutdown -Carter G. Woodson -Lena Zawaideh -Florida shooting -Oscar Nominations 2018 -Elizabeth Blackwell -Drake -Grammys 2018 -Oscar Nominations 2018 -Patti LuPone -Omarosa -Oar Olympics -Black Panther -Super Bowl 2018 -State of the Union -Carrie Underwood -Oscar Nominations 2018 -This is Us -Winter Olympics -Super Bowl score -What Time Is The Super Bowl -School closings -Black Panther -Obama portrait -Dow Jones -Paula Modersohn-Becker -Elizabeth Blackwell -Sergei Eisenstein -Duke basketball -State of the Union -Patriots -Patriots -NBA Trades -Fifty Shades Freed -Patriots -Paula Modersohn-Becker -VIX -SpaceX -SpaceX -Wilder Penfield -Justin Timberlake -Trump State of the Union -Valentines Day -Vikings Vs Eagles -Chipper Jones -Government Shutdown -Super Bowl score -Chris Mazdzer -Larry Nassar -Black Panther -earthquake -Kylie Jenner -Amy Schumer -Roger Federer -Kylie Jenner -Super Bowl score -Lakers -Justin Timberlake -Sergei Eisenstein -Super Bowl 2018 -Adam Rippon -Westerville Ohio -Sergei Eisenstein -New England Patriots owner -Grammys 2018 -Wilder Penfield -Patriots -Patriots -Elizabeth Blackwell -Grammys 2018 -Sergei Eisenstein -Fortnite New Map -Tom Brady daughter -SpaceX -Patriots -Larry Nassar -Super Bowl score -Wilder Penfield -Valentines Day -Mikaela Shiffrin -Larry Nassar -DeMarcus Cousins -Larry Nassar -Elizabeth Blackwell -Bitcoin Price -Paula Modersohn-Becker -slides -Patti LuPone -Justin Timberlake -Wilder Penfield -Grammys 2018 -Puppy Bowl 2018 -Shibutani -Friends movie -Super Blue Blood Moon -Justin Timberlake -Wilder Penfield -Happy Valentines Day -The 15:17 to Paris -Joe Kennedy -Super Bowl score -Mikaela Shiffrin -Happy Valentines Day -Elizabeth Blackwell -Groundhog Day 2018 -Chief Wahoo -Solo Trailer -Tiger Woods -Gigi Hadid -Ohio State basketball -Montgomery County Public Schools -Winter Olympics -Call Me by Your Name -Sergei Eisenstein -Andrew Cunanan -Kratom -Patriots -Alex Reimer -Florida shooting -Winter Olympics -New England Patriots owner -Super Bowl 2018 -Elizabeth Blackwell -Carter G. Woodson -Dragon Ball Super -SpaceX -Cloverfield Paradox -State of the Union -Isaiah Canaan -Chipper Jones -Mardi Gras 2018 -Sergei Eisenstein -Carter G. Woodson -Kylie Jenner -Super Bowl score -Florida shooting -Chicago West -Paula Modersohn-Becker -Mueller -Blake Griffin -Wilder Penfield -Greg Monroe -Super Bowl 2018 -Super Bowl 2018 -Virginia Woolf -Elizabeth Blackwell -Florida shooting -What Time Is The Super Bowl -Carter G. Woodson -What Time Is The Super Bowl -Simona Halep -Rasual Butler -Virginia Woolf -Valentines Day -Elizabeth Blackwell -Patriots -Florida shooting -Super Bowl 2018 -Chris Paul -Paula Modersohn-Becker -Despacito -Patriots -Virginia Woolf -What Time Is The Super Bowl -Patriots -Winter Olympics -Sergei Eisenstein -Celtics -Sergei Eisenstein -What Time Is The Super Bowl -Virginia Woolf -Paula Modersohn-Becker -Kylie Jenner -Winter Olympics -Olympic medal count -CNN -Lindsey Vonn -Brie Larson -What Time Is The Super Bowl -Florida shooting -Carter G. Woodson -Florida shooting -Blood Moon -Shiffrin -Oscar Nominations 2018 -Florida shooting -Paula Modersohn-Becker -Mitt Romney -Cory Booker -SpaceX -Zion Williamson -Government Shutdown -Edwin Jackson -Fredo Santana -Florida shooting -Winter Olympics -Patriots -Elizabeth Blackwell -Lonzo Ball -Super Bowl 2018 -Winter Olympics -Tiger Woods -Patriots -NSA -Robert Wagner -Wonder Woman -Elizabeth Blackwell -Elton John -Waco -Jason Kelce -Lunar eclipse -Grammys 2018 -Cavs -Super Bowl 2018 -Costco Wholesale -Florida shooting -Justin Timberlake -Get Out -Sergei Eisenstein -Memo -Sergei Eisenstein -Lena Zawaideh -Alex Smith -Winter Olympics -Robert Mueller -Memo -Virginia Woolf -Shaun White -Did the Groundhog See His Shadow -Olympic Medal Count -Russell Wilson -Bitcoin Price -Oscar Nominations 2018 -Lauren Davis -Super Bowl 2018 -Classroom -Government Shutdown -Elizabeth Blackwell -Katie Couric -Government shutdown -Florida shooting -Super Bowl score -Florida shooting -Quincy Jones -Virginia Woolf -Government Shutdown Meaning -Kentucky shooting -Patriots -Super Bowl 2018 -Virginia Woolf -Wilder Penfield -Halsey -John Mahoney -Google docs -Florida shooting -Justin Timberlake -Sergei Eisenstein -LeBron James -Wilder Penfield -XFL -Blake Griffin -Sergei Eisenstein -Paula Modersohn-Becker -Virginia Woolf -Florida shooting -Google Classroom -Pro Bowl 2018 -Puppy Bowl 2018 -Mark Salling -Black Lightning -Sergei Eisenstein -Dow Jones -Simona Halep -Elizabeth Blackwell -Justin Timberlake -Super Bowl score -Kristaps Porzingis -Omarosa -Florida shooting -NBA Trades -Justin Timberlake -Mardi Gras 2018 -This Is Us -Winter Olympics -Omarosa -Winter Olympics -Happy Valentines Day -Daniel Kaluuya -Winter Olympics -Kylie Jenner -Grammys 2018 -Spice Girls -Government Shutdown -State of the Union -Winchester -Winter Olympics -Detroit Lions -Florida shooting -Paula Modersohn-Becker -Florida shooting -New California -Kylie Jenner -calculator -Kylie Jenner Baby Girl -Groundhog Day 2018 -Oscar Nominations 2018 -Sergei Eisenstein -Kylie Jenner -What Time Is The Super Bowl -Elizabeth Blackwell -Lady Bird -Justin Timberlake -Kylie Jenner Baby Girl -Shaun White -Government Shutdown -Carter G. Woodson -Winter Olympics -Dow Jones -Super Bowl score -Uma Thurman -Patriots -Patriots -Super Bowl 2018 -Patriots -Patriots -Justin Timberlake -Oscar Nominations 2018 -Oscar Nominations 2018 -Super Bowl 2018 -Super Bowl score -Winter Olympics -Chinese New Year 2018 -Super Bowl 2018 -Dow Jones -Carter G. Woodson -State of the Union -Amy Schumer -Marlon Brando -Super Bowl 2018 -Vikings Vs Eagles -Justin Timberlake -Ash Wednesday -Kylie Jenner -Chloe Kim -Patriots -Kylie Jenner -SpaceX -Patriots -Alex Smith -Sting -Bitcoin Price -Government shutdown -Russell Wilson -Joe Kennedy -Paula Modersohn-Becker -Sergei Eisenstein -Royal Rumble 2018 -State of the Union -Black Panther -Tom Brady -Florida shooting -NBA Trades -NFL Honors -Cnbc -Kylie Jenner -Obama portrait -Patriots -Shaun White -Patriots -Korea -Virginia Woolf -Google docs -SpaceX -Women's March 2018 -Justin Timberlake -Carter G. Woodson -Women's March 2018 -Valentines Day -Ar 15 -Bitcoin Price -Super Bowl 2018 -SpaceX -XFL -NBA Trades -Sergei Eisenstein -Shaun White -Larry Nassar -Amazon Stock -Lunar eclipse -Toys R Us -Memo -Super blue blood Moon -Government Shutdown 2018 -Elon Musk -What Time Is The Super Bowl -Shaun White -Super Bowl score -Super Bowl 2018 -Kodak Black -UFC 220 -Celtics -Patriots -Tara Lipinski -Memo -Mikaela Shiffrin -Florida shooting -Super Bowl score -Patriots -Simona Halep -Virginia Woolf -Paula Modersohn-Becker -Super Bowl 2018 -Casey Affleck -Patriots -happy new year in Chinese -Paula Modersohn-Becker -Sergei Eisenstein -Sergei Eisenstein -Chinese New Year 2018 -Dane Cook -Carter G. Woodson -Vikings vs Eagles -Childish Gambino -Meteor -New England Patriots owner -Grammys 2018 -Super Bowl score -Paula Modersohn-Becker -Tomi Lahren -Vikings Vs Eagles -Oscar Nominations 2018 -Government Shutdown -Carter G. Woodson -Johnny Weir -Florida shooting -Patriots -Rachel Brand -Carter G. Woodson -Justin Timberlake -Nintendo Labo -Elizabeth Blackwell -Bitcoin Price -Kratom -Government Shutdown -Chicago Weather -Sergei Eisenstein -Elizabeth Blackwell -Kylie Jenner -Netflix Stock -Steve Mcnair -Elizabeth Blackwell -Jimmy Garoppolo -Kim Cattrall -What Time Is The Super Bowl -Paula Modersohn-Becker -Bill Paxton -Fredo Santana -Ohio State basketball -Paula Modersohn-Becker -Elton John -Julie Ertz -Carter G. Woodson -FC Barcelona -Grammys 2018 -Yahoo Finance -Jason Kelce -Virginia Woolf -Dua Lipa -Yu Darvish -Alex Smith -Lil Pump -Melania Trump -Steve Wynn -SpaceX -Super Bowl score -Sergei Eisenstein -What Time Is The Super Bowl -Elizabeth Blackwell -Justin Timberlake -Wilder Penfield -Wilder Penfield -Virginia Woolf -Wilder Penfield -Trey Gowdy -Florida shooting -Virginia Woolf -Government shutdown -Wilder Penfield -Carter G. Woodson -Sergei Eisenstein -Alaska earthquake -Olivia Culpo -Groundhog Day 2018 -calculator -Carter G. Woodson -Super Bowl score -Shaun White -Kylie Jenner -Carter G. Woodson -Super Bowl 2018 -Megan Barry -NBA Trades -Super Bowl score -Vikings Vs Eagles -Super Bowl 2018 -Joel Taylor -Apple stock -Virginia Woolf -Justin Timberlake -Super Blue Blood Moon -Super Bowl score -Florida shooting -Edwin Jackson -State of the Union -Shani Davis -Nintendo Labo -Dow Jones -Wilder Penfield -NBA Trades -Wilder Penfield -Elizabeth Blackwell -Elizabeth Blackwell -Memo -Paula Modersohn-Becker -Super Bowl score -Blue Moon -Elizabeth Blackwell -Elizabeth Blackwell -Carter G. Woodson -Earthquake -Super Bowl 2018 -Virginia Woolf -Elizabeth Blackwell -Super Bowl score -Solo Trailer -Classroom -Paula Modersohn-Becker -Kylie Jenner Baby Girl -Super Bowl Commercials 2018 -Paula Modersohn-Becker -Carter G. Woodson -Florida shooting -Larry Nassar -Carter G. Woodson -Carter G. Woodson -Kylie Jenner Baby Girl -State of the Union -Government shutdown -Florida shooting -Dwyane Wade -Wilder Penfield -Blake Griffin -Florida shooting -Super Bowl 2018 -Super Bowl Commercials 2018 -Carter G. Woodson -Sergei Eisenstein -Naya Rivera -Kylie Jenner -Pro Bowl 2018 -Mark Salling -Kylie Jenner Baby Girl -Carter G. Woodson -Kim Kardashian -Florida shooting -XFL -Netflix Stock -Florida shooting -Larry Nassar -Chinese New Year 2018 -Super Bowl 2018 -Larry Nassar -Joe Kennedy -State of the Union -What Time Is The Super Bowl -Sergei Eisenstein -Florida shooting -Patriots -Larry Nassar -Meteor -Kim Cattrall -Winter Olympics -Super Bowl 2018 -Emily Sweeney -Scott Baio -Senior Bowl -PlayStation Network -Google Drive -Carter G. Woodson -Paula Modersohn-Becker -Lena Zawaideh -Larry Nassar -Alessia Cara -Alaska earthquake -Carter G. Woodson -Super Bowl score -Blake Griffin -Kylie Jenner -Joshua Cooper Ramo -Fredo Santana -Sergei Eisenstein -Sergei Eisenstein -Winchester -Carter G. Woodson -Super Bowl 2018 -Rasual Butler -Paula Modersohn-Becker -Paula Modersohn-Becker -Sergei Eisenstein -Vincent Zhou -Florida shooting -What Time Is The Super Bowl -Paula Modersohn-Becker -Virginia Woolf -Luke Wilson -Vanessa Marcil -James Baldwin -Pro Bowl 2018 -What Time Is The Super Bowl -Super Bowl score -Trump State of the Union -Maddie Mastro -Florida shooting -Super Bowl 2018 -Mark Salling -What Time Is The Super Bowl -Elizabeth Blackwell -Fifty Shades Freed -Black Panther -Larry Nassar -Winter Olympics -Zion Williamson -Patriots -Carrie Underwood -Halsey -Wilder Penfield -Kylie Jenner -John Mahoney -Larry Nassar -Elizabeth Blackwell -Wilder Penfield -Virginia Woolf -Omarosa -Carter G. Woodson -This Is Us -Kentucky shooting -Virginia Woolf -Valentines Day Cards -Women's March 2018 -Senior Bowl -Edwin Jackson -Grammys 2018 -Grammys 2018 -Carter G. Woodson -Paula Modersohn-Becker -Shaun White -The 15:17 to Paris -Virginia Woolf -Super Bowl score -Carter G. Woodson -Super blue blood Moon -Wilder Penfield -This Is Us -Elon Musk -Super Bowl score -pissant -Florida shooting -What Time Is The Super Bowl -Mark Salling -fake news awards -Google Classroom -New England Patriots owner -Sergei Eisenstein -Super Bowl score -Florida shooting -Sergei Eisenstein -Oscar Nominations 2018 -Wilder Penfield -Tiger Woods -Super Bowl 2018 -Grammys 2018 -Get Out -Lil Pump -Cavs -Virginia Woolf -Robinhood -Zion Williamson -Elizabeth Blackwell -Winter Olympics -Classroom -Dennis Edwards -Kim Kardashian -Super Bowl score -Wilder Penfield -SpaceX -Virginia Woolf -Patriots -Joy Villa -Florida shooting -Super Bowl 2018 -Government Shutdown -Sandy Hook -Grammys 2018 -Elizabeth Blackwell -Dow Jones -United States Of America Winter Olympics -Winter Olympics -Grammys 2018 -Elizabeth Blackwell -Best Superbowl Commercials 2018 -Adam Rippon -Sergei Eisenstein -NBA Trades -Virginia Woolf -Alessia Cara -Sea of Thieves -Fifty Shades Freed -Grammys 2018 -Kentucky shooting -Sergei Eisenstein -Grammys 2018 -Sergei Eisenstein -Red Gerard -Super blue blood Moon -Super blue blood Moon -Virginia Woolf -Sal Castro Middle School -Nathan Chen -Tomi Lahren -Rodney Hood -What Time Is The Super Bowl -Robert Wagner -Government Shutdown -Justin Timberlake -Elizabeth Blackwell -Sergei Eisenstein -Duke Basketball -Super Bowl 2018 -Duke Basketball -Edwin Jackson -Super Bowl score -Fredo Santana -Super Bowl score -Monster Hunter World -Sergei Eisenstein -What Time Is The Super Bowl -Kim Kardashian -Super Bowl 2018 -Paula Modersohn-Becker -Virginia Woolf -Tyler Hilinski -Tom Petty -Super Bowl score -Chris Stapleton -Florida shooting -Virginia Woolf -Florida shooting -Lady Bird -Justin Timberlake -Earthquake Today -Robby Anderson -What Time Is The Super Bowl -Florida shooting -curling -Grammys 2018 -Robert Wagner -Super Bowl 2018 -This Is Us -Google Classroom -Grammys 2018 -Super Bowl 2018 -Wilder Penfield -Super Bowl 2018 -Adam Rippon -Virginia Woolf -Super Bowl score -Blake Griffin Trade -Super Bowl score -Alex Smith -Grammys 2018 -Shaun White -Carter G. Woodson -State of the Union -Amy Schumer -What Time Is The Super Bowl -Larry Nassar -Super Bowl score -Winter Olympics -Wilder Penfield -Winter Olympics -Childish Gambino -Virginia Woolf -Florida shooting -Super Bowl 2018 -Virginia Woolf -Wilder Penfield -Sergei Eisenstein -Florida shooting -Patriots -Kylie Jenner -Justin Timberlake -Paula Modersohn-Becker -Alessia Cara -CNN -Lunar eclipse -Wilder Penfield -SZA -Wilder Penfield -Bitcoin Price -Happy Valentines Day -Kylie Jenner -NBA Trades -Florida shooting -Carter G. Woodson -Rob Gronkowski -Paula Modersohn-Becker -Super Bowl score -Grammys 2018 -Edible Arrangements -What Time Is The Super Bowl -Black Panther -Den of Thieves -Dow Jones -Fredo Santana -Wilder Penfield -Elizabeth Blackwell -Carter G. Woodson -Ash Wednesday -Blake Griffin -Super blue blood Moon -Kylie Jenner -Winter Olympics -Jen Selter -Memo -Super Bowl score -Terrell Owens -Bitcoin Price -Florida shooting -Winter Olympics -Winter Olympics -Real Madrid -Isaiah Thomas -Elon Musk -Ash Wednesday -Alaska earthquake -Cavs -Dwyane Wade -Valentines Day -Larry Nassar -Mikaela Shiffrin -Sergei Eisenstein -Sergei Eisenstein -SAG Awards 2018 -This Is Us -Super Bowl score -Super Bowl 2018 -Black Panther -Steve Mcnair -Walter Payton -Adam Rippon -Grammys 2018 -Virginia Woolf -Super Bowl score -Patriots -Black Panther -Larry Nassar -What Time Is The Super Bowl -Get Out -Florida shooting -Winter Olympics -Obama portrait -Alex Smith -Super Bowl 2018 -Obama portrait -Super Bowl score -Carter G. Woodson -Winter Olympics -Sergei Eisenstein -This Is Us -Sergei Eisenstein -Elizabeth Blackwell -Olympic Medal Count -Mexico earthquake -Pro Bowl 2018 -Logan Paul -Justin Timberlake -Government Shutdown -Jennifer Aniston -Google Classroom -What Time Is The Super Bowl -Sergei Eisenstein -Adam Hicks -John Mahoney -Louise Linton -Mark Salling -Grammys 2018 -Did the Groundhog See His Shadow -Blood Moon -Wilder Penfield -Sergei Eisenstein -Groundhog Day 2018 -Joseph Haynes -Terrell Owens -Elizabeth Blackwell -Reg E Cathey -Wilder Penfield -Larry Nassar -Super Bowl 2018 -Kawhi Leonard -Super Bowl Winners -Super Bowl score -Once Upon a Time -Dwyane Wade -Wilder Penfield -Florida shooting -Mark Salling -stock market -Solo Trailer -Fredo Santana -Elizabeth Blackwell -Dua Lipa -Joe Kennedy -Mark Salling -earthquake today -Grammys 2018 -Super Bowl 2018 -Patriots -Trey Gowdy -Super Bowl 2018 -Paula Modersohn-Becker -Dow Jones -Super Bowl 2018 -Did the Groundhog See His Shadow -Wilder Penfield -Mardi Gras 2018 -Sergei Eisenstein -Bitcoin Price -Joe Kennedy -Elizabeth Blackwell -Wilder Penfield -Chris Long -Emily Sweeney -Carrie Underwood -Super Bowl score -Super Bowl Commercials 2018 -Ash Wednesday -Super blue blood Moon -Rasual Butler -Virginia Woolf -Super blue blood Moon -Vikings Vs Eagles -Jamie Anderson -Andrew Cunanan -Super blue blood Moon -Carter G. Woodson -Google Classroom -Super Bowl 2018 -Culture 2 -What Time Is The Super Bowl -Dow Jones -Olive Garden -Grammys 2018 -Larry Nassar -Super Bowl 2018 -Super Bowl score -Elizabeth Blackwell -Florida shooting -Elizabeth Blackwell -Larry Nassar -Elizabeth Blackwell -SpaceX -Florida shooting -Virginia Woolf -This Is Us -Jalen Ramsey -Super blue blood Moon -SpaceX -Florida shooting -Virginia Woolf -Mavic Air -Government shutdown -Don Lemon -Columbine -Patriots -Wilder Penfield -Super Bowl score -Super Bowl score -Groundhog Day 2018 -Virginia Woolf -Oscar Nominations 2018 -Den of Thieves -Justin Timberlake -Ash Wednesday -Wilder Penfield -Dow Jones -calculator -Nadal -Super Bowl score -Natalie Wood -Kim Kardashian -Virginia Woolf -Zion Williamson -Fredo Santana -Kim Kardashian -Kim Kardashian -Winter Olympics -Florida shooting -Paula Modersohn-Becker -Vikings Vs Eagles -Amazon Stock -Carter G. Woodson -Wilder Penfield -Florida shooting -Florida shooting -Kesha -Stock Market Crash Today -Shaun White -Chris Paul -Black Panther -Virginia Woolf -Paula Modersohn-Becker -Paula Modersohn-Becker -Ar 15 -Patriots -Carrie Underwood -Sergei Eisenstein -Super Bowl 2018 -Carter G. Woodson -Super Bowl score -Carter G. Woodson -Super Bowl score -Matt Patricia -Winter Olympics -Super Bowl score -Patriots -Government Shutdown -Super Bowl 2018 -What Time Is The Super Bowl -Wilder Penfield -Derrick Rose -Call Me by Your Name -Elizabeth Blackwell -Florida shooting -Chloe Kim -Super Blue Blood Moon -Real Madrid -Virginia Woolf -Hostiles -Larry Nassar -Government Shutdown -Carter G. Woodson -Virginia Woolf -Frank Reich -Alessia Cara -Black Panther -Justin Timberlake -Kentucky shooting -Nba All Star Draft -Wilder Penfield -Celebrity Big Brother cast -Super Bowl score -Virginia Woolf -SpaceX -Government Shutdown -What Time Is The Super Bowl -Patriots -Patriots -CNN -Elizabeth Blackwell -Rasual Butler -What Time Is The Super Bowl -Wilder Penfield -What Time Is The Super Bowl -Carter G. Woodson -SpaceX -Winter Olympics -Kesha Grammy -Mark Salling -Elizabeth Blackwell -Government Shutdown Meaning -lady gaga grammys -Winter Olympics -Super blue blood Moon -Valentines Day Images -Snapchat Update -NBA Trades -Vikings Vs Eagles -Chinese New Year 2018 -Quentin Tarantino -Florida shooting -12 Strong -Fifty Shades Freed -Dow Jones -Elton John -State of the Union -Bitcoin Price -Sergei Eisenstein -Cherry Seaborn -Super blue blood Moon -Super Bowl score -Winter Olympics -Grammys 2018 -Kentucky shooting -Groundhog Day 2018 -Black Panther -Government Shutdown -Bitcoin Price -Grammys 2018 -Winter Olympics -Caroline Wozniacki -Black Panther -What Time Is The Super Bowl -XFL -Dwyane Wade -Solo Trailer -Virginia Woolf -Government Shutdown -Super Bowl Commercials 2018 -Virginia Woolf -Carter G. Woodson -Wilder Penfield -Apolo Ohno -Kesha -Florida shooting -Lil Xan -Valentines Day -Royal Rumble 2018 -Winter Olympics -Super Bowl score -Justin Timberlake -Super Bowl 2018 -Adam Hicks -Wilder Penfield -Portia de Rossi -Wilder Penfield -Grammys 2018 -Elizabeth Blackwell -Shaun White -What Time Is The Super Bowl -Senior Bowl -Puppy Bowl 2018 -Valentines Day Images -Blood Moon -Memo -Hostiles -Super Bowl 2018 -Larry Nassar -Google Classroom -Super Bowl score -NBA Trades -Sergei Eisenstein -Kentucky shooting -Elizabeth Blackwell -Celebrity Big Brother cast -Edible Arrangements -Virginia Woolf -Larry Nassar -Justin Timberlake -SpaceX -Elizabeth Blackwell -Johnny Weir -Patriots -Florida shooting -Virginia Woolf -Super Bowl 2018 -fake news awards -PlayStation Network -Wilder Penfield -Sergei Eisenstein -Kim Kardashian -Lakers -earthquake -Drake -Carter G. Woodson -Fredo Santana -Kylie Jenner -Adam Rippon -This Is Us -Yahoo Finance -Justin Timberlake -Steve Mcnair -Government Shutdown Meaning -Mark Salling -UFC 220 -NHL All Star Game -Bill Belichick -Stormi -Jennifer Aniston -Rose McGowan -Oscar Nominations 2018 -Mcdonald's -Elizabeth Blackwell -Justin Timberlake -Florida shooting -Alex Smith -Winter Olympics -Amazon stock -Google docs -Women's March 2018 -Sergei Eisenstein -Elizabeth Blackwell -Kim Cattrall -Grammys 2018 -Super Bowl score -Terrell Owens -Ash Wednesday -Virginia Woolf -Wilder Penfield -State of the Union -LeBron James -Solo Trailer -Altered Carbon -Vikings Vs Eagles -Government Shutdown Meaning -Elizabeth Blackwell -Monster Hunter World -Sergei Eisenstein -Kim Kardashian -Government shutdown 2018 -Super blue blood Moon -Paula Modersohn-Becker -Kylie Jenner -Columbine Shooting -Fredo Santana -Amy Schumer -Florida shooting -Mark Salling -Kylie Jenner -SAG Awards 2018 -NBA Trades -Kylie Jenner -National Pizza Day -Alessia Cara -Sergei Eisenstein -Grammys 2018 -Patriots -Patriots -The 15:17 to Paris -Anastasia Bryzgalova -Elizabeth Blackwell -Wilder Penfield -Patriots -Wilder Penfield -Virginia Woolf -Justin Timberlake -Super Bowl Commercials 2018 -CNN -Florida shooting -What Time Is The Super Bowl -Terry Bradshaw -Red Gerard -Super Bowl score -Jimmy Garoppolo -Mark Salling -Blake Griffin -Winter Olympics -Government Shutdown Meaning -Super Bowl score -Dow Jones -Vikings Vs Eagles -Obama portrait -Super Bowl 2018 -NBA Trades -State of the Union -What Time Is The Super Bowl -Super Bowl score -Grammys 2018 -Grammys 2018 -Paula Modersohn-Becker -Alison Brie -Friends movie -Virginia Woolf -SpaceX -Elton John -Patriots -Virginia Woolf -Super Bowl score -Andrew Cunanan -UFC 220 -Valentines Day -Quincy Jones -Virginia Woolf -Sergei Eisenstein -Florida shooting -New England Patriots owner -Did the Groundhog See His Shadow -Solo Trailer -Den of Thieves -Rasual Butler -Jen Selter -Sergei Eisenstein -Paula Modersohn-Becker -Jenna Morasca -Joe Kennedy -SpaceX -SpaceX -Larry Nassar -Sergei Eisenstein -SpaceX -Andre the Giant -Tyler Hilinski -Winter Olympics -Super Bowl score -Super Bowl score -Super Bowl 2018 -Elizabeth Blackwell -Florida shooting -Elizabeth Blackwell -Patriots -SpaceX -Winter Olympics -State of the Union -Pro Bowl 2018 -Black Panther -Kylie Jenner -Super Bowl 2018 -Joshua Cooper Ramo -Mary And The Witch's Flower -stock market -CNN -Patriots -Mcdonald's -Drake -Mardi Gras 2018 -Obama portrait -Brynn Cameron -Ash Wednesday -Carter G. Woodson -Olive Garden -Meteor -Wilder Penfield -Google Classroom -Sergei Eisenstein -stock market -Sergei Eisenstein -Winter Olympics -What Time Is The Super Bowl -Super Bowl 2018 -Women's March 2018 -Kylie Jenner -Patriots -Winter Olympics -NHL All Star Game -Rasual Butler -Government Shutdown -United States Of America Winter Olympics -Virginia Woolf -Best Superbowl Commercials 2018 -SpaceX -Patriots -Larry Nassar -Royal Rumble 2018 -Olympic medal count -Natalie Wood -Patriots -SAG Awards 2018 -Grammys 2018 -NBA Trades -Justin Timberlake -What Time Is The Super Bowl -Patriots -State of the Union -Super Bowl 2018 -State of the Union -Sergei Eisenstein -Super Bowl score -Carter G. Woodson -Tyler Hilinski -Super Bowl 2018 -State of the Union -Larry Nassar -Elizabeth Blackwell -Shaun White -Vanessa Marcil -Wilder Penfield -Drive -Valentines Day -Winter Olympics -Government Shutdown -Celebrity Big Brother cast -earthquake today -Elizabeth Blackwell -Government shutdown 2018 -Blake Griffin -Patriots -Cavs -Sarah Barthel -Rose McGowan -Rasual Butler -Happy Valentines Day -Patriots -Sergei Eisenstein -Groundhog Day 2018 -Winter Olympics -Elton John -Florida shooting -Champions League -Super Bowl score -Andrew Cunanan -Groundhog Day 2018 -Wilder Penfield -Elizabeth Blackwell -12 Strong -Yu Darvish -Sergei Eisenstein -Oscar Nominations 2018 -What Time Is The Super Bowl -School Closings -Chris Stapleton -Super Bowl 2018 -Google docs -Valentines Day -Shaun White -Solo Trailer -Shaun White -Kristaps Porzingis -Justin Timberlake -Justin Timberlake -Super Bowl 2018 -Happy Valentines Day -Winter Olympics -State of the Union -Paula Modersohn-Becker -Winter Olympics -Justin Timberlake -Winter Olympics -Google docs -Winter Olympics -Jennifer Aniston -Isaiah Thomas -Sergei Eisenstein -Grammys 2018 -Black Panther -Elizabeth Blackwell -This Is Us -Super Bowl 2018 -Super Bowl score -Nancy Pelosi -Super Bowl Winners -Amy Schumer -Carter G. Woodson -Winter Olympics -Kim Kardashian -Grammys 2018 -Google docs -Andrew Cunanan -Justin Timberlake -SZA -Alaska earthquake -United States Of America Winter Olympics -Jennifer Aniston -Larry Nassar -State of the Union -State of the Union -Chloe Kim -Winter Olympics -Justin Timberlake -Virginia Woolf -Russell Wilson -Sergei Eisenstein -Atlanta Weather -Scandal -Elizabeth Blackwell -Justin Timberlake -Justin Timberlake -Adam Rippon -Adam Rippon -Florida shooting -Justin Timberlake -Paula Modersohn-Becker -Nathan Chen -NBC Sports -Sergei Eisenstein -Kylie Jenner -Paula Modersohn-Becker -Sergei Eisenstein -Oscar Nominations 2018 -State of the Union -Patriots -Government shutdown -Rasual Butler -Super Bowl 2018 -Wilder Penfield -Patti LuPone -Paula Modersohn-Becker -Rodney Hood -Larry Nassar -Alaska earthquake -Grammys 2018 -Vikings Vs Eagles -Larry Nassar -Winter Olympics -Joseph Haynes -Amazon Stock -Winter Olympics -Happy Valentines Day -SAG Awards 2018 -NSA -Real Madrid -Fortnite New Map -calculator -Carter G. Woodson -Kylie Jenner -Virginia Woolf -Grammys 2018 -Patti LuPone -Virginia Woolf -Frank Reich -Winter Olympics -Did the Groundhog See His Shadow -Joe Kennedy -Winter Olympics -New England Patriots owner -Patriots -school closings -Memo -Dow Jones -Carter G. Woodson -Super Bowl 2018 -CNN -Virginia Woolf -Carter G. Woodson -Winter Olympics -Carter G. Woodson -Sergei Eisenstein -Carter G. Woodson -Royal Rumble 2018 -Black Panther -Jason Kelce -Super Bowl 2018 -What Time Is The Super Bowl -Government shutdown 2018 -Joel Taylor -calculator -Aliona Savchenko -Virginia Woolf -Did the Groundhog See His Shadow -XFL -Winter Olympics -Government Shutdown Meaning -CNN -Rasual Butler -Scott Baio -Bitcoin Price -Kylie Jenner -Andrew Cunanan -Super Bowl score -Chicago Weather -Black Panther -NBA Trades -Childish Gambino -State of the Union -Virginia Woolf -Alex Smith -Virginia Woolf -Kesha Grammy -Blake Griffin -Virginia Woolf -Groundhog Day 2018 -Virginia Woolf -Grammys 2018 -Elizabeth Blackwell -Winter Olympics -Enzo Amore -Elizabeth Blackwell -Did the Groundhog See His Shadow -Carter G. Woodson -Luke Wilson -Kim Kardashian -Happy Valentines Day -Obama portrait -Valentines Day Cards -Kratom -Justin Timberlake -Zion Williamson -Earthquake Today -Carter G. Woodson -What Time Is The Super Bowl -Paula Modersohn-Becker -Virginia Woolf -Florida shooting -Super Bowl 2018 -Wilder Penfield -Government Shutdown -What Time Is The Super Bowl -Super Bowl score -Kylie Jenner -Nintendo Labo -Sergei Eisenstein -Quincy Jones -Super Bowl 2018 -Patti LuPone -Kesha Grammy -Steve Wynn -Olympic medal count -Super Bowl score -Winter Olympics -Dow Jones -Super blue blood Moon -Cloverfield Paradox -Virginia Woolf -Super Bowl 2018 -Dwyane Wade -Oar Olympics -Groundhog Day 2018 -Robby Anderson -Kylie Jenner Baby Girl -Kylie Jenner Baby Girl -Sergei Eisenstein -Google docs -Wilder Penfield -Portia de Rossi -Matt Patricia -Tyler Hilinski -This Is Us -Justin Timberlake -Super Bowl score -12 Strong -Super Bowl score -Dow Jones -Kesha Grammy -Childish Gambino -Winter Olympics -Luke Wilson -Lauren Davis -Wilder Penfield -Bitcoin Price -Vikings Vs Eagles -Wilder Penfield -Super Bowl score -Super Bowl 2018 -Andrew Cunanan -Edwin Jackson -Adam Schiff -Wilder Penfield -Fredo Santana -Phantom Thread -Larry Nassar -Johnny Weir -Kim Kardashian -Paula Modersohn-Becker -Roger Federer -Justin Timberlake -Portia de Rossi -Government Shutdown -Terrell Owens -Super Bowl score -Shaun White -Rasual Butler -Super Bowl score -Justin Timberlake -Florida shooting -Blue Moon -Google docs -Yahoo Finance -Winter Olympics -Shaun White -Adam Rippon -Wilder Penfield -Florida shooting -Patriots -Eli Manning -Juventus -Frank Reich -Juegos Olímpicos de Invierno 2018 -Wilder Penfield -Patti LuPone -Wilder Penfield -Kylie Jenner -Paula Modersohn-Becker -Tom Petty -Super Bowl 2018 -Obama portrait -Patriots -Wilder Penfield -Government Shutdown -New England Patriots owner -Super Bowl score -Elizabeth Blackwell -Best Superbowl Commercials 2018 -Winter Olympics -Super Bowl 2018 -Friends movie -Sting -SAG Awards 2018 -UFC 220 -Larry Nassar -NBA Trades -Groundhog Day 2018 -Carter G. Woodson -Kelly Clark -Winter Olympics -Shaun White -Rasual Butler -Michigan State -Paula Modersohn-Becker -Florida shooting -Paula Modersohn-Becker -Winter Olympics -Elizabeth Blackwell -DeMarcus Cousins -Kodak Black -Wilder Penfield -Rasual Butler -Virginia Woolf -Joe Kennedy -Royal Rumble 2018 -SpaceX -Chloe Kim -Winter Olympics -Patriots -Champions League -Lena Zawaideh -Chloe Kim -Paula Modersohn-Becker -Sergei Eisenstein -Winter Olympics -Grammys 2018 -Elizabeth Blackwell -Grammys 2018 -Paula Modersohn-Becker -UFC 221 -earthquake -Tom Petty -Netflix Stock -Elizabeth Blackwell -Trump State of the Union -Terrell Owens -Super Bowl 2018 -Atlanta Weather -Virginia Woolf -The Alienist -State of the Union -Carter G. Woodson -When We First Met -Edible Arrangements -Elizabeth Blackwell -Super Bowl score -Solo Trailer -Patriots -Winter Olympics -Super Bowl score -Sergei Eisenstein -Patriots -Kylie Jenner -Maze Runner: The Death Cure -Lindsey Vonn -Josh McDaniels -Winter Olympics -Super Bowl score -Grammys 2018 -Fifty Shades Freed -Luke Wilson -Super Bowl 2018 -Elizabeth Blackwell -Super blue blood Moon -Obama portrait -Otto Warmbier -Wilder Penfield -Government Shutdown -Ash Wednesday -Carter G. Woodson -Winter Olympics -UFC 220 -UFC 220 -Florida shooting -Elizabeth Blackwell -Tom Petty -Super Bowl Commercials 2018 -Super Bowl 2018 -Patriots -calculator -Sabrina Dhowre -Super Bowl 2018 -Lena Zawaideh -Paula Modersohn-Becker -Paula Modersohn-Becker -Carter G. Woodson -Super Bowl score -Kylie Jenner -Sergei Eisenstein -Sergei Eisenstein -Kylie Jenner -The First Purge -calculator -Royal Rumble 2018 -Government Shutdown -Winter Olympics -Wilder Penfield -Larry Nassar -Bitcoin Price -Justin Timberlake -Valentines Day Memes -Carter G. Woodson -Super Bowl 2018 -Carter G. Woodson -This Is Us -Larry Nassar -National Pizza Day -Wilder Penfield -Sergei Eisenstein -The Alienist -Carter G. Woodson -Florida shooting -Chloe Kim -Lonzo Ball -What Time Is The Super Bowl -Patriots -Black Panther -Wilder Penfield -Super Bowl score -Omarosa -Sergei Eisenstein -Vikings Vs Eagles -Rob Porter -All Star Weekend 2018 -Sergei Eisenstein -Super Bowl 2018 -Mark Salling -Stan Lee -NBA Trades -Ash Wednesday -Carter G. Woodson -Bitcoin Price -Charissa Thompson -Sergei Eisenstein -State of the Union -Dow Jones -Patriots -Super Bowl 2018 -Bill Paxton -Super Bowl 2018 -Florida shooting -Gianni Versace -Virginia Woolf -Carter G. Woodson -Paula Modersohn-Becker -SpaceX -Incredibles 2 -Shaun White -Sergei Eisenstein -Patriots -Edwin Jackson -Super Bowl 2018 -Winter Olympics -Florida shooting -Quentin Tarantino -Virginia Woolf -Did the Groundhog See His Shadow -Cherry Seaborn -Government Shutdown -Google Drive -Elizabeth Blackwell -Vikings Vs Eagles -XFL -Patriots -Wilder Penfield -XFL -Grammys 2018 -Government Shutdown -Paula Modersohn-Becker -Zion Williamson -Alaska earthquake -Virginia Woolf -Wilder Penfield -Tyler Hilinski -Pro Bowl 2018 -Chloe Kim -Patriots -Paula Modersohn-Becker -Dwyane Wade -Jalen Ramsey -Aliona Savchenko -Happy Valentines Day -State of the Union -calculator -Larry Nassar -New England Patriots owner -Government shutdown 2018 -Bob Marley -Alison Brie -CNN -Government Shutdown -CNN -SpaceX -Amy Schumer -Super Bowl score -SAG Awards 2018 -Super Bowl Commercials 2018 -Super Bowl 2018 -Dow Jones -Wilder Penfield -Chinese New Year 2018 -Kylie Jenner -SpaceX -Melania Trump -Wilder Penfield -Grammys 2018 -Super Bowl score -Rob Delaney -Carter G. Woodson -Bob Marley -Chloe Kim Snowboarder -Patriots -The 15:17 to Paris -Kesha Grammy -Daytona 500 -Sergei Eisenstein -Super blue blood Moon -FA Cup -Winter Olympics -Elizabeth Blackwell -SAG Awards 2018 -Vikings Vs Eagles -Riverdale -Carter G. Woodson -Natalie Wood -Pink -Wilder Penfield -Luke Wilson -Edwin Jackson -Kylie Jenner -Super Bowl 2018 -Netflix Stock -Rasual Butler -Carter G. Woodson -Anna Kournikova -NBA Trades -Groundhog Day 2018 -Paula Modersohn-Becker -Grammys 2018 -Shaun White -Sergei Eisenstein -Juventus -Zuleyka Rivera -Kristaps Porzingis -Lonzo Ball -Kristaps Porzingis -Elizabeth Blackwell -Super Bowl 2018 halftime show -Paula Modersohn-Becker -Super Bowl 2018 -XFL -Super Bowl 2018 -Dow Jones -Virginia Woolf -Patriots -Wilder Penfield -Justin Timberlake -Paula Modersohn-Becker -Super Bowl 2018 -Zion Williamson -Florida shooting -Amtrak -Super Bowl score -Elizabeth Blackwell -LeBron James -Lunar eclipse -What Time Is The Super Bowl -Trey Gowdy -United States Postal Service -James Baldwin -Super Bowl 2018 -Winter Olympics -Virginia Woolf -Super Bowl score -Meteor -Virginia Woolf -Wilder Penfield -Call Me by Your Name -Florida shooting -Super Bowl 2018 -Kylie Jenner -Super Blue Blood Moon -Winter Olympics -Winter Olympics -Jennifer Aniston -calculator -SAG Awards 2018 -SpaceX -Patti LuPone -Trump State of the Union -Wilder Penfield -Wilder Penfield -Super Bowl score -Virginia Woolf -Virginia Woolf -Patriots -Justin Timberlake -Katie Couric -Kylie Jenner Baby Girl -Blood Moon -Justin Timberlake -Rob Gronkowski -Wilder Penfield -Florida shooting -Joe Kennedy -Sergei Eisenstein -Super Bowl 2018 -Black Panther -Larry Nassar -Super Bowl score -Florida shooting -Virginia Woolf -Super Bowl score -Omarosa -Trump State of the Union -Super Bowl score -Florida shooting -Florida shooting -Royal Rumble 2018 -Justin Timberlake -Andrew Cunanan -Adam Rippon -This is Us -Super Bowl score -Super Bowl score -Super Bowl 2018 -Sabrina Dhowre -Virginia Woolf -Derrick Rose -SpaceX -Wilder Penfield -Den of Thieves -Rodney Hood -School closings -Dow Jones -Winter Olympics -Government Shutdown -Mikaela Shiffrin -Rasual Butler -SpaceX -The Alienist -Wilder Penfield -Kesha Grammy -Zion Williamson -Super Bowl 2018 -Melania Trump -Steve Wynn -Winter Olympics -Government Shutdown 2018 -Virginia Woolf -Bitcoin Price -Virginia Woolf -DeMarcus Cousins -Florida shooting -Winter Olympics -Women's March 2018 -Kentucky shooting -Mark Salling -Winter Olympics -Justin Timberlake -Florida shooting -Nathan Chen -Johnny Weir -Black Panther -Paula Modersohn-Becker -LeBron James -Government Shutdown -Wilder Penfield -Super Bowl 2018 -Paula Modersohn-Becker -What Time Is The Super Bowl -Blake Griffin -Bitcoin Price -Kylie Jenner -State of the Union -Shaun White -XFL -What Time Is The Super Bowl -Release The Memo -Wilder Penfield -Winter Olympics -Rose McGowan -Government Shutdown -Yu Darvish -XFL -Alexander Polinsky -Florida shooting -What Time Is The Super Bowl -Happy Valentines Day -Dow Jones -Super Bowl 2018 -Mark Salling -Cavs -What Time Is The Super Bowl -Lindsey Vonn -Carter G. Woodson -Kylie Jenner Baby Girl -Kentucky shooting -Super Bowl 2018 -Super Bowl 2018 -Florida shooting -Oscar Nominations 2018 -Jason Kidd -Mardi Gras 2018 -Ash Wednesday -Den of Thieves -Bitcoin Price -Vic Damone -Paul Ryan -Black Panther -Steve Wynn News -Blake Griffin -Elizabeth Blackwell -Government Shutdown -Virginia Woolf -New England Patriots owner -Stormi -Carter G. Woodson -Super Bowl 2018 -Isaiah Canaan -Cedi Osman -State of the Union -Joe Kennedy -Jacob Copeland -Super Bowl 2018 halftime show -Paula Modersohn-Becker -Mikaela Shiffrin -Shaun White -Adam Rippon -Florida shooting -Joe Kennedy -Sergei Eisenstein -SpaceX -Super Bowl score -Did the Groundhog See His Shadow -Rasual Butler -Kylie Jenner -Paula Modersohn-Becker -Groundhog Day 2018 -Government Shutdown 2018 -Virginia Woolf -UFC 220 -Virginia Woolf -Paula Modersohn-Becker -Virginia Woolf -Winter Olympics -Korea -Virginia Woolf -Virginia Woolf -Black Panther -Altered Carbon -calculator -Florida shooting -Justin Timberlake -Larry Nassar -Super Bowl 2018 -Tara Lipinski -Women's March 2018 -Elizabeth Blackwell -Jennifer Aniston -Black Panther -Justin Timberlake -NBA Trades -CNN -Bitcoin Price -Patriots -Presidents Day 2018 -Super Bowl 2018 -Carter G. Woodson -Super Blue Blood Moon -Kylie Jenner -JUUL -Wilder Penfield -Super Bowl 2018 -Paula Modersohn-Becker -Pro Bowl 2018 -Paula Modersohn-Becker -Cavs -Andre Roberson -Larry Nassar -Sergei Eisenstein -Patriots -Sergei Eisenstein -Memo -Virginia Woolf -Florida shooting -Super Bowl 2018 -Kylie Jenner -Disneyland tickets -Alaska earthquake -Greg Monroe -Mark Salling -Virginia Woolf -Patriots -Super Bowl 2018 -SpaceX -Super Bowl Commercials 2018 -Meteor -Florida shooting -Kesha Grammy -Florida shooting -Wilder Penfield -Patriots -Carter G. Woodson -Black Panther -Super Bowl 2018 -Patriots -Luke Wilson -Chloe Kim Snowboarder -Florida shooting -Carter G. Woodson -Rasual Butler -Winter Olympics -SZA -Sergei Eisenstein -Alaska earthquake -Kelsey Grammer -Rasual Butler -Dow Jones -Timor Leste -Florida shooting -Paula Modersohn-Becker -Andre Roberson -Altered Carbon -Vikings vs Eagles -Paula Modersohn-Becker -NBA Trades -Oscar Nominations 2018 -NBA Trades -Quincy Jones -SpaceX -SpaceX -Elizabeth Blackwell -Super Bowl 2018 -Wilder Penfield -Larry Nassar -Don Lemon -Cedi Osman -What Time Is The Super Bowl -Florida shooting -Super Bowl Commercials 2018 -Outback Steakhouse -Super Bowl score -Paula Modersohn-Becker -Carter G. Woodson -Paula Modersohn-Becker -Enzo Amore -SpaceX -Paula Modersohn-Becker -Winter Olympics -SpaceX -Mark Salling -Women's March 2018 -Meteor -Cherry Seaborn -Sergei Eisenstein -Obama portrait -Dwyane Wade -Sergei Eisenstein -This Is Us -Shaun White -Virginia Woolf -CBS Sports -Google docs -Government shutdown -Government Shutdown -Edwin Jackson -Winter Olympics -Carter G. Woodson -Dwyane Wade -Justin Timberlake -Alaska earthquake -Florida shooting -Stan Lee -Patriots -Winter Olympics -Virginia Woolf -Amtrak -Super Bowl 2018 -Chris Stapleton -Patriots -Elizabeth Blackwell -Peter Rabbit -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl score -Rasual Butler -Winter Olympics -Patriots -Government shutdown 2018 -Kesha Grammy -Carter G. Woodson -Winter Olympics -What Time Is The Super Bowl -Patriots -Olive Garden -Super Bowl 2018 -Kristaps Porzingis -Childish Gambino -Larry Nassar -Carter G. Woodson -Winter Olympics -Wilder Penfield -Joe Kennedy -Virginia Woolf -Paula Modersohn-Becker -Jamie Anderson -Elizabeth Blackwell -Super Bowl score -NHL All Star Game -Groundhog Day 2018 -Paula Modersohn-Becker -Grammys 2018 -Virginia Woolf -Cherry Seaborn -Mark Salling -Patriots -Johnny Weir -Wilder Penfield -Altered Carbon -Winter Olympics -Super Bowl score -Super Bowl 2018 -Paula Modersohn-Becker -Patriots -Carrie Underwood -Solo Trailer -SpaceX -This Is Us -Elizabeth Blackwell -Patriots -Paula Modersohn-Becker -Daryle Singletary -Winter Olympics -Olympic medal count -Kylie Jenner -SpaceX -Super Bowl 2018 -Omarosa -Sharon Stone -Women's March 2018 -Alex Reimer -Terry Bradshaw -Super blue blood Moon -Super Bowl score -Winter Olympics -Grammys 2018 -Senior Bowl -Lunar eclipse -Paula Modersohn-Becker -Wilder Penfield -Super Bowl score -Patti LuPone -Kylie Jenner -Wilder Penfield -Paula Modersohn-Becker -Super Bowl 2018 -Hostiles -Cory Booker -SpaceX -Larry Nassar -Super Bowl 2018 -Cbs -Carter G. Woodson -SpaceX -XFL -Paula Modersohn-Becker -UFC 220 -Trump State of the Union -Florida shooting -Nathan Chen -SAG Awards 2018 -Winter Olympics -Kim Kardashian -Justin Timberlake -Google Drive -Rodney Hood -Derrick Rose -Chinese New Year 2018 -Virginia Woolf -Andrew McCabe -Super blue blood Moon -Sergei Eisenstein -Lunar eclipse -Elizabeth Blackwell -Winter Olympics -Super blue blood Moon -Carter G. Woodson -What Time Is The Super Bowl -Patriots -Super Bowl 2018 -Paula Modersohn-Becker -Super Bowl score -Earthquake Today -Black Panther -earthquake today -Patriots -Winter Olympics -Winter Olympics -Lonzo Ball -Mark Salling -Virginia Woolf -Virginia Woolf -Elizabeth Blackwell -Friends movie -What Time Is The Super Bowl -Sergei Eisenstein -Tessa Virtue -Forever My Girl -Super Bowl 2018 -Justin Timberlake -Duke Basketball -Justin Timberlake -Alessia Cara -Carter G. Woodson -Justin Timberlake -Sergei Eisenstein -Super Bowl 2018 -Patti LuPone -This Is Us -Winter Olympics -Wilder Penfield -Paula Modersohn-Becker -Paula Modersohn-Becker -What Time Is The Super Bowl -calculator -Vikings Vs Eagles -Kylie Jenner -Wilder Penfield -Wilder Penfield -Paula Modersohn-Becker -stock market -What Time Is The Super Bowl -Puppy Bowl 2018 -Mardi Gras 2018 -Wilder Penfield -NBA Trades -Paula Modersohn-Becker -Outback Steakhouse -Cloverfield Paradox -luge -Paula Modersohn-Becker -Elizabeth Blackwell -NBA Trades -Valentines Day -Memo -Andrew McCabe -Google Drive -Sergei Eisenstein -Royal Rumble 2018 -United States Postal Service -Paula Modersohn-Becker -Scott Baio -Carrie Underwood -Release The Memo -Patriots -Valentines Day -Dow Jones -What Time Is The Super Bowl -Isaiah Thomas -What Time Is The Super Bowl -Groundhog Day 2018 -Valentines Day -Incredibles 2 -Government shutdown -Lena Zawaideh -Get Out -Super Bowl score -Super Bowl score -Wilder Penfield -Virginia Woolf -Virginia Woolf -Hope Hicks -Grammys 2018 -Sergei Eisenstein -Virginia Woolf -Justin Timberlake -Elizabeth Blackwell -Carter G. Woodson -Edgar Martinez -John Mahoney -Patriots -Snake -Obama portrait -Winter Olympics -UFC 220 -Alessia Cara -Drake -Winter Olympics -Early Man -SZA -Sal Castro Middle School -New England Patriots owner -Super Bowl Winners -Kylie Jenner -Super Bowl score -Government shutdown -Kylie Jenner -SpaceX -Sergei Eisenstein -United States Of America Winter Olympics -Neil Diamond -Elizabeth Blackwell -Trump Hair -What Time Is The Super Bowl -Black Panther -Virginia Woolf -Carter G. Woodson -Super Bowl score -SpaceX -Robert Wagner -Jimmy Garoppolo -Elizabeth Blackwell -Friends movie -Puppy Bowl 2018 -Google Classroom -Friends movie -Wilder Penfield -Sergei Eisenstein -SpaceX -Cavs -Omarosa -Virginia Woolf -Paula Modersohn-Becker -SpaceX -KSI -Paula Modersohn-Becker -Paula Modersohn-Becker -Wilder Penfield -12 Strong -School Closings -Tennys Sandgren -Patriots -Larry Nassar -Wilder Penfield -Florida shooting -Pro Bowl 2018 -Super Bowl 2018 -Larry Nassar -Carter G. Woodson -Super Bowl score -Elizabeth Blackwell -Bitcoin Price -Winter Olympics -Sergei Eisenstein -SpaceX -Patti LuPone -Daniel Kaluuya -Kylie Jenner -Winter Olympics -Omarosa -Government shutdown -Winter Olympics -Tonga -Larry Nassar -Kim Kardashian -Super Bowl score -Bitcoin Price -Super Bowl 2018 -Super Bowl 2018 -Paula Modersohn-Becker -Will Ferrell -Kristaps Porzingis -Wilder Penfield -Wilder Penfield -Wilder Penfield -Happy Valentines Day -Super Bowl 2018 -Black Panther -Elizabeth Blackwell -Super Bowl score -Snake -Gianni Versace -Carter G. Woodson -Elizabeth Blackwell -Elton John -Patriots -SpaceX -Chicago Weather -Super Bowl 2018 -Adam Rippon -Puppy Bowl 2018 -Kylie Jenner -Justin Timberlake -This is Us -Sergei Eisenstein -Super Bowl 2018 -SpaceX -Patriots -Florida shooting -Obama portrait -Dwyane Wade -What Time Is The Super Bowl -Kesha -Patriots -Wilder Penfield -Blake Griffin Trade -Arsenal -Virginia Woolf -Kylie Jenner -Super Bowl 2018 -Winter Olympics -Grammys 2018 -Sergei Eisenstein -Government Shutdown -Justin Timberlake -Carter G. Woodson -Mark Salling -Mardi Gras 2018 -Virginia Woolf -Elizabeth Blackwell -Super Bowl score -Wilder Penfield -Paula Modersohn-Becker -Paula Modersohn-Becker -Carter G. Woodson -Government Shutdown -Jane Fonda -Isaiah Thomas -Super Bowl 2018 -Mardi Gras 2018 -Super Bowl 2018 -Super Bowl score -Super Bowl 2018 -Tom Petty -Wilder Penfield -Winter Olympics -Terrell Owens -Vikings Vs Eagles -Tom Petty -Grammys 2018 -Trump State of the Union -Google Classroom -Mexico Vs Bosnia -Winter Olympics -Black Panther -Florida shooting -Virginia Woolf -Super Bowl score -Kylie Jenner -Jason Momoa -Super Bowl 2018 -Duke basketball -Virginia Woolf -Elizabeth Blackwell -Trump State of the Union -Super Bowl 2018 -Ash Wednesday -Super Bowl 2018 -Kentucky shooting -Lonzo Ball -Paula Modersohn-Becker -SpaceX -Dow Jones -Carter G. Woodson -Carter G. Woodson -Alex Smith -What Time Is The Super Bowl -SpaceX -Government Shutdown -Esteban Loaiza -What Time Is The Super Bowl -Elizabeth Blackwell -Super Bowl 2018 -Kylie Jenner -Government Shutdown Meaning -Elizabeth Blackwell -Super Bowl 2018 -Super Bowl 2018 -SpaceX -Patriots -What Time Is The Super Bowl -Winter Olympics -Amazon Stock -Paula Modersohn-Becker -Roger Federer -Black Panther -Black Panther -Paula Modersohn-Becker -Super Bowl Commercials 2018 -Ash Wednesday -Dwyane Wade -Sergei Eisenstein -Paula Modersohn-Becker -Super Bowl 2018 -Mikaela Shiffrin -Sergei Eisenstein -Super Bowl 2018 halftime show -Elizabeth Blackwell -Wilder Penfield -Super blue blood Moon -Super Bowl 2018 -Bitcoin Price -Black Panther -Robby Anderson -Cavs -Florida shooting -Mark Salling -Shaun White -Super Bowl score -Larry Nassar -Scott Baio -Marlon Brando -SpaceX -Super Bowl 2018 -CNN -Mattie Larson -Oscar Nominations 2018 -Paula Modersohn-Becker -Virginia Woolf -Patriots -NBA Trades -Paula Modersohn-Becker -The 15:17 to Paris -Winter Olympics -Cedi Osman -Mark Salling -Blake Griffin -Happy Valentines Day -Super Bowl score -Dow Jones -Paula Modersohn-Becker -Wilder Penfield -Paula Modersohn-Becker -Super Bowl score -Grammys 2018 -Naya Rivera -Sergei Eisenstein -Bob Dole -Enzo Amore -Florida shooting -Yahoo Finance -Carter G. Woodson -school closings -Super Bowl score -Mardi Gras 2018 -Super Bowl score -Super Bowl 2018 -Alex Smith -Paula Modersohn-Becker -Winter Olympics -SpaceX -Danielle Herrington -Florida shooting -stock market -Carter G. Woodson -Carter G. Woodson -Sergei Eisenstein -Rodney Hood -Sergei Eisenstein -Erykah Badu -Amy Schumer -Super Bowl score -State of the Union -tsunami -Wilder Penfield -earthquake -Dow Jones -Super Bowl 2018 -Elizabeth Blackwell -Sergei Eisenstein -Patti LuPone -Danielle Herrington -Joe Kennedy -Virginia Woolf -Cloverfield Paradox -Olympic Medal Count -AFC Championship Game 2018 -Westerville Ohio -SpaceX -Rose McGowan -Dow Jones -Google Drive -Adam Rippon -Winter Olympics -Justin Timberlake -Sergei Eisenstein -Alaska earthquake -Dane Cook -Super Bowl 2018 -Kylie Jenner -Dow Jones -Yuzuru Hanyu -Robert Mueller -Wilder Penfield -Wilder Penfield -Super Bowl 2018 -Kawhi Leonard -Florida shooting -Super Bowl 2018 -Florida shooting -Steven Tyler -Super Bowl score -Carter G. Woodson -Alison Brie -Justin Timberlake -Florida shooting -Virginia Woolf -stock market -Super Bowl score -Mark Salling -Florida shooting -Super Bowl score -Super Bowl score -Black Panther -Justin Timberlake -Winter Olympics -Shaun White -Super Bowl 2018 -Waco -Justin Timberlake -Happy Valentines Day -H&r Block -Super Bowl score -Grammys 2018 -Google docs -Daryle Singletary -Sea Of Thieves -Sergei Eisenstein -Elizabeth Blackwell -Mickey Jones -Women's March 2018 -Elizabeth Blackwell -Elizabeth Blackwell -Super Bowl 2018 -Grammys 2018 -Sergei Eisenstein -Sea of Thieves -Groundhog Day 2018 -Mark Salling -Elizabeth Blackwell -Wilder Penfield -Alex Smith -Red Gerard -Florida shooting -Super Bowl score -Florida shooting -Terrell Owens -Government Shutdown -Wilder Penfield -Incredibles 2 -Winter Olympics -Elizabeth Blackwell -Toys R Us -Black Panther -SpaceX -Patriots -Wilder Penfield -Elizabeth Blackwell -SpaceX -Wilder Penfield -Wilder Penfield -Florida shooting -Tom Petty -Paula Modersohn-Becker -Super Bowl Winners -NSA -Paula Modersohn-Becker -Sergei Eisenstein -Portia de Rossi -Wilder Penfield -Pro Bowl 2018 -Larry Nassar -Winter Olympics -Rachel Brand -Patriots -Paula Modersohn-Becker -Elizabeth Blackwell -Olympic Medal Count -Adam Rippon -Google docs -State of the Union -Oscar Nominations 2018 -Amy Schumer -Elton John -Pro Bowl 2018 -Tessa Virtue -Google Classroom -Winter Olympics -Black Panther -Super Bowl score -Bitcoin Price -Cloverfield Paradox -Olympic medal count -Mardi Gras 2018 -Super Bowl score -Paula Modersohn-Becker -Sergei Eisenstein -Super Bowl 2018 halftime show -Super Bowl 2018 -Virginia Woolf -Uma Thurman -Alexander Polinsky -This Is Us -Friends movie -Grammys 2018 -Florida shooting -Sergei Eisenstein -Larry Nassar -Virginia Woolf -Winter Olympics -NBA Trades -Winter Olympics -Oscar Nominations 2018 -calculator -AFC Championship Game 2018 -Super Bowl 2018 -Patriots -Super Bowl 2018 -Mark Salling -CNN -Winter Olympics -Winter Olympics -Patriots -Isaiah Canaan -Scott Baio -Happy Valentines Day -Justin Timberlake -Government Shutdown -What Time Is The Super Bowl -Emily Sweeney -Taiwan Earthquake Today -Elizabeth Blackwell -Wilder Penfield -Wilder Penfield -Super Bowl 2018 -Super Bowl score -James Harden -Obama portrait -Berkshire Hathaway -Winter Olympics -Adam Rippon -Wilder Penfield -Wilder Penfield -fake news awards -Alexa Commercial -Sergei Eisenstein -Justin Timberlake -Kylie Jenner -Snap Stock -Paula Modersohn-Becker -Virginia Woolf -Carter G. Woodson -Elizabeth Blackwell -Elizabeth Blackwell -Super Bowl score -Government Shutdown Meaning -Super Bowl 2018 -Valentines Day -Patriots -Mikaela Shiffrin -Super Bowl 2018 -Winter Olympics -Andrew Cunanan -Jason Kidd -Eli Manning -Solo Trailer -Florida shooting -Elizabeth Blackwell -Carter G. Woodson -Government Shutdown -Kylie Jenner -State of the Union -Sergei Eisenstein -Mark Salling -Grammys 2018 -National Pizza Day -Jimmy Garoppolo -Sergei Eisenstein -Jason Kelce -Virginia Woolf -Patriots -Kylie Jenner -Super Bowl score -Paula Modersohn-Becker -Carter G. Woodson -Bitcoin Price -Nba All Star 2018 -Greg Monroe -Winchester -Alex Smith -Paula Modersohn-Becker -Johnny Weir -Sergei Eisenstein -Portia de Rossi -Elizabeth Blackwell -Alex Smith -Super Bowl 2018 -Winter Olympics -UFC 220 -Virginia Woolf -Justin Timberlake -Super Bowl 2018 -Super Bowl Winners -Tiger Woods -Black Panther -Kim Kardashian -Government Shutdown -Super Bowl score -Elizabeth Blackwell -The Home Depot -Winter Olympics -SpaceX -Mikaela Shiffrin -Katie Couric -Natalie Portman -Valentines Day Memes -Super Bowl 2018 -SpaceX -Carter G. Woodson -Tom Brady daughter -Westminster Dog Show 2018 -Sergei Eisenstein -Kylie Jenner -12 Strong -Super Bowl score -Winter Olympics -Julie Ertz -Elizabeth Blackwell -Super Bowl score -Red Gerard -Super Bowl score -Olympic Medal Count -Gianni Versace -Sea Of Thieves -Bob Marley -Red Gerard -Elizabeth Blackwell -NBC Sports -Super Bowl 2018 -Winter Olympics -Wilder Penfield -Tammy Duckworth -Vikings Vs Eagles -Patriots -Tom Petty -Super Bowl 2018 -Super Bowl score -What Time Is The Super Bowl -Larry Nassar -Larry Nassar -Mardi Gras 2018 -Wilder Penfield -This Is Us -Wilder Penfield -Paula Modersohn-Becker -Google docs -Winter Olympics -Virginia Woolf -Groundhog Day 2018 -Government shutdown -State of the Union -Olympics 2018 -Despacito -Winter Olympics -Patriots -Government Shutdown -Chinese New Year 2018 -Government shutdown 2018 -Chinese New Year 2018 -Super Bowl 2018 -Elizabeth Blackwell -Fifty Shades Freed -Grammys 2018 -Mark Salling -Super Bowl score -Adam Schiff -Jenna Morasca -Outback Steakhouse -Dow Jones -Kentucky shooting -calculator -Groundhog Day 2018 -Grammys 2018 -Kristaps Porzingis -School closings -Jane Fonda -Sergei Eisenstein -school closings -Super Bowl Commercials 2018 -Steve Mcnair -Zion Williamson -Robert Wagner -Women's March 2018 -CNN -Super Bowl 2018 -Larry Nassar -Kesha -Forever My Girl -Amazon Stock -Royal Rumble 2018 -Pro Bowl 2018 -Super blue blood Moon -Government shutdown -Virginia Woolf -Patriots -Kylie Jenner -Winter Olympics -Happy Valentines Day -Alexa Commercial -Justin Timberlake -Patriots -Fifty Shades Freed -Meteor -Paula Modersohn-Becker -Grammys 2018 -Government shutdown 2018 -Wilder Penfield -Rampage -What Time Is The Super Bowl -What Time Is The Super Bowl -Earthquake Today -Danielle Herrington -Patriots -Rolling Loud -Wilder Penfield -Royal Rumble 2018 -Elton John -Super Bowl score -Super Bowl score -Mark Salling -Outback Steakhouse -Wilder Penfield -Winter Olympics -NBA Trades -Yu Darvish -Laura Ingraham -Patriots -Super Bowl 2018 -Winter Olympics -Paula Modersohn-Becker -Columbine -Carter G. Woodson -Super blue blood Moon -State of the Union -Mcdonald's -Wilder Penfield -Florida shooting -Kylie Jenner -Black Panther -Justin Timberlake -Carter G. Woodson -Virginia Woolf -Sergei Eisenstein -Dane Cook -Paula Modersohn-Becker -Bitcoin Price -Chief Wahoo -Google docs -Fifty Shades Freed -Juegos Olímpicos de Invierno 2018 -Super Bowl score -Virginia Woolf -Carter G. Woodson -Cloverfield Paradox -Elizabeth Blackwell -Altered Carbon -Grammys 2018 -Government Shutdown Meaning -Virginia Woolf -Super Bowl score -SpaceX -Lunar eclipse -Groundhog Day 2018 -Super blue blood Moon -Elizabeth Blackwell -Elizabeth Blackwell -NSA -SpaceX -Memo -Paula Modersohn-Becker -Andrew Cunanan -Vince McMahon -Patriots -Ash Wednesday -VIX -Winter Olympics -Shaun White -Sea Of Thieves -Korea -Classroom -Wilder Penfield -Real Madrid -Blake Griffin -Royal Rumble 2018 -Pro Bowl 2018 -Virginia Woolf -LeBron James -Conor McGregor -Sergei Eisenstein -Blake Griffin -Paula Modersohn-Becker -Sergei Eisenstein -Sergei Eisenstein -What Time Is The Super Bowl -Paula Modersohn-Becker -Virginia Woolf -Steve Wynn -Carter G. Woodson -Memo -Paula Modersohn-Becker -Virginia Woolf -Grammys 2018 -Olympic medal count -Super Bowl 2018 -Alex Smith -Mikaela Shiffrin -Government Shutdown 2018 -Alexander Polinsky -Culture 2 -Quincy Jones -Mavic Air -Elizabeth Blackwell -Government shutdown -Government Shutdown -Government Shutdown -Mexico Vs Bosnia -Puppy Bowl 2018 -Bradie Tennell -Super Bowl 2018 -Get Out -Cloverfield Paradox -Jimmy Garoppolo -Toys R Us -Super Bowl 2018 -Carter G. Woodson -Virginia Woolf -Naya Rivera -Dwyane Wade -Solo Trailer -Sergei Eisenstein -Grammys 2018 -Vanessa Trump -Virginia Woolf -Carter G. Woodson -Shaun White -Paula Modersohn-Becker -United States Postal Service -Patriots -Jennifer Aniston -Kentucky shooting -Paula Modersohn-Becker -Super Bowl score -State of the Union -Paula Modersohn-Becker -Grammys 2018 -Halsey -Grammys 2018 -Elizabeth Blackwell -Groundhog Day 2018 -Virginia Woolf -Larry Nassar -Edwin Jackson -Sergei Eisenstein -Anna Kournikova -Oscar Nominations 2018 -Matt Czuchry -NBA Trades -Virginia Woolf -Government Shutdown -Norovirus -Rodney Hood -Chinese New Year 2018 -Government Shutdown -Dow Jones -Sean Hannity -Black Panther -Kentucky shooting -Vikings Vs Eagles -Sergei Eisenstein -Patriots -Super Bowl score -Super Bowl 2018 -Carrie Underwood -Sergei Eisenstein -SpaceX -Super Bowl 2018 -Jennifer Aniston -Sergei Eisenstein -Justin Timberlake -New England Patriots owner -Florida shooting -Grammys 2018 -stock market -Carter G. Woodson -Winter Olympics -Rose McGowan -Kentucky shooting -Sergei Eisenstein -Sergei Eisenstein -Shaun White -Paula Modersohn-Becker -Sergei Eisenstein -Virginia Woolf -Bitcoin Price -Blue Ivy -NBA Trades -Government Shutdown Meaning -Super Bowl 2018 -Jessica Chastain -Super Bowl score -This Is Us -Super Blue Blood Moon -Trayvon Martin -Eli Manning -Winter Olympics -Solo Trailer -Paula Modersohn-Becker -UFC 220 -Google Classroom -Winter Olympics -Cavs -Amy Schumer -Virginia Woolf -Adam Rippon -Lunar eclipse -Outback Steakhouse -Betty White -SpaceX -Fredo Santana -Elizabeth Blackwell -Super Bowl 2018 -Hostiles -Vikings Vs Eagles -Shaun White -Valentines Day Images -Super Bowl score -Super Bowl 2018 -Sergei Eisenstein -Sergei Eisenstein -Winter Olympics -What Time Is The Super Bowl -Alex Smith -Enzo Amore -Vikings Vs Eagles -Larry Nassar -What Time Is The Super Bowl -Google Classroom -SZA -Real Madrid -Super Bowl score -Winter Olympics -Vanessa Marcil -Larry Nassar -calculator -Paula Modersohn-Becker -school closings -Lil Xan -Shani Davis -Montreal Cognitive Assessment -Sergei Eisenstein -Super Bowl score -Super Bowl 2018 halftime show -Classroom -Derrick Rose -Patriots -Call Me by Your Name -Super Bowl score -Super Bowl score -Patriots -Uma Thurman -school closings -Carter G. Woodson -Super Bowl 2018 -Chinese New Year 2018 -Kate Upton -Carter G. Woodson -Puppy Bowl 2018 -Jessica Chastain -Super Bowl score -John Mahoney -Malcom Butler -Elizabeth Blackwell -Virginia Woolf -national signing day 2018 -Government Shutdown -JUUL -Super Bowl 2018 -Sergei Eisenstein -Winter Olympics -Cloverfield Paradox -Black Panther -Larry Nassar -Daytona 500 -Paula Modersohn-Becker -Duke Basketball -Google Classroom -DeMarcus Cousins -State of the Union -Super Bowl 2018 -Carter G. Woodson -Sergei Eisenstein -Super Bowl 2018 -Alaska earthquake -Virginia Woolf -Grammys 2018 -Kylie Jenner -Winter Olympics -Patriots -Manchester United -Super Bowl 2018 -Government Shutdown -Carter G. Woodson -State of the Union -pissant -Patriots -Sergei Eisenstein -Kylie Jenner -Patriots -Isaiah Thomas -Patriots -Chris Stapleton -Vanity Fair Cover -Ash Wednesday -SpaceX -Alaska earthquake -Larry Nassar -Winter Olympics -Super Bowl Commercials 2018 -Carter G. Woodson -Winter Olympics -Red Gerard -Carter G. Woodson -Sergei Eisenstein -Montreal Cognitive Assessment -Super Bowl score -Sergei Eisenstein -Government Shutdown Meaning -Sergei Eisenstein -Mardi Gras 2018 -Sergei Eisenstein -Larry Nassar -Wilder Penfield -Super Bowl score -Mark E Smith -Wilder Penfield -Super Bowl score -Patriots -Super Bowl score -Vikings Vs Eagles -Government Shutdown -Carter G. Woodson -Paula Modersohn-Becker -Super Bowl 2018 -UFC 220 -Super Bowl 2018 -Alaska earthquake -Harley Barber -State of the Union -Patriots -Sergei Eisenstein -Elizabeth Blackwell -Lari White -Virginia Woolf -Grammys 2018 -Oscar Nominations 2018 -Grammys 2018 -Cavs -New England Patriots owner -Super blue blood Moon -UFC 220 -Elizabeth Blackwell -Sean Hannity -stock market -What Time Is The Super Bowl -Grammys 2018 -Carter G. Woodson -Laura Ingraham -Fredo Santana -Super Bowl 2018 -Super Bowl score -Virginia Woolf -Happy Valentines Day -Real Madrid -Daryle Singletary -Wilder Penfield -Government shutdown -Super Bowl score -calculator -Pro Bowl 2018 -Tonga -Groundhog Day 2018 -Chicago West -Florida shooting -Reg E Cathey -Winter Olympics -Wilder Penfield -Anna Kournikova -Oar Olympics -Florida shooting -Sergei Eisenstein -Wilder Penfield -Larry Nassar -Super Bowl 2018 -Justin Timberlake -Carter G. Woodson -Patriots -Mardi Gras 2018 -MS13 -XFL -Alex Smith -Julie Ertz -school closings -Carter G. Woodson -Wilder Penfield -Super Bowl 2018 -Government Shutdown Meaning -Larry Nassar -Wilder Penfield -Royal Rumble 2018 -Early Man -Oscar Nominations 2018 -Princess Eugenie -Super blue blood Moon -Adam Rippon -Steve Mcnair -Johnny Weir -Paula Modersohn-Becker -Virginia Woolf -Florida shooting -Wilder Penfield -Super Bowl score -Robert Wagner -Joshua Cooper Ramo -Florida shooting -XFL -Carter G. Woodson -Sergei Eisenstein -UFC 220 -Yu Darvish -Carter G. Woodson -Sergei Eisenstein -Patriots -Super Bowl 2018 -Elizabeth Blackwell -Rasual Butler -Shaun White -Olympic Medal Count -Super Bowl 2018 -Sergei Eisenstein -Sergei Eisenstein -Early Man -The 15:17 to Paris -Caitlin McHugh -Rasual Butler -Presidents Day 2018 -Vikings Vs Eagles -Happy Valentines Day -Super Bowl 2018 -Naya Rivera -Government Shutdown Meaning -Patriots -Florida shooting -Gigi Hadid -Anna Kournikova -Patriots -New England Patriots owner -Cavs -Black Panther -Patriots -SpaceX -Lindsey Vonn -Chris Stapleton -SpaceX -Winter Olympics -Florida shooting -Tonga -Groundhog Day 2018 -Royal Rumble 2018 -Elizabeth Blackwell -SpaceX -Google Drive -Winter Olympics -What Time Is The Super Bowl -Carter G. Woodson -Edible Arrangements -Government Shutdown -Winter Olympics -luge -Chinese New Year 2018 -Paula Modersohn-Becker -Rasual Butler -Patriots -What Time Is The Super Bowl -Super Bowl 2018 -Rihanna -Johnny Weir -Paula Modersohn-Becker -What Time Is The Super Bowl -Kylie Jenner -Chloe Kim -Grammys 2018 -Patriots -Red Gerard -Ohio State basketball -Peter Rabbit -Elizabeth Blackwell -Kylie Jenner -Paula Modersohn-Becker -Sergei Eisenstein -SpaceX -Katie Couric -Wilder Penfield -The 15:17 to Paris -Bob Dole -Sergei Eisenstein -Wilder Penfield -Ash Wednesday -State of the Union -Patriots -Winter Olympics -Winter Olympics -Paula Modersohn-Becker -Happy Valentines Day -Blake Griffin -Dow Jones -This Is Us -Chinese New Year 2018 -Paula Modersohn-Becker -Cavs -Florida shooting -Super Bowl score -Winter Olympics -Kylie Jenner -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl score -Fredo Santana -OKC Thunder -Patriots -School closings -Patriots -Sergei Eisenstein -Larry Nassar -Elizabeth Blackwell -Nba All Star Draft -Shaun White -Sergei Eisenstein -Patriots -Florida shooting -Yura Min -Paula Modersohn-Becker -Solo Trailer -Florida shooting -Kylie Jenner -Google docs -Paula Modersohn-Becker -Pyeongchang 2018 Olympic Winter Games -Walter Payton -Virginia Woolf -Phantom Thread -Patriots -Deadpool 2 -Carter G. Woodson -Virginia Woolf -Sergei Eisenstein -Kylie Jenner -Paula Modersohn-Becker -Dane Cook -Sergei Eisenstein -Larry Nassar -Olympic medal count -Winter Olympics -Carter G. Woodson -Frederick Douglass -Florida shooting -Government Shutdown -Wilder Penfield -Black Panther -Tyler Hilinski -Super Bowl score -Paula Modersohn-Becker -Winter Olympics -Elizabeth Blackwell -Greg Monroe -Joel Taylor -New England Patriots owner -Bitcoin Price -Winter Olympics -Larry Nassar -Virginia Woolf -Government Shutdown Meaning -Oscar Nominations 2018 -Wilder Penfield -Women's March 2018 -Carter G. Woodson -Wilder Penfield -What Time Is The Super Bowl -Justin Timberlake -Post Malone -Florida shooting -Johnny Weir -Vikings Vs Eagles -Paula Modersohn-Becker -Happy Valentines Day -What Time Is The Super Bowl -Florida shooting -Paula Modersohn-Becker -Daryle Singletary -Fifty Shades Freed -Carter G. Woodson -United States Of America Winter Olympics -Justin Timberlake -Bitcoin Price -State of the Union -Sergei Eisenstein -Grammys 2018 -Grammys 2018 -Super Bowl 2018 -Super blue blood Moon -Cavs -Kylie Jenner -Chris Stapleton -Kesha Grammy -stock market -Blood Moon -Don Lemon -Daniel Kaluuya -Release The Memo -Bitcoin Price -National Pizza Day -Patriots -Kylie Jenner -Abraham Lincoln -Senior Bowl -Virginia Woolf -Cherry Seaborn -Dow Jones -Super Bowl score -Houston Rockets -Virginia Woolf -Early Man -Super Bowl Commercials 2018 -Jeff Flake -Chris Stapleton -Florida shooting -Zion Williamson -Paula Modersohn-Becker -Carter G. Woodson -Dwyane Wade -Patriots -Super Bowl score -Florida shooting -Snake -Super Bowl score -Pink -Terry Bradshaw -Wilder Penfield -SpaceX -Super Bowl score -Oscar Nominations 2018 -Chinese New Year 2018 -Carter G. Woodson -Kim Kardashian -Winter Olympics -Sergei Eisenstein -Black Panther -Montreal Cognitive Assessment -Paula Modersohn-Becker -Patriots -Enzo Amore -Google Drive -Memo -What Time Is The Super Bowl -Florida shooting -Government Shutdown Meaning -Drive -Paula Modersohn-Becker -Patriots -Rob Gronkowski -Grammys 2018 -Kylie Jenner -Drive -Sergei Eisenstein -Florida shooting -Winter Olympics -Paula Modersohn-Becker -Paula Modersohn-Becker -Justin Timberlake -Google Drive -Woody Allen -SZA -stock market -Super Bowl 2018 -Olympic medal count -Elizabeth Blackwell -Patriots -UFC 220 -Ursula Le Guin -Shaun White -Government Shutdown Meaning -Sergei Eisenstein -Carter G. Woodson -Snake -Carter G. Woodson -Obama portrait -This Is Us -Carter G. Woodson -Nba All Star 2018 -Virginia Woolf -Grammys 2018 -Florida shooting -Dow Jones industrial average -Elizabeth Blackwell -Wilder Penfield -Larry Nassar -Virginia Woolf -Florida shooting -Terrell Owens -Groundhog Day 2018 -Tom Izzo -Shaun White -Cherry Seaborn -Olympic medal count -Virginia Woolf -Happy Valentines Day -What Time Is The Super Bowl -Florida shooting -Super Bowl 2018 halftime show -Elizabeth Blackwell -Cavs -Trump State of the Union -Senior Bowl -Grammys 2018 -Chloe Kim -Super Bowl score -Paula Modersohn-Becker -Den of Thieves -Patriots -Carrie Underwood -Dane Cook -Vince McMahon -Wilder Penfield -Alex Smith -Carter G. Woodson -SpaceX -Google docs -Nba All Star Draft -Cbs -Memo -Carter G. Woodson -Super Bowl 2018 -Natalie Wood -Blake Griffin -XFL -Shaun White -Carter G. Woodson -Government shutdown 2018 -Vikings Vs Eagles -Senior Bowl -Tyler Hilinski -Doomsday Clock -Government Shutdown -calculator -Pro Bowl 2018 -Alex Smith -Winter Olympics -Carter G. Woodson -Yahoo Finance -Cloverfield Paradox -Alex Smith -Carter G. Woodson -Florida shooting -Elizabeth Blackwell -Lil Pump -Florida shooting -Solo Trailer -Puppy Bowl 2018 -Wilder Penfield -Paula Modersohn-Becker -What Time Is The Super Bowl -Happy Valentines Day -Super Bowl score -Sabrina Dhowre -Wilder Penfield -Super Bowl 2018 -Trump State of the Union -Paula Modersohn-Becker -Carter G. Woodson -Florida shooting -Florida shooting -Grammys 2018 -Kingdom Come Deliverance -Google docs -Dow Jones -Paula Modersohn-Becker -Virginia Woolf -Virginia Woolf -Vanessa Marcil -Melania Trump -Alessia Cara -Altered Carbon -Super Bowl 2018 -Groundhog Day 2018 -Simona Halep -Memo -Justin Timberlake -Peter Rabbit -Outback Steakhouse -Groundhog Day 2018 -Lil Pump -Tyler Hilinski -Mike Fisher -Wilder Penfield -Patriots -NBA Trades -Edwin Jackson -Justin Timberlake -Robert Wagner -Wilder Penfield -Den of Thieves -New England Patriots owner -SpaceX -Super Bowl Commercials 2018 -Dow Jones industrial average -Matt Patricia -Chinese New Year 2018 -Mark Salling -Super Bowl score -Andrew Cunanan -Adam Rippon -Toys R Us -Super Bowl 2018 -Rodney Hood -Wilder Penfield -Florida shooting -Shaun White -Eric Wood -Rodney Hood -Pro Bowl 2018 -Kylie Jenner -Halsey -Ash Wednesday -Grammys 2018 -Super Bowl score -What Time Is The Super Bowl -Groundhog Day 2018 -Cavs -Virginia Woolf -Women's March 2018 -Football Playoffs 2018 -CNN -What Time Is The Super Bowl -State of the Union -Carter G. Woodson -Nascar Schedule -Virginia Woolf -Florida shooting -Wilder Penfield -What Time Is The Super Bowl -Elizabeth Blackwell -Paula Modersohn-Becker -Ted Bundy -Wilder Penfield -Virginia Woolf -Dow Jones -Carter G. Woodson -Blake Griffin -Virginia Woolf -Memo -Florida shooting -Grammys 2018 -Elizabeth Blackwell -Paula Modersohn-Becker -Black Panther -Wilder Penfield -NBA Trades -Larry Nassar -Elizabeth Blackwell -Virginia Woolf -Elton John -Black Panther -Kelly Clark -Michelle Obama -Florida shooting -What Time Is The Super Bowl -Larry Nassar -SpaceX -Patriots -Wilder Penfield -Trey Gowdy -Virginia Woolf -Super Bowl 2018 -Samson -Paula Modersohn-Becker -Kylie Jenner -Kim Kardashian -Patriots -Virginia Woolf -Bitcoin Price -Columbine -Carter G. Woodson -Elizabeth Blackwell -Jo Jo White -Government Shutdown -NBA Trades -Florida shooting -What Time Is The Super Bowl -Zion Williamson -Dow Jones -Florida shooting -Farmers Insurance Open 2018 -Sal Castro Middle School -Sandy Hook -Sergei Eisenstein -Dow Jones -State of the Union -lady gaga grammys -Winter Olympics -Florida shooting -Fifty Shades Freed -Chloe Kim -Mavic Air -Super Bowl 2018 -Sergei Eisenstein -Duke Basketball -Fifty Shades Freed -Celebrity Big Brother cast -Super Bowl score -Super Bowl 2018 -Florida shooting -Paula Modersohn-Becker -Winter Olympics -Winter Olympics -Sea of Thieves -Sergei Eisenstein -Robert Wagner -Blue Ivy -DeMarcus Cousins -Larry Nassar -Jo Jo White -Real Madrid -Oscar Nominations 2018 -Patriots -Montgomery County Public Schools -Virginia Woolf -Chris Stapleton -Florida shooting -Virginia Woolf -Blake Griffin Trade -State of the Union -Gigi Hadid -Groundhog Day 2018 -The 15:17 to Paris -Blake Griffin -Elizabeth Blackwell -Jessica Chastain -Blue Moon -What Time Is The Super Bowl -Jimmy Garoppolo -Virginia Woolf -school closings -Den of Thieves -Sergei Eisenstein -SpaceX -Solo Trailer -Government shutdown 2018 -CBS Sports -Pro Bowl 2018 -Virginia Woolf -Robert Wagner -Paula Modersohn-Becker -Kylie Jenner -Dow Jones -What Time Is The Super Bowl -United States Of America Winter Olympics -SpaceX -Blake Griffin -Virginia Woolf -Venom -Tiger Woods -Grammys 2018 -What Time Is The Super Bowl -Virginia Woolf -Paula Modersohn-Becker -Memo -Super Bowl 2018 -SpaceX -Neil Diamond -Wilder Penfield -Scott Baio -Nba All Star 2018 -Super Bowl 2018 -Virginia Woolf -Carter G. Woodson -Carter G. Woodson -Super Bowl 2018 -Sting -Den of Thieves -Patriots -Sergei Eisenstein -Carter G. Woodson -Tom Brady -Wilder Penfield -Uma Thurman -Lindsey Vonn -Florida shooting -Super Bowl score -Dow Jones -Justin Timberlake -Florida shooting -Paula Modersohn-Becker -Carter G. Woodson -Walter Payton -Google docs -Winter Olympics -What Time Is The Super Bowl -Winter Olympics -Amazon HQ2 -Oscar Nominations 2018 -XFL -Patriots -Larry Nassar -SpaceX -Government Shutdown 2018 -Google docs -Paula Modersohn-Becker -Phantom Thread -Wilder Penfield -Super Bowl 2018 -Winchester -Wilder Penfield -NBA Trades -Camila Cabello -Patriots -Patriots -Chris Stapleton -Wilder Penfield -SpaceX -Wilder Penfield -Super Bowl score -Vikings Vs Eagles -Larry Nassar -Zion Williamson -Happy Valentines Day -CNN -Patriots -Jason Kelce -UFC 220 -Winter Olympics -Carter G. Woodson -This Is Us -Trump State of the Union -Super Bowl score -SpaceX -Elizabeth Blackwell -Incredibles 2 -Virginia Woolf -Government Shutdown -Patriots -Virginia Woolf -Paula Modersohn-Becker -Carter G. Woodson -Kylie Jenner -Winter Olympics -Winter Olympics -Government Shutdown -Frank Reich -Fifty Shades Freed -Justin Timberlake -Elizabeth Blackwell -Lonzo Ball -Quincy Jones -Carter G. Woodson -Robert Wagner -Trump Hair -Winter Olympics -Amy Schumer -Carter G. Woodson -Elizabeth Blackwell -Larry Nassar -Sergei Eisenstein -Sergei Eisenstein -Blue Ivy -Patriots -Chloe Kim -Elizabeth Blackwell -Wilder Penfield -Dane Cook -Kylie Jenner -Super blue blood Moon -Grammys 2018 -Kylie Jenner -NFC Championship Game 2018 -Florida shooting -Carter G. Woodson -Florida shooting -Winter Olympics -What Time Is The Super Bowl -Virginia Woolf -Elton John tickets -Alex Smith -Wilder Penfield -Super blue blood Moon -Elizabeth Blackwell -Lil Pump -Post Malone -Elizabeth Blackwell -Childish Gambino -Virginia Woolf -Bitcoin Price -Vince McMahon -FC Barcelona -Patriots -Super Bowl 2018 -Dwyane Wade -Super Bowl score -PlayStation Network -Virginia Woolf -Elizabeth Blackwell -Super Bowl score -Fifty Shades Freed -Rodney Hood -Bitcoin Price -Wilder Penfield -Patriots -Super Bowl 2018 -Grammys 2018 -Florida shooting -Larry Nassar -Kate Upton -Virginia Woolf -Government Shutdown -12 Strong -Justin Timberlake -Real Madrid -Wilder Penfield -Larry Nassar -Super Bowl 2018 -Justin Timberlake -Winter Olympics -Super Bowl 2018 -Patriots -Carter G. Woodson -Alexa Commercial -Florida shooting -Super Bowl 2018 -CNN -Mark Salling -Jason Kelce -Eli Manning -Super Bowl score -Elizabeth Blackwell -Mardi Gras 2018 -Larry Nassar -Carter G. Woodson -Kylie Jenner -Wilder Penfield -curling -Elizabeth Blackwell -Virginia Woolf -Sergei Eisenstein -Royal Rumble 2018 -Kylie Jenner -Super Bowl score -Super Bowl score -Super Blue Blood Moon -Adam Rippon -JUUL -Kylie Jenner -Grammys 2018 -Mikaela Shiffrin -NBA Trades -Florida shooting -Alex Reimer -Fortnite New Map -Chloe Kim -Kim Kardashian -Kylie Jenner -Kylie Jenner Baby Girl -Josh McDaniels -Kentucky shooting -Florida shooting -Super Bowl Commercials 2018 -Kim Kardashian -Government shutdown 2018 -NBA Trades -SpaceX -Wilder Penfield -Patriots -Larry Nassar -Jimmy Garoppolo -Super Bowl score -Blake Griffin -Virginia Woolf -Justin Timberlake -Cavs -Black Panther -Sergei Eisenstein -Wilder Penfield -Nikki Haley -Larry Nassar -UFC 220 -Super Bowl score -Government Shutdown Meaning -Fredo Santana -Women's March 2018 -Sergei Eisenstein -Government Shutdown -Government shutdown -Super Bowl 2018 -Paula Modersohn-Becker -Pro Bowl 2018 -Larry Nassar -Virginia Woolf -Bob Dole -Walter Payton -Government Shutdown -Elizabeth Blackwell -Wilder Penfield -Elizabeth Blackwell -Sergei Eisenstein -XFL -Government Shutdown -Edwin Jackson -Rasual Butler -Justin Timberlake -Kristaps Porzingis -SpaceX -Winter Olympics -NBA Trades -Paula Modersohn-Becker -Larry Nassar -Super Bowl Commercials 2018 -Virginia Woolf -Justin Timberlake -Amazon HQ2 -Jessica Chastain -Pro Bowl 2018 -Super Bowl 2018 -Nintendo Labo -Jamie Dornan -Timor Leste -Vikings Vs Eagles -Pink -Carter G. Woodson -Elizabeth Blackwell -Football Playoffs 2018 -Carter G. Woodson -Black Panther -Ann Curry -Super Bowl score -Super Bowl 2018 -February -Cavs -Edwin Jackson -Paula Modersohn-Becker -Royal Rumble 2018 -Florida shooting -Venom -Virginia Woolf -Monster Hunter World -Super Bowl 2018 -Patriots -Mark Salling -Sergei Eisenstein -Government Shutdown -Joy Villa -Winter Olympics -Chris Paul -Wilder Penfield -Ash Wednesday -Chinese New Year 2018 -Wilder Penfield -Elton John -New England Patriots owner -Grammys 2018 -Mikaela Shiffrin -XFL -Tyler Hilinski -Royal Rumble 2018 -Blood Moon -Elizabeth Blackwell -Carter G. Woodson -Peter Rabbit -Daryle Singletary -Patriots -Alaska earthquake -Wilder Penfield -Larry Nassar -Elizabeth Blackwell -School Closings -Mattie Larson -Justin Timberlake -Bitcoin Price -Paula Modersohn-Becker -Zion Williamson -Florida shooting -Justin Timberlake -State of the Union -The 15:17 to Paris -Sergei Eisenstein -Senior Bowl -SpaceX -Kentucky shooting -Uma Thurman -Patriots -Super Bowl 2018 -Black Panther -Paula Modersohn-Becker -Early Man -Grammys 2018 -Patriots -Sergei Eisenstein -Natalie Portman -Rodney Hood -This Is Us -Super Bowl score -Super Bowl 2018 -Elizabeth Blackwell -XFL -Emily Sweeney -Shaun White -Alex Smith -Brynn Cameron -Sergei Eisenstein -Wilder Penfield -fake news awards -Obama portrait -This Is Us -SpaceX -Childish Gambino -Patriots -XFL -Elton John -Royal Rumble 2018 -Princess Eugenie -Government shutdown -Super Bowl score -Steve Wynn -Grammys 2018 -LeBron James -Winter Olympics -Super Bowl 2018 -Sergei Eisenstein -Justin Timberlake -Super Bowl 2018 -Super Bowl score -Justin Timberlake -Roger Federer -Super Bowl 2018 -Super Bowl score -Gigi Hadid -Kylie Jenner -Chicago West -Super Bowl Commercials 2018 -Super Bowl score -Wilder Penfield -Paula Modersohn-Becker -Wilder Penfield -Paula Modersohn-Becker -Mexico earthquake -Ash Wednesday -Vanessa Marcil -Super Bowl score -Nathan Chen -Elizabeth Blackwell -earthquake -LeBron James -Joe Kennedy -Alaska earthquake -Patriots -Carter G. Woodson -Trump State of the Union -Patti LuPone -Paula Modersohn-Becker -Kawhi Leonard -Kylie Jenner -Patriots -Carter G. Woodson -Vikings Vs Eagles -Carter G. Woodson -Shibutani -Patriots -Government Shutdown -Valentines Day Images -Florida shooting -Valentines Day Cards -Kylie Jenner -NBA Trades -Olympics 2018 -Super Bowl 2018 -Kylie Jenner -Elizabeth Blackwell -Lakers -Winter Olympics -Samson -Super Bowl 2018 -Bellator 192 -Adam Rippon -Mexico earthquake -Jason Kelce -Pro Bowl 2018 -UFC 220 -Paula Modersohn-Becker -Malcom Butler -Paula Modersohn-Becker -Super Bowl 2018 -Vikings Vs Eagles -This Is Us -Megan Barry -Super Bowl 2018 -SpaceX -Adam Rippon -school closings -Elton John -Patriots -Super Bowl 2018 -Elon Musk -All Star Weekend 2018 -Wilder Penfield -Hillary Clinton -Farmers Insurance Open 2018 -Rose McGowan -SAG Awards 2018 -Mardi Gras 2018 -Super Bowl score -Virginia Woolf -Elizabeth Blackwell -Bob Dole -The Home Depot -SpaceX -Johnny Weir -Elizabeth Blackwell -Super Bowl score -Carter G. Woodson -Carter G. Woodson -Joe Kennedy -NBA Trades -Lindsey Vonn -Virginia Woolf -Memo -What Time Is The Super Bowl -Virginia Woolf -Elizabeth Blackwell -Oar Olympics -Bradie Tennell -Sergei Eisenstein -Winter Olympics -Memo -Patriots -Scott Baio -Larry Nassar -NBA Trades -Jon Huntsman -Patriots -Altered Carbon -Mcdonald's -XFL -Paula Modersohn-Becker -Dwyane Wade -Florida shooting -Carter G. Woodson -Elizabeth Blackwell -Happy Valentines Day -Elizabeth Blackwell -Winter Olympics -Super Bowl 2018 -Venom -Super Bowl score -Wing Bowl 2018 -Super Bowl 2018 -Florida shooting -State of the Union -Halsey -Government Shutdown -Vic Damone -Virginia Woolf -Frank Reich -Elizabeth Blackwell -Meteor -Alaska earthquake -Sergei Eisenstein -Paula Modersohn-Becker -Black Panther -Luke Wilson -Florida shooting -Sammy Sosa -Virginia Woolf -Paula Modersohn-Becker -Paula Modersohn-Becker -Ash Wednesday -Cloverfield Paradox -Justin Timberlake -Patriots -Virginia Woolf -Patti LuPone -Childish Gambino -Kylie Jenner -Government Shutdown -Chinese New Year 2018 -Ash Wednesday -Wilder Penfield -Florida shooting -Bitcoin Price -Alaska earthquake -Elizabeth Blackwell -Vikings Vs Eagles -Google docs -Winter Olympics -Elizabeth Blackwell -Paula Modersohn-Becker -Oscar Nominations 2018 -Super Bowl 2018 -Super Bowl score -Chris Stapleton -Grammys 2018 -Joe Kennedy -Celtics -Winter Olympics -Happy Valentines Day -Wilder Penfield -Scott Baio -Winter Olympics -Wilder Penfield -Justin Timberlake -Larry Nassar -Chris Paul -Elizabeth Blackwell -Shaun White -Sergei Eisenstein -Patriots -School Closings -Football Playoffs 2018 -Government shutdown 2018 -Wilder Penfield -Paula Modersohn-Becker -Government Shutdown -Carter G. Woodson -Florida shooting -Super Bowl 2018 -Carrie Underwood -Dane Cook -Kingdom Come Deliverance -Oar Olympics -Jo Jo White -Columbine -Super Bowl score -Kylie Jenner -Winter Olympics -Winter Olympics -Fifty Shades Freed -Florida shooting -Elizabeth Blackwell -Larry Nassar -Paula Modersohn-Becker -Winter Olympics -Wilder Penfield -Isaiah Thomas -Black Panther -Google Drive -Paula Modersohn-Becker -Winter Olympics -Google Classroom -Sergei Eisenstein -Cory Booker -Winter Olympics -Did the Groundhog See His Shadow -12 Strong -Patriots -Wilder Penfield -Super blue blood Moon -Patriots -Kylie Jenner -Groundhog Day 2018 -Shaun White -Wilder Penfield -Cnbc -Mikaela Shiffrin -Elizabeth Blackwell -Justin Timberlake -Wilder Penfield -Bitcoin Price -Ash Wednesday -Google Classroom -Chloe Kim -Norovirus -Patriots -Fredo Santana -Winter Olympics -Oscar Nominations 2018 -Winter Olympics -Florida shooting -Grammys 2018 -Pro Bowl 2018 -Olympic Medal Count -Justin Timberlake -Wilder Penfield -Paula Modersohn-Becker -Shaun White -Carter G. Woodson -Ann Curry -Wilder Penfield -Steven Tyler -SpaceX -Rob Gronkowski -school closings -Virginia Woolf -Super Bowl score -Carter G. Woodson -Super Bowl 2018 -Gigi Hadid -Blood Moon -Stormi -Evgenia Medvedeva -Paula Modersohn-Becker -Wilder Penfield -Mardi Gras 2018 -Google Classroom -Chloe Kim -Carter G. Woodson -Paula Modersohn-Becker -Fredo Santana -Dow Jones -Rasual Butler -Florida shooting -What Time Is The Super Bowl -State of the Union -Kylie Jenner -Winter Olympics -Dwyane Wade -Paul Ryan -All Star Weekend 2018 -Super blue blood Moon -Florida shooting -Childish Gambino -Virginia Woolf -Kylie Jenner -Government Shutdown -Patriots -Carter G. Woodson -Mark Salling -Wilder Penfield -Winter Olympics -Larry Nassar -Sergei Eisenstein -Super Bowl 2018 -Trump State of the Union -Larry Nassar -Wilder Penfield -State of the Union -Justin Timberlake -Marlon Brando -Pro Bowl 2018 -Joe Kennedy -Ash Wednesday -Super Bowl score -Wilder Penfield -State of the Union -Patriots -school closings -Winter Olympics -Super Bowl score -Robinhood -Super Bowl score -Kylie Jenner -Elizabeth Blackwell -Cedi Osman -Wonder Woman -Super Bowl score -Virginia Woolf -February -Happy Valentines Day -Meteor -Super Bowl 2018 -Eli Manning -Oar Olympics -Super Bowl score -Kesha Grammy -Carter G. Woodson -Michigan State -Cavs -Super Bowl score -Rasual Butler -Kylie Jenner -Winter Olympics -Larry Nassar -Oscar Nominations 2018 -Super Bowl 2018 -Cavs -Carter G. Woodson -Jessica Biel -Elizabeth Blackwell -Larry Nassar -Sergei Eisenstein -Super Bowl 2018 -Wilder Penfield -Grammys 2018 -Sergei Eisenstein -Winter Olympics -Virginia Woolf -Ted Bundy -Carter G. Woodson -Gianni Versace -State of the Union -Wilder Penfield -Logan Paul -James Baldwin -Fifty Shades Freed -Fifty Shades Freed -Black Panther -Winter Olympics -Larry Nassar -Bitcoin Price -Elizabeth Blackwell -Patriots -UFC 220 -Kylie Jenner -Carter G. Woodson -earthquake -Dennis Edwards -Super Bowl score -Warren Miller -Super Bowl 2018 -Todd Haley -Royal Rumble 2018 -Super Bowl score -Super blue blood Moon -Vikings vs Eagles -Wilder Penfield -Government shutdown -Dwyane Wade -Solo Trailer -Elizabeth Blackwell -Bob Dole -Black Panther -This Is Us -Super Bowl score -Super Bowl Commercials 2018 -Princess Eugenie -Johnny Weir -Super Bowl 2018 -Mickey Jones -Justin Timberlake -Government Shutdown -Sergei Eisenstein -Grammys 2018 -Forever My Girl -Julie Ertz -Wilder Penfield -Government Shutdown Meaning -Sergei Eisenstein -Olivia Culpo -SpaceX -Kylie Jenner -Vikings Vs Eagles -Harley Barber -Kylie Jenner -Black Panther -Royal Rumble 2018 -Florida shooting -Florida shooting -Shaun White -Mark Salling -Dow Jones -Valentines Day -Tom Brady daughter -Bill Belichick -Alex Smith -Friends movie -Virginia Woolf -Russell Wilson -Super Bowl score -NBA Trades -Super Bowl score -Super Bowl score -Black Panther -This Is Us -Larry Nassar -Elizabeth Blackwell -SpaceX -Paula Modersohn-Becker -Carter G. Woodson -Wilder Penfield -Patriots -Sergei Eisenstein -Alex Reimer -Early Man -Bitcoin Price -Elizabeth Blackwell -Carter G. Woodson -Paula Modersohn-Becker -Chinese New Year 2018 -United States Of America Winter Olympics -Pro Bowl 2018 -Mark Salling -Steve Wynn -Super Bowl Commercials 2018 -Mardi Gras 2018 -Amy Schumer -Groundhog Day 2018 -Government Shutdown -Florida shooting -Mueller -Kim Kardashian -Jessica Chastain -Jessica Chastain -NHL All Star Game -Blue Ivy -Grammys 2018 -earthquake today -Kentucky shooting -Paula Modersohn-Becker -What Time Is The Super Bowl -Super Bowl 2018 -Daryle Singletary -Elizabeth Blackwell -Wilder Penfield -Mike Tomlin -Chief Wahoo -Alessia Cara -Super Bowl 2018 -Carter G. Woodson -Patriots -Dwyane Wade -Government shutdown 2018 -Chinese New Year 2018 -Super Bowl 2018 -Stormi -Vikings Vs Eagles -Shaun White -Vikings Vs Eagles -Virginia Woolf -Patriots -Simona Halep -Westerville Ohio -Black Panther -Carter G. Woodson -Google docs -Alison Brie -Carter G. Woodson -Grammys 2018 -LeBron James -Edwin Jackson -Super Bowl score -Government Shutdown -Daryle Singletary -Shaun White -Carter G. Woodson -Ash Wednesday -Patriots -Super Bowl score -Wilder Penfield -Super Bowl 2018 -Government shutdown 2018 -Adam Rippon -Grammys 2018 -Google Drive -Grammys 2018 -Florida shooting -Alessia Cara -Google Drive -Joe Kennedy -Harley Barber -Don Lemon -Hope Hicks -John Mahoney -Carter G. Woodson -Super Bowl 2018 -fake news awards -Sergei Eisenstein -Ellen DeGeneres -LeBron James -Patriots -Blake Griffin -Elizabeth Blackwell -Vanessa Marcil -Oscar Nominations 2018 -Vikings vs Eagles -SpaceX -Super blue blood Moon -Celebrity Big Brother cast -Carter G. Woodson -Virginia Woolf -Florida shooting -NFC Championship Game 2018 -Blake Griffin -Presidents Day 2018 -New England Patriots owner -Kylie Jenner -Virginia Woolf -Paula Modersohn-Becker -Justin Timberlake -Patriots -Kylie Jenner -IXL -Sergei Eisenstein -Winter Olympics -Kylie Jenner -Shaun White -Carter G. Woodson -Jenna Morasca -Virginia Woolf -Obama portrait -Sal Castro Middle School -School closings -Larry Nassar -Winter Olympics -Bitcoin Price -SpaceX -Pro Bowl 2018 -Government Shutdown -Steve Wynn -This Is Us -Sergei Eisenstein -State of the Union -Florida shooting -Elizabeth Blackwell -Black Panther -Kylie Jenner -The Home Depot -Kylie Jenner -Fredo Santana -Casey Affleck -State of the Union -Kylie Jenner -Carter G. Woodson -Dow Jones -Rodney Hood -Winter Olympics -Oscar Nominations 2018 -Florida shooting -Grammys 2018 -Mark Salling -Super Bowl 2018 -Shaun White -Bob Dole -Steve Wynn -State of the Union -Larry Nassar -Patriots -Justin Timberlake -Wilder Penfield -Carter G. Woodson -SpaceX -Vince McMahon -Simona Halep -Winter Olympics -Black Panther -Happy Valentines Day -calculator -Gianni Versace -Chicago Weather -school closings -Super Bowl score -Kentucky shooting -Earthquake Today -Real Madrid -Alison Brie -Obama portrait -Sergei Eisenstein -Football Playoffs 2018 -National Pizza Day -Grammys 2018 -Virginia Woolf -Paula Modersohn-Becker -Super Bowl score -Paula Modersohn-Becker -Adam Rippon -Winter Olympics -Elizabeth Blackwell -Winter Olympics -Happy Valentines Day -Esteban Loaiza -Carter G. Woodson -Super Bowl score -Jessica Chastain -Blake Griffin Trade -Kylie Jenner -Kylie Jenner -Super Bowl 2018 -Quincy Jones -slides -Justin Timberlake -Super Bowl score -Trump State of the Union -Winter Olympics -Tom Izzo -Super Bowl 2018 -Blue Ivy -Wilder Penfield -Elizabeth Blackwell -Winter Olympics -Winter Olympics -Chloe Kim -NBA Trades -Yu Darvish -Wilder Penfield -Super Bowl score -Wilder Penfield -Florida shooting -Wilder Penfield -Virginia Woolf -Reg E Cathey -Justin Timberlake -Adam Schiff -Wilder Penfield -Happy Valentines Day -Grammys 2018 -Government Shutdown -Farmers Insurance Open 2018 -Patriots -Obama portrait -Edwin Jackson -Super Bowl 2018 -Patriots -Mikaela Shiffrin -IXL -Drake -Kim Kardashian -SAG Awards 2018 -Vincent Zhou -The 15:17 to Paris -SpaceX -Dwyane Wade -Super Bowl score -Super Bowl score -Virginia Woolf -Doomsday Clock -Winter Olympics -Winter Olympics -Government Shutdown -Wilder Penfield -Alexander Polinsky -State of the Union -Florida shooting -Steve Wynn -Kylie Jenner -Sergei Eisenstein -Zion Williamson -Nancy Pelosi -What Time Is The Super Bowl -Patriots -Puppy Bowl 2018 -Cavs -Jessica Chastain -Alexander Polinsky -NBA Trades -Florida shooting -Patriots -Elizabeth Blackwell -Ursula Le Guin -Grammys 2018 -Super Bowl 2018 -Super Bowl score -Super Bowl 2018 -Jamie Dornan -Lindsey Vonn -Super Bowl score -Early Man -What Time Is The Super Bowl -Tom Brady daughter -All Star Weekend 2018 -Tyler Hilinski -Sergei Eisenstein -Nba All Star 2018 -Cloverfield Paradox -SAG Awards 2018 -Trey Gowdy -Isaiah Thomas -Heath Ledger -Red Gerard -Tom Brady daughter -Super Bowl score -12 Strong -Florida shooting -Super Bowl 2018 -CBS Sports -Adam Rippon -Carter G. Woodson -Super Bowl 2018 -Gods Plan -Sabrina Dhowre -Sergei Eisenstein -Virginia Woolf -Dwyane Wade -Carter G. Woodson -Joe Kennedy -Paula Modersohn-Becker -Wilder Penfield -Florida shooting -Nascar Schedule -Florida shooting -Elizabeth Blackwell -Virginia Woolf -Virginia Woolf -Amazon stock -Government Shutdown -Valentines Day -JUUL -Elizabeth Blackwell -Dow Jones -When We First Met -Kodak Black -SpaceX -Vikings Vs Eagles -Elizabeth Blackwell -IXL -Florida shooting -Grammys 2018 -Incredibles 2 -JUUL -Sergei Eisenstein -Zion Williamson -Paula Modersohn-Becker -Elizabeth Blackwell -12 Strong -Super Bowl 2018 -Zuleyka Rivera -Oscar Nominations 2018 -Wilder Penfield -Black Panther -Dow Jones -Grammys 2018 -Amazon HQ2 -Winter Olympics -Vikings Vs Eagles -Larry Nassar -Groundhog Day 2018 -Valentines Day -SpaceX -Government Shutdown -Bill Paxton -SpaceX -Rob Delaney -Wonder Woman -Tom Brady daughter -Florida shooting -Sting -Yuzuru Hanyu -Venom -Wilder Penfield -Rasual Butler -Elizabeth Blackwell -Hillary Clinton -Pro Bowl 2018 -Chicago West -Julie Ertz -NBA Trades -Virginia Woolf -SpaceX -Cloverfield Paradox -Super Bowl 2018 -Sal Castro Middle School -Steven Tyler -Sergei Eisenstein -Patriots -Real Madrid -Happy Valentines Day -Paula Modersohn-Becker -Tom Petty -Ash Wednesday -Groundhog Day 2018 -Elizabeth Blackwell -United States Of America Winter Olympics -Duke Basketball -NFC Championship Game 2018 -Vikings Vs Eagles -Call Me by Your Name -Super Bowl 2018 -Taiwan Earthquake Today -Mark Salling -SAG Awards 2018 -Grammys 2018 -Black Panther -Super Bowl 2018 -Happy Valentines Day -Bitcoin Price -Paula Modersohn-Becker -Kylie Jenner -Shaun White -Women's March 2018 -Puppy Bowl 2018 -Paula Modersohn-Becker -Mardi Gras 2018 -Super Bowl 2018 -Walter Payton -Obama portrait -Super Bowl score -Justin Timberlake -Patriots -Lauren Davis -Quincy Jones -Dow Jones -Pink -Mardi Gras 2018 -Super Bowl 2018 -Sergei Eisenstein -Charissa Thompson -Kim Cattrall -Joshua Cooper Ramo -Super Bowl score -Jeff Flake -Elizabeth Blackwell -Adam Rippon -National Pizza Day -Government Shutdown -New England Patriots owner -NBA Trades -Champions League -Super Bowl 2018 -Winter Olympics -Mark Salling -Kylie Jenner -Super Bowl 2018 -Patriots -Paula Modersohn-Becker -Tom Brady -Happy Valentines Day -Carter G. Woodson -Sergei Eisenstein -Virginia Woolf -Larry Nassar -Bitcoin Price -Florida shooting -Monster Hunter World -Bitcoin Price -Robinhood -Virginia Woolf -Danielle Herrington -Elton John -Paula Modersohn-Becker -Patriots -Rob Gronkowski -Mark Salling -Virginia Woolf -Mardi Gras 2018 -Sergei Eisenstein -Patriots -Mickey Jones -National Pizza Day -Robinhood -Winter Olympics -Dwyane Wade -Government shutdown -Grammys 2018 -Tyler Hilinski -Dane Cook -Memo -Sal Castro Middle School -Black Panther -Patriots -Fredo Santana -Fredo Santana -NFL Honors -Government Shutdown -Justin Timberlake -Carter G. Woodson -Tessa Virtue -Paula Modersohn-Becker -Kylie Jenner -Super Bowl score -Patriots -Harley Barber -Government Shutdown -Shaun White -Neil Diamond -Wilder Penfield -Florida shooting -Sergei Eisenstein -Super blue blood Moon -Dennis Edwards -Super Bowl score -Carrie Underwood -Terrell Owens -Oscar Nominations 2018 -Black Panther -Justin Timberlake -What Time Is The Super Bowl -Winter Olympics -Black Panther -Patriots -Carter G. Woodson -Sergei Eisenstein -Super Bowl score -Carter G. Woodson -Sergei Eisenstein -Jennifer Aniston -What Time Is The Super Bowl -Patriots -Sergei Eisenstein -Peter Rabbit -New England Patriots owner -What Time Is The Super Bowl -Super Bowl score -calculator -Grammys 2018 -Johnny Weir -Lil Pump -Sergei Eisenstein -Bitcoin Price -Dow Jones -Elizabeth Blackwell -Sergei Eisenstein -UFC 220 -Elizabeth Blackwell -SAG Awards 2018 -Chloe Kim -Elizabeth Blackwell -LeBron James -Florida shooting -Super Bowl 2018 -Winter Olympics -Sergei Eisenstein -This Is Us -School Closings -Rob Porter -Bruno Mars -Patriots -Chinese New Year 2018 -Paula Modersohn-Becker -Meteor -Groundhog Day 2018 -Government shutdown -Sergei Eisenstein -Justin Timberlake -Super Bowl 2018 -Josh McDaniels -Super Bowl score -Puppy Bowl 2018 -Dane Cook -Robby Anderson -Blue Moon -Chinese New Year 2018 -Justin Timberlake -Florida shooting -Pro Bowl 2018 -Winter Olympics -Sergei Eisenstein -Super blue blood Moon -Paula Modersohn-Becker -New England Patriots owner -curling -Pro Bowl 2018 -Sergei Eisenstein -Super Bowl score -Grammys 2018 -NBA Trades -Maze Runner: The Death Cure -Florida shooting -Valentines Day -Wilder Penfield -Government Shutdown -Jeremy London -Kylie Jenner -Real Madrid -JUUL -Government shutdown 2018 -Elizabeth Blackwell -Red Gerard -Paula Modersohn-Becker -Winter Olympics -Naya Rivera -SpaceX -Jo Jo White -Super Bowl 2018 -Vanessa Marcil -Super blue blood Moon -Hostiles -Florida shooting -Carrie Underwood -Wonder Woman -Sergei Eisenstein -Carter G. Woodson -Super Bowl score -Patti LuPone -Wilder Penfield -Virginia Woolf -Wilder Penfield -Oar Olympics -Sergei Eisenstein -Atlanta Weather -Sergei Eisenstein -Justin Timberlake -Mardi Gras 2018 -Government Shutdown -Michelle Obama -SpaceX -Sergei Eisenstein -Florida shooting -What Time Is The Super Bowl -Phantom Thread -Bitcoin Price -Wilder Penfield -SAG Awards 2018 -Super Bowl score -Adam Rippon -Carl Higbie -Virginia Woolf -Virginia Woolf -Joe Kennedy -Andrew McCabe -Carter G. Woodson -Super Blue Blood Moon -stock market -Vikings Vs Eagles -What Time Is The Super Bowl -Kylie Jenner -Obama portrait -Elizabeth Blackwell -Carter G. Woodson -Fb Stock -Alexa Commercial -XFL -Virginia Woolf -Wilder Penfield -Mardi Gras 2018 -Celtics -Real Madrid -Groundhog Day 2018 -Steve Mcnair -Super Bowl score -Chinese New Year 2018 -Virginia Woolf -Super Bowl 2018 -Chloe Kim -Super Bowl score -Black Panther -Paula Modersohn-Becker -Anthony Davis -Trump Hair -Virginia Woolf -State of the Union -Government Shutdown -Winter Olympics -Wilder Penfield -Super Bowl 2018 -Sergei Eisenstein -John Mahoney -John Mahoney -Winter Olympics -Dow Jones -Paula Modersohn-Becker -Winter Olympics -Florida shooting -Shaun White -Government Shutdown -Tony Romo -The Alienist -Solo Trailer -Carter G. Woodson -CBS Sports -Elizabeth Blackwell -Fredo Santana -Super Bowl score -Scandal -Justin Timberlake -Bernie Sanders -Shaun White -SpaceX -Kylie Jenner -Tom Brady daughter -Fredo Santana -Winter Olympics -SpaceX -school closings -Government shutdown -Happy Valentines Day -Olympic medal count -Stormi -Conor McGregor -Chris Stapleton -Doomsday Clock -New England Patriots owner -What Time Is The Super Bowl -Carter G. Woodson -SAG Awards 2018 -What Time Is The Super Bowl -Bitcoin Price -Josh McDaniels -Patriots -Sergei Eisenstein -Florida shooting -Cavs -Carter G. Woodson -SpaceX -Kesha Grammy -Rose McGowan -Sammy Sosa -LeBron James -Kratom -Florida shooting -NBC Sports -Alex Smith -Sergei Eisenstein -Kylie Jenner -Ash Wednesday -Elizabeth Blackwell -Super Bowl Commercials -Royal Rumble 2018 -Duke Basketball -Oscar Nominations 2018 -Get Out -Elizabeth Blackwell -Cloverfield Paradox -Elizabeth Blackwell -Chloe Kim -National Pizza Day -Larry Nassar -Government Shutdown -Alison Brie -Johnny Weir -Terrell Owens -Sergei Eisenstein -Super Bowl score -John Mahoney -Grammys 2018 -Kylie Jenner -Paula Modersohn-Becker -Carter G. Woodson -Google Drive -Michigan State -State of the Union -Super Bowl score -Patriots -What Time Is The Super Bowl -Shaun White -Marlon Brando -CNN -Virginia Woolf -Happy Valentines Day -OKC Thunder -Carter G. Woodson -Government Shutdown -Virginia Woolf -Wilder Penfield -Mardi Gras 2018 -Rasual Butler -Meteor -Black Panther -Winter Olympics -Dow Jones -Cherry Seaborn -Woody Allen -Alex Smith -Carter G. Woodson -Wilder Penfield -Sergei Eisenstein -Jennifer Aniston -Carter G. Woodson -Super Bowl 2018 -Chicago West -Lady Bird -Olive Garden -Chris Mazdzer -Grammys 2018 -Robert Wagner -Johnny Weir -Quentin Tarantino -Joe Kennedy -Hope Hicks -AFC Championship Game 2018 -Winter Olympics -Virginia Woolf -Ash Wednesday -Shaun White -Florida shooting -Kim Cattrall -Super Bowl Commercials 2018 -Patriots -Winter Olympics -Winter Olympics -Rihanna -Justin Timberlake -Super Bowl score -Isaiah Canaan -Fifty Shades Freed -Winter Olympics -State of the Union -Carter G. Woodson -Paula Modersohn-Becker -Florida shooting -Super Bowl 2018 -Zuleyka Rivera -Patriots -Patti LuPone -Super Bowl score -Kylie Jenner -What Time Is The Super Bowl -Olympics 2018 -Super Bowl score -Alaska earthquake -Wilder Penfield -Enzo Amore -Kylie Jenner -Paula Modersohn-Becker -Super Bowl score -XFL -Government Shutdown -Justin Timberlake -Samson -Culture 2 -Sergei Eisenstein -Government shutdown -Winter Olympics -Sergei Eisenstein -Prince William -What Time Is The Super Bowl -Sergei Eisenstein -Paula Modersohn-Becker -Despacito -Matt Patricia -Super Bowl score -Carter G. Woodson -Virginia Woolf -Florida shooting -Oscar Gamble -Solo Trailer -Dwyane Wade -What Time Is The Super Bowl -Kylie Jenner -Kelsey Grammer -Tonga -Virginia Woolf -Sergei Eisenstein -VIX -Obama portrait -Florida shooting -Dow Jones -Florida shooting -Black Panther -Wilder Penfield -Grammys 2018 -Patriots -Tom Brady -Sergei Eisenstein -What Time Is The Super Bowl -Josh McDaniels -Lunar eclipse -Dow Jones -Shaun White -Winter Olympics -Tom Petty -Paula Modersohn-Becker -calculator -Phantom Thread -UFC 220 -Valentine's Day -Super Bowl 2018 halftime show -Childish Gambino -Justin Timberlake -SpaceX -Solo Trailer -Jo Jo White -Super Bowl 2018 -Black Panther -Bitcoin Price -Jimmy Garoppolo -Mark Salling -New England Patriots owner -Elizabeth Blackwell -Chloe Kim -Kim Kardashian -Maddie Mastro -Super Bowl 2018 -Wilder Penfield -Apolo Ohno -Fredo Santana -Black Panther -Sal Castro Middle School -Jennifer Aniston -Virginia Woolf -Shiffrin -What Time Is The Super Bowl -Sergei Eisenstein -Virginia Woolf -Florida shooting -Johnny Weir -Den of Thieves -Eli Manning -Winter Olympics -Obama portrait -Rasual Butler -Virginia Woolf -Florida shooting -Cavs -Mark Salling -Justin Timberlake -Betty White -State of the Union -Daytona 500 -Justin Timberlake -Nathan Chen -Wilder Penfield -Montreal Cognitive Assessment -NBA Trades -Elizabeth Blackwell -James Baldwin -Justin Timberlake -Wilder Penfield -SpaceX -Grammys 2018 -Ohio State basketball -Super Bowl 2018 -Florida shooting -Super Bowl 2018 -Gianni Versace -Black Panther -Ronaldinho -Paula Modersohn-Becker -Wilder Penfield -Sergei Eisenstein -Patriots -Patriots -Tom Petty -Winter Olympics -Elizabeth Blackwell -NFC Championship Game 2018 -Carter G. Woodson -Elizabeth Blackwell -Winter Olympics -Carter G. Woodson -State of the Union -Wilder Penfield -Florida shooting -Jen Selter -Virginia Woolf -Alaska earthquake -Patriots -Virginia Woolf -Sergei Eisenstein -Oscar Nominations 2018 -Super Bowl 2018 -Josh McDaniels -Paula Modersohn-Becker -stock market -Deadpool 2 -Celebrity Big Brother cast -Black Panther -Groundhog Day 2018 -Elizabeth Blackwell -Lunar eclipse -Dwyane Wade -Alaska earthquake -Sergei Eisenstein -Larry Nassar -Kylie Jenner -Dow Jones -Winter Olympics -Valentines Day Memes -State of the Union -LeBron James -Royal Rumble 2018 -Government shutdown -Adam Schiff -Brynn Cameron -Bitcoin Price -Wilder Penfield -XFL -Super Bowl 2018 -Joe Kennedy -Florida shooting -Tomi Lahren -Did the Groundhog See His Shadow -Happy Valentines Day -Black Panther -Justin Timberlake -Super Bowl 2018 -What Time Is The Super Bowl -Super Bowl score -Sergei Eisenstein -Maze Runner: The Death Cure -Winter Olympics -Wilder Penfield -Oar Olympics -Justin Timberlake -Happy Valentines Day -Carter G. Woodson -Mike Vrabel -SAG Awards 2018 -Yahoo Finance -Winter Olympics -Enzo Amore -Super Bowl 2018 -Shaun White -Google Drive -Larry Nassar -Black Panther -Wilder Penfield -Super Bowl 2018 -luge -Rodney Hood -Google Classroom -Paula Modersohn-Becker -Elizabeth Blackwell -Winter Olympics -Super Bowl score -Paula Modersohn-Becker -Government Shutdown -Sergei Eisenstein -Isaiah Thomas -Jeff Flake -SZA -Grammys 2018 -Omarosa -Government Shutdown Meaning -Patriots -Super blue blood Moon -Florida shooting -Adam Rippon -Olympic medal count -Kevin Love -United States Of America Winter Olympics -Kim Kardashian -Carter G. Woodson -LeBron James -Anna Kournikova -Carter G. Woodson -Vanessa Trump -Larry Nassar -Valentines Day -Patriots -Korea -Paula Modersohn-Becker -Sergei Eisenstein -Sergei Eisenstein -Alaska earthquake -SAG Awards 2018 -Super Bowl Commercials 2018 -Did the Groundhog See His Shadow -Virginia Woolf -Winter Olympics -Patriots -Duke Basketball -This Is Us -Olympic Medal Count -Wilder Penfield -Justin Timberlake -Real Madrid -Jennifer Aniston -Shiffrin -Virginia Woolf -Sergei Eisenstein -Lil Pump -Ash Wednesday -Government Shutdown -Dwyane Wade -Nancy Pelosi -Grammys 2018 -Groundhog Day 2018 -Justin Timberlake -Classroom -Carrie Underwood -Government Shutdown -Elizabeth Blackwell -Government Shutdown Meaning -Elizabeth Blackwell -Blake Griffin -Super Bowl score -Carter G. Woodson -Paula Modersohn-Becker -Shaun White -Portia de Rossi -Mardi Gras 2018 -Terrell Owens -Oscar Nominations 2018 -Groundhog Day 2018 -Patriots -Johnny Weir -Winter Olympics -Johnny Weir -Virginia Woolf -Dow Jones -Alex Smith -Johnny Manziel -Elizabeth Blackwell -Sergei Eisenstein -Bitcoin Price -Lakers -Trump State of the Union -Sergei Eisenstein -Melania Trump -Sergei Eisenstein -Wilder Penfield -Vikings vs Eagles -Oscar Nominations 2018 -Winter Olympics -Justin Timberlake -Camila Cabello -Government Shutdown -State of the Union -Vanessa Trump -Wilder Penfield -Justin Timberlake -Government Shutdown -Groundhog Day 2018 -Wilder Penfield -Andrew Cunanan -Luke Wilson -What Time Is The Super Bowl -Shani Davis -Earthquake Today -Elizabeth Blackwell -Solo Trailer -Justin Timberlake -Super Bowl 2018 -Rodney Hood -Winter Olympics -Elizabeth Blackwell -Elizabeth Blackwell -Real Madrid -Joe Kennedy -Terry Bradshaw -Carter G. Woodson -Super Bowl score -Presidents Day 2018 -Elton John -Grammys 2018 -Montreal Cognitive Assessment -Super Bowl score -Winter Olympics -Winter Olympics -Black Panther -SpaceX -Elizabeth Blackwell -Daryle Singletary -Super Bowl 2018 -Super blue blood Moon -Dow Jones -Virginia Woolf -Carter G. Woodson -Larry Nassar -Daryle Singletary -Mardi Gras 2018 -CNN -Happy Valentines Day -Carter G. Woodson -Paula Modersohn-Becker -Carter G. Woodson -CNN -Super Bowl Commercials -Joe Kennedy -Florida shooting -Mark Salling -Paula Modersohn-Becker -Mike Tomlin -Patriots -Kim Kardashian -Patriots -Sarah Barthel -Josh McDaniels -Florida shooting -Justin Timberlake -fake news awards -Super Bowl 2018 -Dennis Edwards -Get Out -Paula Modersohn-Becker -NSA -Ellen Pompeo -Cavs -Kentucky shooting -Costco Wholesale -Shaun White -Elizabeth Blackwell -Grammys 2018 -Yu Darvish -Carter G. Woodson -Winter Olympics -BitConnect -Houston Rockets -Wilder Penfield -Sergei Eisenstein -Fredo Santana -This Is Us -Sergei Eisenstein -Luke Wilson -Larry Nassar -Carter G. Woodson -Super Bowl score -Black Panther -Super Bowl Commercials 2018 -Super Bowl 2018 -Paula Modersohn-Becker -NBA Trades -Wilder Penfield -Kesha -Kristaps Porzingis -SAG Awards 2018 -Super Bowl score -Wilder Penfield -Paula Modersohn-Becker -XFL -Manchester United -Alex Smith -Government shutdown -Black Panther -State of the Union -Wilder Penfield -Joe Kennedy -Reg E Cathey -Peter Rabbit -Carter G. Woodson -SpaceX -Kim Cattrall -Super Blue Blood Moon -What Time Is The Super Bowl -Government Shutdown -Virginia Woolf -Florida shooting -Carter G. Woodson -Florida shooting -CNN -Wilder Penfield -Happy Valentines Day -Evgenia Medvedeva -Florida shooting -Pro Bowl 2018 -Florida shooting -Winter Olympics -Winter Olympics -Paula Modersohn-Becker -Altered Carbon -What Time Is The Super Bowl -Virginia Woolf -SpaceX -Florida shooting -Elizabeth Blackwell -Alex Reimer -Patriots -Winter Olympics -What Time Is The Super Bowl -Wilder Penfield -Google Drive -Sergei Eisenstein -Mark Salling -Kylie Jenner -Jason Momoa -What Time Is The Super Bowl -Black Panther -Kylie Jenner Baby Girl -Isaiah Thomas -Chicago West -CNN -Adam Rippon -Patriots -Justin Timberlake -Grammys 2018 -Winter Olympics -Paula Modersohn-Becker -What Time Is The Super Bowl -Emily Sweeney -Memo -Derrick Rose -Mark Salling -Natalie Portman -Ash Wednesday -Alex Reimer -Rodney Hood -Grammys 2018 -State of the Union -Elizabeth Blackwell -Super Bowl score -Patriots -Chloe Kim -Wilder Penfield -Carter G. Woodson -Carter G. Woodson -Super Bowl score -Cavs -Happy Valentines Day -Grammys 2018 -Scott Baio -Eli Manning -Elizabeth Blackwell -Daryle Singletary -Virginia Woolf -Evgenia Medvedeva -Groundhog Day 2018 -Altered Carbon -Cavs -What Time Is The Super Bowl -Kylie Jenner -Danielle Herrington -Paula Modersohn-Becker -Alex Smith -SAG Awards 2018 -VIX -Winter Olympics -Winter Olympics -Florida shooting -Kylie Jenner Baby Girl -Florida shooting -Real Madrid -Prince William -Patriots -NBA Trades -Cloverfield Paradox -Justin Timberlake -Shani Davis -Vikings Vs Eagles -school closings -Justin Timberlake -Virginia Woolf -Virginia Woolf -Luke Wilson -Justin Timberlake -Government Shutdown -Quincy Jones -Florida shooting -Winter Olympics -Virginia Woolf -Patriots -SpaceX -Justin Timberlake -Government Shutdown -Blake Griffin Trade -Government Shutdown Meaning -Carter G. Woodson -Patriots -NFC Championship Game 2018 -Patty Hearst -Wilder Penfield -Grammys 2018 -Columbine -Earthquake Today -Kylie Jenner -Trey Gowdy -Toys R Us -Michelle Obama -Kris Dunn -NBA Trades -Super Bowl 2018 -Kylie Jenner -Elizabeth Blackwell -Mardi Gras 2018 -Justin Timberlake -Government shutdown -Tom Brady -Fidel Castro -Robert Wagner -Valentines Day -Florida shooting -Virginia Woolf -12 Strong -Paula Modersohn-Becker -Wilder Penfield -Real Madrid -New England Patriots owner -Paula Modersohn-Becker -Toys R Us -Mark Salling -Super blue blood Moon -Meteor -Quincy Jones -Rasual Butler -Wilder Penfield -Ash Wednesday -NBA Trades -Joe Kennedy -Sergei Eisenstein -Lee Miglin -Kylie Jenner -Altered Carbon -Gods Plan -Bill Parcells -Did the Groundhog See His Shadow -Elizabeth Blackwell -Happy Valentines Day -Dow Jones -Vic Damone -Alaska earthquake -Tennys Sandgren -calculator -Pro Bowl 2018 -Wilder Penfield -Solo Trailer -NBA Trades -Kevin Love -Patriots -Justin Timberlake -H&r Block -Carter G. Woodson -Roger Federer -Phantom Thread -FA Cup -Montreal Cognitive Assessment -Super Bowl Commercials 2018 -Carter G. Woodson -Culture 2 -Winter Olympics -Super Bowl 2018 -Paula Modersohn-Becker -Isaiah Canaan -Olympic Medal Count -Florida shooting -Super Bowl 2018 -Kodak Black -Did the Groundhog See His Shadow -Solo Trailer -Oscar Nominations 2018 -Super Bowl score -Oscar Nominations 2018 -Presidents Day 2018 -Sergei Eisenstein -State of the Union -SAG Awards 2018 -Elizabeth Blackwell -Best Superbowl Commercials 2018 -Patriots -Wilder Penfield -Winter Olympics -Larry Nassar -Paula Modersohn-Becker -Grey's Anatomy -Virginia Woolf -Patriots -Sergei Eisenstein -Black Panther -stock market -Super Bowl 2018 -Wilder Penfield -Eric Wood -Eli Manning -Larry Nassar -Andrew Cunanan -Dow Jones -Paula Modersohn-Becker -Kim Kardashian -Government Shutdown -Jennifer Aniston -Shaun White -Happy Valentines Day -Andrew McCabe -Chloe Kim Snowboarder -Paula Modersohn-Becker -CNN -Grammys 2018 -UFC 220 -Super Bowl 2018 -Vince McMahon -Mardi Gras 2018 -Justin Timberlake -Kylie Jenner -Zion Williamson -Kawhi Leonard -Justin Timberlake -Grammys 2018 -Mardi Gras 2018 -State of the Union -SpaceX -Virginia Woolf -Grammys 2018 -Carter G. Woodson -Fifty Shades Freed -Winter Olympics -Sergei Eisenstein -Monster Hunter World -Larry Nassar -Conor McGregor -Fredo Santana -Rose McGowan -Black Panther -Sergei Eisenstein -Happy Valentines Day -Dua Lipa -New England Patriots owner -Mardi Gras 2018 -Super Bowl score -Black Panther -Doomsday Clock -Valentines Day Memes -Government Shutdown -Elton John -Sergei Eisenstein -Oscar Nominations 2018 -What Time Is The Super Bowl -Johnny Manziel -State of the Union -Shaun White -Sergei Eisenstein -Super Bowl Commercials 2018 -Super Bowl 2018 -Grammys 2018 -Bitcoin Price -Grammys 2018 -Florida shooting -Super Bowl score -Fifty Shades Freed -Dwyane Wade -NBA Trades -Elizabeth Blackwell -Carter G. Woodson -Winter Olympics -Paula Modersohn-Becker -Groundhog Day 2018 -Super Bowl score -Yu Darvish -Justin Timberlake -Obama portrait -Kylie Jenner -Sergei Eisenstein -United States Of America Winter Olympics -Rodney Hood -Virginia Woolf -Terrell Owens -State of the Union -Blood Moon -Solo Trailer -Bitcoin Price -Carter G. Woodson -What Time Is The Super Bowl -Florida shooting -pissant -Florida shooting -Winter Olympics -Obama portrait -Florida shooting -calculator -State of the Union -Government shutdown -Ash Wednesday -Carter G. Woodson -Wilder Penfield -Virginia Woolf -What Time Is The Super Bowl -SAG Awards 2018 -Dow Jones -Winter Olympics -Winter Olympics -Carter G. Woodson -Carter G. Woodson -John Mahoney -Kylie Jenner -OKC Thunder -Elizabeth Blackwell -Patriots -Chinese New Year 2018 -Olympic Medal Count -Winter Olympics -Andrew Cunanan -Happy Valentines Day -Greg Monroe -Rihanna -Sergei Eisenstein -Vikings vs Eagles -Andrew McCabe -Justin Timberlake -Super Bowl score -Carter G. Woodson -Release The Memo -Carter G. Woodson -Super Bowl Commercials 2018 -Senior Bowl -Kylie Jenner -Blood Moon -New England Patriots owner -Super Bowl 2018 -Super blue blood Moon -Terrell Owens -Tara Lipinski -Tom Petty -Kylie Jenner -Government shutdown -Florida shooting -School Closings -Jennifer Aniston -Apolo Ohno -Hillary Clinton -Patriots -Super Bowl 2018 -Jessica Chastain -Stan Lee -Super Bowl score -earthquake -Oscar Nominations 2018 -What Time Is The Super Bowl -Super Bowl 2018 -Valentines Day -Virginia Woolf -Lunar eclipse -Westerville Ohio -Super Bowl 2018 -fake news awards -What Time Is The Super Bowl -The Resident -Celebrity Big Brother cast -Kesha Grammy -Esteban Loaiza -Florida shooting -Super Bowl score -Elizabeth Blackwell -The 15:17 to Paris -Carter G. Woodson -Sergei Eisenstein -Meteor -Steve Wynn -Esteban Loaiza -Super Bowl score -Tom Brady -Government Shutdown -Zion Williamson -Winter Olympics -Patriots -Lari White -Carter G. Woodson -Groundhog Day 2018 -Google docs -Carter G. Woodson -Emily Sweeney -Groundhog Day 2018 -Bitcoin Price -What Time Is The Super Bowl -Valentines Day Memes -Sergei Eisenstein -SpaceX -Carter G. Woodson -Wilder Penfield -Columbine Shooting -Paula Modersohn-Becker -Government shutdown 2018 -Justin Timberlake -Paula Modersohn-Becker -Patriots -Winter Olympics -Hope Hicks -Mavic Air -What Time Is The Super Bowl -Kylie Jenner -Patriots -Paula Modersohn-Becker -Justin Timberlake -Virginia Woolf -Elizabeth Blackwell -Super Bowl score -Luke Wilson -Ash Wednesday -Super Bowl score -Grammys 2018 -Virginia Woolf -Happy Valentines Day -Kylie Jenner -Super blue blood Moon -Winchester -Super Bowl score -Super blue blood Moon -Elizabeth Blackwell -Carter G. Woodson -Caroline Wozniacki -Patriots -Hostiles -Sammy Sosa -Grammys 2018 -earthquake today -This is Us -Terry Bradshaw -Patriots -Paula Modersohn-Becker -Friends movie -Vikings Vs Eagles -Memo -Daryle Singletary -Virginia Woolf -Jacob Copeland -Wilder Penfield -Super Bowl 2018 -Super Bowl 2018 -State of the Union -Patriots -Super Bowl score -Grammys 2018 -Amazon stock -Jennifer Aniston -Super Bowl 2018 -Forever My Girl -Larry Nassar -Mardi Gras 2018 -Super Bowl Commercials 2018 -Celebrity Big Brother cast -Larry Nassar -Olympic medal count -Vikings vs Eagles -SpaceX -Justin Timberlake -Carter G. Woodson -Ohio State basketball -SpaceX -Super Bowl 2018 -Super Bowl score -Kirstjen Nielsen -Sergei Eisenstein -Super Bowl score -Presidents Day 2018 -Celebrity Big Brother cast -Earthquake Today -Super Bowl score -Carter G. Woodson -Kylie Jenner -Super Bowl 2018 -Winter Olympics -Patriots -Lunar eclipse -Blake Griffin -Wilder Penfield -NBA Trades -Steven Tyler -Kylie Jenner -NBA Trades -Nadal -Quincy Jones -NFC Championship Game 2018 -Snapchat Update -Bob Dole -Elizabeth Blackwell -Alaska earthquake -Paula Modersohn-Becker -Winter Olympics -Florida shooting -Florida shooting -Super Bowl score -Super Bowl score -Larry Nassar -State of the Union -Sergei Eisenstein -Paula Modersohn-Becker -Government Shutdown Meaning -Timor Leste -Elizabeth Blackwell -Virginia Woolf -Super blue blood Moon -Black Panther -Black Panther -Venom -Florida shooting -Super Bowl 2018 -Government Shutdown 2018 -Super Bowl score -Justin Timberlake -Elizabeth Blackwell -UFC 220 -Quincy Jones -Mark Salling -Alex Smith -Carter G. Woodson -Real Madrid -Elizabeth Blackwell -What Time Is The Super Bowl -Winter Olympics -Carter G. Woodson -Kylie Jenner -Paula Modersohn-Becker -Duke Basketball -Winter Olympics -Bitcoin Price -Did the Groundhog See His Shadow -Florida shooting -Chloe Kim -Super Bowl score -Presidents Day 2018 -Chicago West -Valentines Day -Sergei Eisenstein -Google docs -NBC Sports -Justin Timberlake -Mark Salling -Doomsday Clock -Paula Modersohn-Becker -Patriots -Black Panther -Robert Wagner -State of the Union -Kylie Jenner -Winter Olympics -Memo -Manchester United -Oscar Nominations 2018 -Oscar Nominations 2018 -Patriots -Outback Steakhouse -Oscar Nominations 2018 -UFC 220 -Super Bowl 2018 -Paula Modersohn-Becker -Sergei Eisenstein -Trey Gowdy -Government shutdown 2018 -Government Shutdown -Wilder Penfield -Groundhog Day 2018 -Super blue blood Moon -Sergei Eisenstein -This Is Us -Larry Nassar -Elizabeth Blackwell -Sergei Eisenstein -Oscar Nominations 2018 -Wilder Penfield -UFC 220 -Vikings vs Eagles -Super Bowl 2018 -Super Bowl 2018 -Winter Olympics -Kesha Grammy -Sergei Eisenstein -Elizabeth Blackwell -Gus Kenworthy -Kodak Black -Johnny Weir -Elizabeth Blackwell -Virginia Woolf -Chloe Kim -Adam Rippon -Kentucky shooting -Paula Modersohn-Becker -Black Panther -Florida shooting -Scott Baio -school closings -Dow Jones -Waco -Vikings Vs Eagles -Mardi Gras 2018 -Super Bowl score -Carter G. Woodson -State of the Union -Super Bowl score -Paula Modersohn-Becker -Drive -Peter Rabbit -Justin Timberlake -Dwyane Wade -Larry Nassar -Grammys 2018 -Super Bowl score -School Closings -Chinese New Year 2018 -Larry Nassar -Alex Smith -Wilder Penfield -Paula Modersohn-Becker -Chloe Kim -Grammys 2018 -Super Bowl 2018 -Mark Salling -Nancy Pelosi -Happy Valentines Day -Caitlin McHugh -Kylie Jenner -Paula Modersohn-Becker -Chinese New Year 2018 -Florida shooting -Winter Olympics -Super Bowl 2018 -Wilder Penfield -Cloverfield Paradox -Florida shooting -Ash Wednesday -SpaceX -Den of Thieves -SpaceX -Kylie Jenner -Shaun White -Chipper Jones -Larry Nassar -Mikaela Shiffrin -Black Panther -State of the Union -Grammys 2018 -Happy Valentines Day -SpaceX -Florida shooting -Trump State of the Union -FC Barcelona -Fifty Shades Freed -Patriots -Blake Griffin Trade -Columbine -Chris Paul -Elizabeth Blackwell -Kim Kardashian -Champions League -Winter Olympics -Paula Modersohn-Becker -Paula Modersohn-Becker -Adam Rippon -Senior Bowl -Paula Modersohn-Becker -Super Bowl 2018 -Tom Petty -Paula Modersohn-Becker -Elizabeth Blackwell -Royal Rumble 2018 -Florida shooting -Alaska earthquake -Blake Griffin -State of the Union -Super Bowl 2018 -National Pizza Day -Sergei Eisenstein -Chinese New Year 2018 -Paula Modersohn-Becker -Julie Ertz -Google Classroom -Patriots -Chris Paul -Nba All Star 2018 -Kylie Jenner -Royal Rumble 2018 -Elizabeth Blackwell -Hailee Steinfeld -Virginia Woolf -XFL -Elizabeth Blackwell -Carter G. Woodson -Super Bowl score -Groundhog Day 2018 -Wilder Penfield -Sergei Eisenstein -Government Shutdown -Super Bowl 2018 -Trump State of the Union -Black Panther -Quincy Jones -Wilder Penfield -Chinese New Year 2018 -Virginia Woolf -Elizabeth Blackwell -Wilder Penfield -NBA Trades -SpaceX -Carter G. Woodson -Wilder Penfield -Did the Groundhog See His Shadow -Winter Olympics -Dow Jones -Shaun White -Super Bowl score -New California -Sergei Eisenstein -Puppy Bowl 2018 -Super Bowl 2018 -The Alienist -Wilder Penfield -Lindsey Vonn -Super Bowl 2018 -Virginia Woolf -Super Bowl score -Government Shutdown -Winter Olympics -Carter G. Woodson -Winter Olympics -Drake -Winter Olympics -Wilder Penfield -Olympic medal count -Government shutdown 2018 -Super Bowl 2018 -Super Bowl 2018 -Snake -Patriots -Super Bowl 2018 -Super Bowl 2018 -Elizabeth Blackwell -Adam Rippon -Cloverfield Paradox -Virginia Woolf -Mikaela Shiffrin -Alaska earthquake -Jamie Dornan -Vanessa Marcil -Neil Diamond -Alex Smith -Florida shooting -Amy Schumer -Mardi Gras 2018 -Winter Olympics -Josh McDaniels -Fredo Santana -Super blue blood Moon -Friends movie -Virginia Woolf -Paula Modersohn-Becker -Rasual Butler -Wilder Penfield -Oscar Nominations 2018 -Olympics 2018 -Elizabeth Blackwell -Government Shutdown -Obama portrait -Virginia Woolf -Vic Damone -Jennifer Aniston -Valentines Day -Grammys 2018 -Malcom Butler -Carl Higbie -Adam Rippon -Winter Olympics -Childish Gambino -Black Panther -SpaceX -Carter G. Woodson -Ar 15 -Woody Allen -Bitcoin Price -Virginia Woolf -Carter G. Woodson -Super Bowl Commercials 2018 -Jessica Chastain -Virginia Woolf -Carter G. Woodson -LL Bean -CNN -Justin Timberlake -SpaceX -Oscar Nominations 2018 -Wilder Penfield -Lunar eclipse -Wilder Penfield -Government Shutdown -Elizabeth Blackwell -Virginia Woolf -UFC 220 -Mark Salling -Super Bowl score -Jalen Ramsey -Rasual Butler -Kim Kardashian -Paula Modersohn-Becker -Valentines Day -Super Bowl 2018 -Jane Fonda -Super Bowl score -Black Panther -Rodney Hood -Sergei Eisenstein -Jason Kelce -Super blue blood Moon -Virginia Woolf -Chris Mazdzer -SAG Awards 2018 -fake news awards -Bob Marley -Terrell Owens -Ash Wednesday -Bitcoin Price -Carter G. Woodson -SpaceX -Florida shooting -Super Bowl score -Trayvon Martin -Winter Olympics -Patriots -Stock Market Crash Today -Montreal Cognitive Assessment -Grammys 2018 -Sergei Eisenstein -State of the Union -Justin Timberlake -Florida shooting -Patriots -Justin Timberlake -Paula Modersohn-Becker -Yu Darvish -Patriots -Super Bowl score -Wilder Penfield -Celtics -Grammys 2018 -Natalie Wood -Wilder Penfield -Carter G. Woodson -Paula Modersohn-Becker -Elizabeth Blackwell -Elizabeth Blackwell -Senior Bowl -Winter Olympics -Super blue blood Moon -CNN -Justin Timberlake -Carter G. Woodson -Florida shooting -Natalie Wood -Dennis Edwards -NBA Trades -State of the Union -Emily Sweeney -Grammys 2018 -Kylie Jenner -Paula Modersohn-Becker -Winchester -Football Playoffs 2018 -Chinese New Year 2018 -calculator -Drive -Florida shooting -Groundhog Day 2018 -Larry Nassar -Tom Brady -Kylie Jenner -Super Bowl score -Larry Nassar -Black Panther -Valentines Day -AR-15 -Patriots -Winter Olympics -Super Bowl 2018 -Justin Timberlake -Tyler Hilinski -Justin Timberlake -Wilder Penfield -Bill Parcells -MS13 -Jason Kelce -Super Bowl 2018 -Florida shooting -Elizabeth Blackwell -SpaceX -Friends The Movie 2018 -Larry Nassar -Super Bowl 2018 -Patriots -Black Panther -Nba All Star Draft -What Time Is The Super Bowl -Elizabeth Blackwell -Terry Bradshaw -Nadal -Carter G. Woodson -Patriots -Florida shooting -Groundhog Day 2018 -Carter G. Woodson -Carter G. Woodson -Jennifer Aniston -Black Lightning -Cherry Seaborn -Rasual Butler -Brie Larson -Larry Nassar -Super Bowl 2018 -Elton John -school closings -Carter G. Woodson -Elizabeth Blackwell -Paula Modersohn-Becker -Adam Schiff -Wilder Penfield -Paula Modersohn-Becker -Super Bowl 2018 -Sergei Eisenstein -Carter G. Woodson -What Time Is The Super Bowl -Earthquake Today -Patriots -Mattie Larson -Patriots -Wilder Penfield -Super Bowl score -Lunar eclipse -Shaun White -Joe Kennedy -Patriots -Florida shooting -Elon Musk -Government Shutdown -Carter G. Woodson -Dow Jones -Uma Thurman -Wilder Penfield -Cavs -Carter G. Woodson -Patti LuPone -Arsenal -Kim Kardashian -Edwin Jackson -Larry Nassar -Patriots -Super blue blood Moon -Mark Salling -Oscar Nominations 2018 -Cloverfield Paradox -Winter Olympics -Virginia Woolf -Super Bowl 2018 -Winter Olympics -New England Patriots owner -Sergei Eisenstein -stock market -CNN -What Time Is The Super Bowl -Shaun White -Florida shooting -Paula Modersohn-Becker -Hillary Clinton -NBA Trades -Sandy Hook -Kylie Jenner -Government Shutdown 2018 -Super Bowl score -Rasual Butler -Zion Williamson -Despacito -Jessica Chastain -Sergei Eisenstein -Isaiah Thomas -Super Bowl 2018 -Adam Rippon -Virginia Woolf -SAG Awards 2018 -Florida shooting -NBA Trades -United States Of America Winter Olympics -Josh McDaniels -Patti LuPone -Jessica Chastain -Government Shutdown -SAG Awards 2018 -Carter G. Woodson -What Time Is The Super Bowl -Patriots -Super Bowl 2018 -Patriots -Wilder Penfield -Super Bowl score -Kylie Jenner Baby Girl -Super blue blood Moon -Super blue blood Moon -Sergei Eisenstein -The 15:17 to Paris -Alex Reimer -Paula Modersohn-Becker -SpaceX -Memo -Paula Modersohn-Becker -Robert Wagner -Bitcoin Price -Patty Hearst -Google Classroom -Fredo Santana -OKC Thunder -Cavs -Elizabeth Blackwell -Blake Griffin -What Time Is The Super Bowl -Florida shooting -Kesha -Lakers -Paula Modersohn-Becker -Super Bowl Winners -Carter G. Woodson -Elizabeth Blackwell -Elizabeth Blackwell -Den of Thieves -Florida shooting -Tiger Woods -Florida shooting -Scott Baio -Kylie Jenner -Wilder Penfield -School closings -Solo Trailer -United States Of America Winter Olympics -Winter Olympics -Alessia Cara -Winter Olympics -Super blue blood Moon -Google docs -Super blue blood Moon -Kylie Jenner -Carter G. Woodson -All Star Weekend 2018 -Kim Kardashian -Grammys 2018 -Florida shooting -Carter G. Woodson -school closings -Florida shooting -Olympics 2018 -Paula Modersohn-Becker -Winter Olympics -Government Shutdown -Donald Trump Jr -Jennifer Aniston -Bob Marley -Sergei Eisenstein -Super Bowl score -Black Panther -State of the Union -Chris Long -Wilder Penfield -Despacito -Florida shooting -Patriots -Florida shooting -Carter G. Woodson -Olympics 2018 -Winter Olympics -Halsey -Rodney Hood -Wilder Penfield -Virginia Woolf -Vikings Vs Eagles -Release The Memo -Cavs -Bitcoin Price -Florida shooting -Patriots -Super Bowl score -school closings -What Time Is The Super Bowl -Super blue blood Moon -NBC Sports -Winter Olympics -Nba All Star Draft -Super Bowl 2018 -Childish Gambino -Bitcoin Price -Sergei Eisenstein -Black Panther -Super Blue Blood Moon -Grammys 2018 -Hostiles -Florida shooting -What Time Is The Super Bowl -Super Bowl score -shutdown -Justin Timberlake -Winter Olympics -Groundhog Day 2018 -Nascar Schedule -Jennifer Aniston -Wilder Penfield -Government shutdown 2018 -Google docs -Sergei Eisenstein -Florida shooting -Super Blue Blood Moon -Florida shooting -Gus Kenworthy -Florida shooting -National Pizza Day -Winter Olympics -Grammys 2018 -Chloe Kim -Sergei Eisenstein -Grammys 2018 -Rasual Butler -Solo Trailer -Did the Groundhog See His Shadow -SpaceX -Kylie Jenner -Elizabeth Blackwell -Matt Patricia -Virginia Woolf -Florida shooting -Edwin Jackson -Lady Bird -Super Blue Blood Moon -Government Shutdown Meaning -Super Bowl score -Alex Reimer -Google Classroom -Dow Jones -Olympic medal count -Hope Hicks -Shibutani -Robert Mueller -Elizabeth Blackwell -SpaceX -Jessica Chastain -What Time Is The Super Bowl -Patriots -AFC Championship Game 2018 -Patriots -Deadpool 2 -Larry Nassar -Elizabeth Blackwell -Paula Modersohn-Becker -Virginia Woolf -SpaceX -Paula Modersohn-Becker -This is Us -Patriots -Government Shutdown -Johnny Weir -Sergei Eisenstein -State of the Union -Florida shooting -Elizabeth Blackwell -Kim Kardashian -Kristaps Porzingis -Patriots -Government Shutdown 2018 -SpaceX -Waco -Super Bowl 2018 -Timor Leste -Chipper Jones -Winter Olympics -12 Strong -Justin Timberlake -12 Strong -Carter G. Woodson -Fredo Santana -Government Shutdown -Larry Nassar -Bitcoin Price -Government Shutdown -Sergei Eisenstein -Super Bowl score -Valentines Day -Carter G. Woodson -Florida shooting -Winter Olympics -Westerville Ohio -Super Bowl 2018 -Sergei Eisenstein -Carter G. Woodson -Sergei Eisenstein -Luke Wilson -Winter Olympics -Joy Villa -Bradie Tennell -Virginia Woolf -Super Bowl 2018 -Happy Valentines Day -The Home Depot -UFC 220 -Elizabeth Blackwell -Sergei Eisenstein -Super Bowl 2018 -Florida shooting -Jacob Copeland -Winter Olympics -Super Bowl 2018 -Super Bowl 2018 -Patriots -Release The Memo -Sergei Eisenstein -SpaceX -Paula Modersohn-Becker -Elizabeth Blackwell -Wilder Penfield -Winter Olympics -Kylie Jenner -Sergei Eisenstein -Patriots -Kylie Jenner Baby Girl -Virginia Woolf -Paula Modersohn-Becker -What Time Is The Super Bowl -LeBron James -SAG Awards 2018 -Terrell Owens -Shaun White -Virginia Woolf -Sergei Eisenstein -Peter Rabbit -SAG Awards 2018 -Winter Olympics -Cherry Seaborn -Sergei Eisenstein -UFC 220 -Elizabeth Blackwell -Kesha -Florida shooting -SpaceX -Sergei Eisenstein -Winter Olympics -Paula Modersohn-Becker -Chris Paul -State of the Union -Oscar Nominations 2018 -Super Bowl score -Den of Thieves -Happy Valentines Day -State of the Union -Kelsey Grammer -Grammys 2018 -This Is Us -Super blue blood Moon -Isaiah Thomas -Morgan Freeman -Florida shooting -Sergei Eisenstein -Black Panther -Amazon Stock -Amazon Stock -Super Bowl 2018 -Florida shooting -Chicago West -Kylie Jenner -Will Ferrell -Paula Modersohn-Becker -Terrell Owens -Super Blue Blood Moon -Florida shooting -Mark Salling -Florida shooting -Simona Halep -Jessica Chastain -Sergei Eisenstein -Kentucky shooting -Oscar Nominations 2018 -Korea -Ash Wednesday -Ursula Le Guin -Government Shutdown -Virginia Woolf -Memo -Patriots -Bitcoin Price -Chloe Kim -Elizabeth Blackwell -Wilder Penfield -Adam Rippon -Winter Olympics -Steven Tyler -Amy Schumer -Government Shutdown 2018 -DeMarcus Cousins -Black Panther -Super Bowl Winners -Toys R Us -National Pizza Day -Jason Momoa -Greg Monroe -Paula Modersohn-Becker -Super Bowl 2018 -Government shutdown -Patriots -Winter Olympics -UFC 220 -Virginia Woolf -What Time Is The Super Bowl -NFC Championship Game 2018 -SAG Awards 2018 -Virginia Woolf -Super Bowl 2018 -Bitcoin Price -Berkshire Hathaway -Winter Olympics -Kylie Jenner Baby Girl -Lil Pump -Kylie Jenner Baby Girl -NBA Trades -Bitcoin Price -Super Bowl score -Larry Nassar -Dwyane Wade -Super Bowl Commercials 2018 -Virginia Woolf -Super Bowl score -Super Bowl Commercials 2018 -Grammys 2018 -Black Lightning -LeBron James -Kylie Jenner Baby Girl -Carter G. Woodson -Patriots -Grammys 2018 -What Time Is The Super Bowl -Justin Timberlake -Paragon -Super Bowl score -Bitcoin Price -Paula Modersohn-Becker -Sergei Eisenstein -Gods Plan -Wilder Penfield -Black Panther -Justin Timberlake -Carter G. Woodson -Super Bowl Commercials -Carter G. Woodson -Bruno Mars -Elizabeth Blackwell -Dow Jones -Patti LuPone -Shaun White -Sergei Eisenstein -Bellator 192 -Cloverfield Paradox -Shaun White -SpaceX -Winter Olympics -Florida shooting -Carter G. Woodson -Government Shutdown -Super Bowl score -SZA -Edwin Jackson -John Mahoney -Rose McGowan -slides -Pro Bowl 2018 -Paula Modersohn-Becker -Florida shooting -Royal Rumble 2018 -Sergei Eisenstein -SpaceX -Patti LuPone -Groundhog Day 2018 -XFL -Bitcoin Price -School Closings -Google Classroom -Mark Salling -Carter G. Woodson -Robinhood -Shaun White -Super Bowl 2018 -Lindsey Vonn -Florida shooting -Carter G. Woodson -Wilder Penfield -Elizabeth Blackwell -Samson -Larry Nassar -Carter G. Woodson -Portia de Rossi -Mark Salling -Cloverfield Paradox -Elizabeth Blackwell -This Is Us -Carter G. Woodson -Carter G. Woodson -Larry Nassar -Virginia Woolf -Carl Higbie -Red Gerard -Patriots -Isaiah Thomas -Carter G. Woodson -Louise Linton -Dwyane Wade -Sergei Eisenstein -Groundhog Day 2018 -Justin Timberlake -Red Gerard -Patriots -Patriots -The Resident -Patriots -Virginia Woolf -Super Bowl 2018 -Olympic Medal Count -What Time Is The Super Bowl -Oscar Nominations 2018 -Government Shutdown Meaning -Florida shooting -Groundhog Day 2018 -Florida shooting -Yahoo Finance -Sergei Eisenstein -Paula Modersohn-Becker -Patriots -Super Bowl 2018 -SpaceX -Elizabeth Blackwell -SpaceX -Bitcoin Price -Casey Affleck -Grammys 2018 -Markelle Fultz -Highline College -Super Bowl score -Winter Olympics -Halsey -Elizabeth Blackwell -Rodney Hood -Grammys 2018 -Pro Bowl 2018 -Winter Olympics -Pro Bowl 2018 -Nba All Star Draft -What Time Is The Super Bowl -Super Bowl 2018 -Government shutdown -Super Bowl score -Chloe Kim -Gianni Versace -Elizabeth Blackwell -12 Strong -Winter Olympics -Sergei Eisenstein -Black Panther -Carter G. Woodson -State of the Union -Super Bowl 2018 -State of the Union -Obama portrait -What Time Is The Super Bowl -Patriots -Carter G. Woodson -Grammys 2018 -Elizabeth Blackwell -Super Bowl 2018 -Daryle Singletary -NBA Trades -Elizabeth Blackwell -Royal Rumble 2018 -Carter G. Woodson -Montreal Cognitive Assessment -calculator -Childish Gambino -Bitcoin Price -Super Bowl score -Atlanta Weather -Virginia Woolf -Meteor -Super Blue Blood Moon -Florida shooting -Presidents Day 2018 -Super Bowl score -Government Shutdown Meaning -Ash Wednesday -Florida shooting -Adam Rippon -Paula Modersohn-Becker -What Time Is The Super Bowl -Lauren Davis -Elizabeth Blackwell -Super Bowl score -Elton John -Jimmy Kimmel -John Mahoney -Paula Modersohn-Becker -What Time Is The Super Bowl -Virginia Woolf -Kylie Jenner -Nba All Star Draft -Elizabeth Blackwell -Patriots -Memo -Memo -Chloe Kim -Alaska earthquake -Super Bowl 2018 -What Time Is The Super Bowl -Naya Rivera -Elton John -Larry Nassar -Grammys 2018 -Dwyane Wade -Sandy Hook -Aliona Savchenko -Alex Smith -Valentines Day -Virginia Woolf -Virginia Woolf -Virginia Woolf -Carter G. Woodson -Wilder Penfield -Sergei Eisenstein -Patriots -Dolly Parton -FC Barcelona -Wilder Penfield -Florida shooting -Patriots -Dow Jones -Edwin Jackson -Super blue blood Moon -Atlanta Weather -Carter G. Woodson -Gianni Versace -Chinese New Year 2018 -Larry Nassar -Virginia Woolf -Paula Modersohn-Becker -Matt Czuchry -Chinese New Year 2018 -Jessica Chastain -Virginia Woolf -slides -Dwyane Wade -Patriots -Jamie Anderson -Women's March 2018 -Winter Olympics -XFL -Drake -Wilder Penfield -Super blue blood Moon -Kingdom Come Deliverance -Virginia Woolf -Government Shutdown -Carter G. Woodson -XFL -United States Postal Service -Blake Griffin -Paula Modersohn-Becker -NBA Trades -Oscar Nominations 2018 -Grammys 2018 -Ohio State basketball -Hope Hicks -Robert Wagner -Olympic Medal Count -Florida shooting -Terrell Owens -Royal Rumble 2018 -Paula Modersohn-Becker -Women's March 2018 -Super Bowl score -Rose McGowan -Elizabeth Blackwell -SpaceX -school closings -What Time Is The Super Bowl -Wilder Penfield -Obama portrait -Kesha -Jason Kelce -State of the Union -Justin Timberlake -What Time Is The Super Bowl -Paula Modersohn-Becker -Paula Modersohn-Becker -Walter Payton -Solo Trailer -Bill Belichick -Chris Mazdzer -Patriots -Carter G. Woodson -Sea Of Thieves -Justin Timberlake -Patti LuPone -Shaun White -Elizabeth Blackwell -Johnny Weir -Tiger Woods -Florida shooting -Florida shooting -Bitcoin Price -Patriots -Zion Williamson -Virginia Woolf -Winter Olympics -Kim Kardashian -Florida shooting -Elon Musk -Tom Izzo -Happy Valentines Day -school closings -Manchester United -Altered Carbon -Vikings Vs Eagles -Winter Olympics -Virginia Woolf -Matt Patricia -Carter G. Woodson -Super Bowl score -Virginia Woolf -Virginia Woolf -SpaceX -Blue Ivy -State of the Union -Florida shooting -Lunar eclipse -Wilder Penfield -Oscar Nominations 2018 -Robby Anderson -Peter Rabbit -Patriots -Justin Timberlake -Winter Olympics -Carter G. Woodson -Super blue blood Moon -Virginia Woolf -Winter Olympics -Justin Timberlake -Celtics -Elizabeth Blackwell -What Time Is The Super Bowl -Patriots -Black Panther -Super Bowl Commercials 2018 -Winter Olympics -Nintendo Labo -Fredo Santana -Oscar Nominations 2018 -Hillary Clinton -Black Panther -Toys R Us -Sergei Eisenstein -CNN -Daryle Singletary -Tiger Woods -Megan Barry -Sabrina Dhowre -Carter G. Woodson -Winter Olympics -Super Bowl 2018 -Patriots -Post Malone -Sergei Eisenstein -Elizabeth Blackwell -Vikings Vs Eagles -Vince McMahon -NBC Sports -Doomsday Clock -Elizabeth Blackwell -Ann Curry -Adam Rippon -calculator -What Time Is The Super Bowl -Chloe Kim -Mardi Gras 2018 -Grammys 2018 -Florida shooting -Government Shutdown -Obama portrait -Winter Olympics -SpaceX -Happy Valentines Day -Chinese New Year 2018 -Jason Kelce -Kylie Jenner -Derrick Rose -Google Classroom -NBA Trades -Carrie Underwood -Florida shooting -Mark Salling -Super Bowl score -What Time Is The Super Bowl -Government Shutdown -Ash Wednesday -Wilder Penfield -Peter Rabbit -Elizabeth Blackwell -Virginia Woolf -Kylie Jenner -Sergei Eisenstein -Grammys 2018 -Government Shutdown Meaning -Google docs -Alaska earthquake -What Time Is The Super Bowl -Wilder Penfield -Black Panther -Elizabeth Blackwell -Mark Salling -calculator -Sergei Eisenstein -Kelsey Grammer -UFC 220 -What Time Is The Super Bowl -Google Drive -Super blue blood Moon -Florida shooting -Celtics -Kylie Jenner -Royal Rumble 2018 -Paula Modersohn-Becker -Columbine Shooting -Super Bowl score -Larry Nassar -Black Panther -Wilder Penfield -Sergei Eisenstein -Valentines Day Images -Sergei Eisenstein -State of the Union -SpaceX -Carter G. Woodson -Royal Rumble 2018 -SpaceX -What Time Is The Super Bowl -Duke Basketball -Super Bowl score -Virginia Woolf -Edwin Jackson -Virginia Woolf -Elizabeth Blackwell -Sea Of Thieves -Super Bowl score -SpaceX -Oscar Nominations 2018 -Black Panther -Trump State of the Union -Grammys 2018 -Sergei Eisenstein -Women's March 2018 -Tesla in space -Paula Modersohn-Becker -Stormi -Obama portrait -earthquake today -Sergei Eisenstein -Florida shooting -Trump State of the Union -Florida shooting -Patty Hearst -What Time Is The Super Bowl -XFL -Childish Gambino -Friends movie -Carter G. Woodson -Trump State of the Union -Winter Olympics -Elizabeth Blackwell -Luke Wilson -DeMarcus Cousins -Andrew Cunanan -Super Bowl score -Super Bowl Commercials 2018 -Black Lightning -calculator -Government Shutdown -Tessa Virtue -Women's March 2018 -Florida shooting -Groundhog Day 2018 -Winter Olympics -Justin Timberlake -Florida shooting -Justin Timberlake -Patriots -Patriots -Super Bowl 2018 -Virginia Woolf -Fredo Santana -Super Bowl 2018 halftime show -Winter Olympics -Patriots -Larry Nassar -Larry Nassar -Super blue blood Moon -State of the Union -Dow Jones -Paula Modersohn-Becker -Virginia Woolf -Paula Modersohn-Becker -NBC Sports -Chinese New Year 2018 -Super blue blood Moon -Larry Nassar -Carter G. Woodson -Lady Bird -Carter G. Woodson -Pro Bowl 2018 -Jimmy Garoppolo -Justin Timberlake -Virginia Woolf -Waco -Patriots -Elton John -Patriots -Super Bowl score -What Time Is The Super Bowl -Bruno Mars Tour 2018 -Winter Olympics -Chloe Kim -Google Classroom -Super Bowl 2018 -NFC Championship Game 2018 -Patriots -Winter Olympics -Super Bowl score -Wilder Penfield -Super Bowl score -Florida shooting -Elizabeth Blackwell -Kylie Jenner -Super Bowl Commercials -Winter Olympics -Super Bowl Commercials 2018 -Super Bowl 2018 -Chinese New Year 2018 -AFC Championship Game 2018 -Patti LuPone -Paula Modersohn-Becker -Valentines Day Memes -Larry Nassar -Did the Groundhog See His Shadow -Derrick Rose -Phantom Thread -Elton John tickets -UFC 220 -Jason Kelce -Carter G. Woodson -Virginia Woolf -Kylie Jenner -John Mahoney -Winter Olympics -Elizabeth Blackwell -Carter G. Woodson -Dow Jones -Virginia Woolf -Super Bowl 2018 -Chloe Kim -Sal Castro Middle School -Valentines Day Cards -Isaiah Thomas -Cherry Seaborn -Elizabeth Blackwell -Shaun White -Larry Nassar -Harley Barber -Carter G. Woodson -School Closings -Rodney Hood -Patriots -Larry Nassar -Patriots -Wilder Penfield -Paula Modersohn-Becker -Justin Timberlake -Government shutdown 2018 -What Time Is The Super Bowl -Olympic medal count -Gods Plan -Paula Modersohn-Becker -NBA Trades -Virginia Woolf -Adam Rippon -Super Bowl 2018 -February -Zion Williamson -Paula Modersohn-Becker -Wonder Woman -Super Bowl 2018 -Florida shooting -Cloverfield Paradox -Happy Valentines Day -Rasual Butler -Sergei Eisenstein -Solo Trailer -Kylie Jenner -Sergei Eisenstein -Valentines Day Images -Altered Carbon -Winter Olympics -Florida shooting -Super Bowl score -Chloe Kim -Paula Modersohn-Becker -School Closings -Sergei Eisenstein -Rose McGowan -Paula Modersohn-Becker -Justin Timberlake -Fidel Castro -Earthquake -Groundhog Day 2018 -Lunar eclipse -Florida shooting -Hope Hicks -Patriots -Kelsey Grammer -Halsey -Russell Wilson -Immaculate Conception -Kesha -Super Bowl score -Elizabeth Blackwell -Women's March 2018 -Super Bowl score -Winter Olympics -Black Panther -Edwin Jackson -This Is Us -Groundhog Day 2018 -Larry Nassar -Wilder Penfield -Carter G. Woodson -Paula Modersohn-Becker -Paula Modersohn-Becker -Trump State of the Union -Justin Timberlake -Patriots -Carter G. Woodson -Patriots -Dow Jones -XFL -Solo Trailer -Paula Modersohn-Becker -Vikings Vs Eagles -Elizabeth Blackwell -12 Strong -Lunar eclipse -UFC 220 -Wilder Penfield -Alex Smith -Black Panther -Camila Cabello -Larry Nassar -Kylie Jenner -Quincy Jones -School Closings -Winter Olympics -This Is Us -Johnny Weir -Edwin Jackson -Winter Olympics -Elizabeth Blackwell -Fredo Santana -Virginia Woolf -Chicago West -Rasual Butler -Paula Modersohn-Becker -Shaun White -SpaceX -Chipper Jones -Valentines Day Images -Justin Timberlake -SpaceX -Wilder Penfield -New England Patriots owner -Virginia Woolf -Kylie Jenner -Real Madrid -Kylie Jenner -Patriots -Obama portrait -Grammys 2018 -Patriots -Google docs -Wilder Penfield -Super Bowl 2018 -Carter G. Woodson -Paula Modersohn-Becker -Mark Salling -Florida shooting -Justin Timberlake -Wilder Penfield -Johnny Weir -Paula Modersohn-Becker -Tom Brady -Chris Long -Valentines Day -Real Madrid -Wilder Penfield -Scott Baio -Florida shooting -Meteor -Patriots -Super Bowl 2018 -Did the Groundhog See His Shadow -Adam Hicks -Luke Wilson -Government shutdown 2018 -Groundhog Day 2018 -Carter G. Woodson -Kylie Jenner -Sergei Eisenstein -Purdue basketball -Cedi Osman -Larry Nassar -Florida shooting -Edwin Jackson -Government shutdown 2018 -Super Bowl 2018 -Oscar Nominations 2018 -Super blue blood Moon -Phantom Thread -Solo Trailer -Florida shooting -Nintendo Labo -Elizabeth Blackwell -Friends The Movie 2018 -Jessica Chastain -Daryle Singletary -SpaceX -Super Bowl 2018 -Patti LuPone -Mark Salling -Kim Kardashian -Eli Manning -Super Bowl 2018 -NBC Sports -SpaceX -Woody Allen -Super Bowl score -Florida shooting -Trump State of the Union -Julie Ertz -Alex Smith -Nathan Chen -Elizabeth Blackwell -Florida shooting -Elton John -What Time Is The Super Bowl -Alison Brie -Quincy Jones -Alison Brie -Winter Olympics -Luke Wilson -Sergei Eisenstein -Norovirus -Winter Olympics -Virginia Woolf -Kevin Love -Elon Musk -School closings -Carter G. Woodson -Winter Olympics -Joshua Cooper Ramo -Florida shooting -Eli Manning -Chris Paul -Florida shooting -SpaceX -Bradie Tennell -Lakers -Rasual Butler -Virginia Woolf -CNN -Cryptocurrency News -Trump State of the Union -Google docs -Elizabeth Blackwell -NBA Trades -Paula Modersohn-Becker -Justin Timberlake -National Pizza Day -Harley Barber -SpaceX -Sting -When We First Met -Paula Modersohn-Becker -Did the Groundhog See His Shadow -Den of Thieves -Elizabeth Blackwell -Elton John -Blake Griffin -Carter G. Woodson -NBA Trades -Carter G. Woodson -Wilder Penfield -Winter Olympics -Olympics 2018 -What Time Is The Super Bowl -Sergei Eisenstein -Florida shooting -Super Blue Blood Moon -LeBron James -Elizabeth Blackwell -Dow Jones -shutdown -Laura Ingraham -Blue Ivy -Google Drive -Michigan State -Doomsday Clock -Football Playoffs 2018 -Shaun White -Sergei Eisenstein -Paula Modersohn-Becker -Patriots -Groundhog Day 2018 -Sergei Eisenstein -North Korean cheerleaders -Elizabeth Blackwell -Paula Modersohn-Becker -Grammys 2018 -Super Bowl 2018 -Sergei Eisenstein -Larry Nassar -Super Bowl score -Josh McDaniels -Chicago Weather -Reg E Cathey -Sergei Eisenstein -What Time Is The Super Bowl -Despacito -Fredo Santana -Earthquake -Chris Paul -SpaceX -Dwyane Wade -New England Patriots owner -Elizabeth Blackwell -Larry Nassar -Memo -What Time Is The Super Bowl -Super Bowl 2018 -Meteor -Johnny Weir -Kim Kardashian -Paula Modersohn-Becker -Duke basketball -Larry Nassar -Despacito -Sergei Eisenstein -Justin Timberlake -Elizabeth Blackwell -Carter G. Woodson -Paula Modersohn-Becker -Black Panther -Vikings Vs Eagles -Andre the Giant -Larry Nassar -Amy Schumer -Grammys 2018 -Winter Olympics -Mardi Gras 2018 -Super Bowl score -Carter G. Woodson -Super blue blood Moon -Shaun White -Wilder Penfield -Olympic medal count -Sergei Eisenstein -Super blue blood Moon -Den of Thieves -Dennis Edwards -Berkshire Hathaway -Super Bowl score -Vikings vs Eagles -Patriots -Grammys 2018 -What Time Is The Super Bowl -Black Panther -Virginia Woolf -Patriots -CNN -Ted Bundy -Winter Olympics -Government Shutdown Meaning -Valentines Day -Solo Trailer -Elizabeth Blackwell -New England Patriots owner -Wilder Penfield -Blake Griffin -Patriots -Super blue blood Moon -Patriots -Harley Barber -Marlon Brando -Obama portrait -Peter Rabbit -Josh Allen -Vikings Vs Eagles -Winter Olympics -Jo Jo White -Super Bowl 2018 -Michigan State -Carter G. Woodson -Winter Olympics -Black Panther -Princess Eugenie -Wilder Penfield -Nba All Star Draft -Sergei Eisenstein -Patriots -Florida shooting -Terrell Owens -Columbine -Winter Olympics -Drake -Shaun White -Paula Modersohn-Becker -Steve Mcnair -Super Bowl 2018 -NBA Trades -Winter Olympics -Paula Modersohn-Becker -Government Shutdown Meaning -Peter Rabbit -PlayStation Network -SpaceX -Dow Jones -Memo -Carter G. Woodson -Elton John -Cavs -Tammy Duckworth -Joshua Cooper Ramo -Florida shooting -Robert Wagner -Bill Paxton -Sergei Eisenstein -Super Bowl 2018 -Halsey -Kim Kardashian -Super Bowl 2018 -The Alienist -Florida shooting -Winter Olympics -Groundhog Day 2018 -Olympic medal count -Alex Smith -Patriots -Carter G. Woodson -LeBron James -Tonga -Winter Olympics -New England Patriots owner -Government Shutdown Meaning -Michelle Obama -Roger Federer -Steve Mcnair -Wilder Penfield -Steve Wynn -Government shutdown 2018 -Vanessa Trump -Florida shooting -Paula Modersohn-Becker -Call Me by Your Name -Stock Market Crash Today -Vikings Vs Eagles -SpaceX -Jason Momoa -Grammys 2018 -Sergei Eisenstein -Casey Affleck -Sergei Eisenstein -Government Shutdown -Government Shutdown -Government Shutdown -Carter G. Woodson -Carter G. Woodson -Shaun White -Florida shooting -Super Bowl 2018 -United States Of America Winter Olympics -Wilder Penfield -Wilder Penfield -Virginia Woolf -Patriots -Government Shutdown -Mark Salling -What Time Is The Super Bowl -Government shutdown 2018 -SpaceX -Rodney Hood -Government Shutdown -Forever My Girl -Virginia Woolf -Winter Olympics -Joe Kennedy -Carter G. Woodson -Super Bowl 2018 -Larry Nassar -Did the Groundhog See His Shadow -Virginia Woolf -Royal Rumble 2018 -Isaiah Thomas -Super Bowl 2018 -Super Bowl score -Patriots -Trump State of the Union -Oscar Nominations 2018 -SpaceX -Winter Olympics -Solo Trailer -Super Bowl 2018 -Florida shooting -Grammys 2018 -Natalie Wood -Bill Paxton -Elizabeth Blackwell -State of the Union -Olympic medal count -Anastasia Bryzgalova -Bitcoin Price -Wilder Penfield -Virginia Woolf -Black Panther -Wilder Penfield -Rasual Butler -Sergei Eisenstein -Florida shooting -Snapchat Update -Super Bowl score -Justin Timberlake -Walter Payton -Super Bowl 2018 -Release The Memo -NBA Trades -Patriots -UFC 220 -Sergei Eisenstein -Government Shutdown -Sergei Eisenstein -IXL -What Time Is The Super Bowl -Peter Rabbit -Larry Nassar -Google Classroom -Wilder Penfield -Happy Valentines Day -Super Bowl score -SpaceX -Mark Salling -Bitcoin Price -Paula Modersohn-Becker -Super blue blood Moon -What Time Is The Super Bowl -Wilder Penfield -Sergei Eisenstein -Sergei Eisenstein -CNN -Google Classroom -Winter Olympics -Real Madrid -Zuleyka Rivera -Super Bowl 2018 -NASA -Pink -Elizabeth Blackwell -Grammys 2018 -Sergei Eisenstein -Mikaela Shiffrin -Hostiles -Matt Patricia -Josh McDaniels -Rasual Butler -Patriots -Monster Hunter World -Elizabeth Blackwell -Daytona 500 -Government shutdown 2018 -Patriots -Alex Smith -Super Bowl score -Wilder Penfield -Wilder Penfield -Nba All Star Draft -Jessica Chastain -Solo Trailer -Super Bowl 2018 -Josh McDaniels -national signing day 2018 -Super Blue Blood Moon -Government Shutdown -Patriots -Nba All Star Draft -Elizabeth Blackwell -Elizabeth Blackwell -Trump State of the Union -Chinese New Year 2018 -Kylie Jenner -Florida shooting -Government shutdown 2018 -Florida shooting -Royal Rumble 2018 -Elizabeth Blackwell -Vince McMahon -Florida shooting -Mark Salling -Winter Olympics -Terrell Owens -Florida shooting -Vikings Vs Eagles -XFL -Florida shooting -Paula Modersohn-Becker -Super Bowl 2018 -Sergei Eisenstein -Happy Valentines Day -Mark Salling -Virginia Woolf -Natalie Portman -Wilder Penfield -Wilder Penfield -Winter Olympics -Blake Griffin -Super blue blood Moon -Dwyane Wade -Tom Petty -Government Shutdown 2018 -Wilder Penfield -National Pizza Day -Vikings Vs Eagles -Elizabeth Blackwell -NBA Trades -Winter Olympics -Virginia Woolf -Natalie Portman -Early Man -Carter G. Woodson -Patriots -Florida shooting -NBA Trades -Women's March 2018 -Super Bowl score -Paula Modersohn-Becker -Oscar Nominations 2018 -Carter G. Woodson -Justin Timberlake -Dow Jones -Wilder Penfield -SpaceX -Shaun White -Princess Eugenie -Frank Reich -Apple stock -Robert Wagner -Government Shutdown Meaning -Winter Olympics -Camila Cabello -Aaron Fies -Vikings Vs Eagles -Elizabeth Blackwell -Paula Modersohn-Becker -Andrew McCabe -Virginia Woolf -Wilder Penfield -Florida shooting -Chloe Kim -Cavs -The 15:17 to Paris -Groundhog Day 2018 -Google docs -Wilder Penfield -UFC 220 -Sergei Eisenstein -Ursula Le Guin -Fredo Santana -Chris Stapleton -Johnny Weir -Super Bowl score -Vikings Vs Eagles -Elizabeth Blackwell -Government Shutdown -Dow Jones -Vikings Vs Eagles -Childish Gambino -Patriots -What Time Is The Super Bowl -Google Classroom -Phantom Thread -Winter Olympics -Nadal -Grammys 2018 -Omarosa -Wilder Penfield -Lari White -Sergei Eisenstein -Justin Timberlake -Oscar Nominations 2018 -Virginia Woolf -Mardi Gras 2018 -Ash Wednesday -Cherry Seaborn -Markelle Fultz -Grammys 2018 -Sergei Eisenstein -Cory Booker -Patriots -Elizabeth Blackwell -Google Drive -Happy Valentines Day -Winter Olympics -Winter Olympics -Super Bowl score -Winter Olympics -Patriots -Jason Kelce -Laura Ingraham -Cloverfield Paradox -Phantom Thread -Mark Salling -Happy Valentines Day -Red Gerard -Alessia Cara -Paul Ryan -Paula Modersohn-Becker -Vikings Vs Eagles -Aaron Feis -Virginia Woolf -Den of Thieves -Natalie Portman -Terrell Owens -Olympics 2018 -Kylie Jenner -Elton John -Wilder Penfield -Patriots -Carter G. Woodson -Jimmy Garoppolo -Julie Ertz -Paula Modersohn-Becker -Red Gerard -Jason Kelce -Memo -Sergei Eisenstein -State of the Union -CNN -Carter G. Woodson -Super Bowl 2018 -Ellen Pompeo -SpaceX -John Mahoney -Virginia Woolf -Sting -Super Bowl 2018 -Vanessa Trump -Florida shooting -School Closings -Kylie Jenner -Grammys 2018 -Jalen Ramsey -Elizabeth Blackwell -Super Bowl score -Morgan Freeman -Paula Modersohn-Becker -Peter Rabbit -Zion Williamson -What Time Is The Super Bowl -Vikings vs Eagles -Kylie Jenner -Celtics -Dow Jones -Carter G. Woodson -Patriots -Wilder Penfield -Government shutdown 2018 -Winter Olympics -Memo -Johnny Weir -Olympic Medal Count -Mikaela Shiffrin -Groundhog Day 2018 -What Time Is The Super Bowl -Black Panther -Jason Kelce -What Time Is The Super Bowl -Florida shooting -Trump State of the Union -Oscar Gamble -Wilder Penfield -Elizabeth Blackwell -Elizabeth Blackwell -Michigan State -Nancy Pelosi -All Star Weekend 2018 -Virginia Woolf -Adam Rippon -Dwyane Wade -Senior Bowl -Paul Ryan -Sergei Eisenstein -Adam Hicks -Kylie Jenner -Alex Smith -UFC 220 -Sergei Eisenstein -Patriots -Super Bowl score -John Mahoney -Government Shutdown Meaning -Chloe Kim -Groundhog Day 2018 -Greg Monroe -Carter G. Woodson -Carter G. Woodson -Kylie Jenner -Larry Nassar -Altered Carbon -Carter G. Woodson -Peter Rabbit -Winter Olympics -Ohio State basketball -Super Bowl 2018 -Alaska earthquake -Super Bowl 2018 -Wilder Penfield -Patriots -NBA Trades -New California -Google Classroom -Memo -Fifty Shades Freed -Super Bowl score -Sergei Eisenstein -National Pizza Day -Den of Thieves -Florida shooting -Sal Castro Middle School -Justin Timberlake -Westminster Dog Show 2018 -Oscar Nominations 2018 -Super Bowl score -Government shutdown -Larry Nassar -Justin Timberlake -State of the Union -Elizabeth Blackwell -Elton John -Paula Modersohn-Becker -Kentucky shooting -Women's March 2018 -Florida shooting -Super Bowl score -Paula Modersohn-Becker -Wilder Penfield -UFC 220 -Chicago Weather -Real Madrid -Rasual Butler -Alaska earthquake -Super Bowl score -Super blue blood Moon -Carter G. Woodson -Robby Anderson -Carter G. Woodson -Vanessa Trump -Florida shooting -Grammys 2018 -Andrew Cunanan -Edwin Jackson -Florida shooting -Super blue blood Moon -Wilder Penfield -Elizabeth Blackwell -Robert Wagner -school closings -Super Bowl 2018 -Paula Modersohn-Becker -Nintendo Labo -Memo -Olympic medal count -Florida shooting -NBA Trades -Monster Hunter World -Winter Olympics -Adam Hicks -Natalie Wood -Florida shooting -Waco -Sergei Eisenstein -Virginia Woolf -Jason Kelce -Joshua Cooper Ramo -Wilder Penfield -Peter Rabbit -Dwyane Wade -State of the Union -Kesha -NBA Trades -Cloverfield Paradox -Elizabeth Blackwell -What Time Is The Super Bowl -Virginia Woolf -Patriots -Virginia Woolf -Government Shutdown 2018 -CNN -Larry Nassar -Meteor -Sergei Eisenstein -NBA Trades -slides -Lunar eclipse -Elizabeth Blackwell -Olympic medal count -Super Bowl score -government shutdown -Elizabeth Blackwell -Sea Of Thieves -Sergei Eisenstein -Julie Ertz -Puppy Bowl 2018 -NBA Trades -School Closings -Kylie Jenner -Wilder Penfield -Larry Nassar -Super Bowl 2018 -OKC Thunder -Kylie Jenner Baby Girl -Justin Timberlake -Elizabeth Blackwell -Kylie Jenner -Winter Olympics -SpaceX -SAG Awards 2018 -Government shutdown 2018 -Kodak Black -Mardi Gras 2018 -Friends movie -Alaska earthquake -Bruno Mars -Winter Olympics -Nancy Pelosi -Florida shooting -New England Patriots owner -Black Panther -Elizabeth Blackwell -Dow Jones -Super Bowl 2018 -Patriots -Trump State of the Union -Carter G. Woodson -Montgomery County Public Schools -Super Bowl score -Netflix Stock -Cavs -Super Bowl score -Larry Nassar -Justin Timberlake -Sergei Eisenstein -Paula Modersohn-Becker -United States Of America Winter Olympics -Mark Salling -Mark Salling -Conor McGregor -Virginia Woolf -Chris Long -Kylie Jenner -SpaceX -Wilder Penfield -Happy Valentines Day -Winchester -SAG Awards 2018 -Government shutdown -Larry Nassar -SpaceX -H&r Block -Lakers -The 15:17 to Paris -Winter Olympics -Florida shooting -SpaceX -Black Panther -Friends movie -Sergei Eisenstein -Paula Modersohn-Becker -Scandal -School closings -Jason Kelce -Valentines Day Memes -Carter G. Woodson -Carter G. Woodson -Super blue blood Moon -Mike Vrabel -Virginia Woolf -Terrell Owens -Sarah Barthel -Get Out -Winter Olympics -Sergei Eisenstein -Dua Lipa -Rasual Butler -Sergei Eisenstein -Royal Rumble 2018 -SpaceX -Florida shooting -Carter G. Woodson -Sergei Eisenstein -Black Panther -State of the Union -Olive Garden -Elizabeth Blackwell -Russell Wilson -Elizabeth Blackwell -Natalie Portman -Government Shutdown Meaning -Natalie Wood -Fredo Santana -Paula Modersohn-Becker -Drake -Frank Reich -Florida shooting -Elizabeth Blackwell -Paula Modersohn-Becker -The 15:17 to Paris -United States Postal Service -Super Bowl score -SAG Awards 2018 -Kylie Jenner -BitConnect -James Maslow -Florida shooting -Presidents Day 2018 -Justin Timberlake -CNN -Phantom Thread -Paula Modersohn-Becker -Drake -Fredo Santana -Carter G. Woodson -Amtrak -Columbine -Mardi Gras 2018 -Stock Market Crash Today -Winter Olympics -Dow Jones -Childish Gambino -Government shutdown -Sergei Eisenstein -Bitcoin Price -SpaceX -Walter Payton -Winter Olympics -Eli Manning -Google docs -Patriots -Lunar eclipse -Grammys 2018 -Super Bowl 2018 -Florida shooting -Memo -Super Bowl score -Florida shooting -Sergei Eisenstein -Super Bowl 2018 -Carter G. Woodson -Paula Modersohn-Becker -Paula Modersohn-Becker -school closings -Andrew Cunanan -School closings -State of the Union -Florida shooting -Winter Olympics -Tom Petty -Valentines Day -Logan Paul -Justin Timberlake -Elizabeth Blackwell -Elizabeth Blackwell -Ohio State basketball -Grammys 2018 -Groundhog Day 2018 -Florida shooting -Paula Modersohn-Becker -XFL -Mark Salling -Blake Griffin -Doomsday Clock -Florida shooting -Super Bowl 2017 -Super Bowl 2018 -Super Bowl 2018 -Kylie Jenner -Obama portrait -Patriots -Patriots -Government shutdown 2018 -Blue Moon -Kylie Jenner -Shaun White -Groundhog Day 2018 -Carter G. Woodson -Florida shooting -Winter Olympics -Winter Olympics -calculator -Valentines Day Memes -CNN -Andrew Cunanan -All Star Weekend 2018 -Paula Modersohn-Becker -Happy Valentines Day -Andrew Cunanan -Justin Timberlake -Childish Gambino -Winter Olympics -Kylie Jenner -Patriots -Solo Trailer -Oscar Nominations 2018 -Rachel Brand -Virginia Woolf -Fredo Santana -Florida shooting -Daytona 500 -Red Gerard -Carter G. Woodson -Doomsday Clock -Carter G. Woodson -Winter Olympics -calculator -Patriots -SpaceX -Super Bowl 2018 -Florida shooting -Super Bowl 2018 -Shaun White -State of the Union -Sergei Eisenstein -Jamie Anderson -Phantom Thread -Dow Jones -Elizabeth Blackwell -Obama portrait -Super blue blood Moon -Wilder Penfield -Justin Timberlake -Oscar Gamble -SpaceX -Patriots -Winter Olympics -Super Bowl score -Patriots -Chloe Kim -Lena Zawaideh -SpaceX -Scott Baio -Kylie Jenner -Carter G. Woodson -Real Madrid -Government shutdown 2018 -Super Bowl 2018 -Super Bowl 2018 -Florida shooting -Yu Darvish -Super Bowl 2018 -State of the Union -Blake Griffin -This is Us -Maze Runner: The Death Cure -Super Bowl Commercials -VIX -Josh McDaniels -Chris Stapleton -Super blue blood Moon -Virginia Woolf -Super Bowl 2018 -Florida shooting -Patriots -Elizabeth Blackwell -Virginia Woolf -Shaun White -Virginia Woolf -Paula Modersohn-Becker -Royal Rumble 2018 -Adam Rippon -Super Bowl score -Patriots -Larry Nassar -Wilder Penfield -Wilder Penfield -Shaun White -Trump State of the Union -Government Shutdown -Florida shooting -Jennifer Aniston -Dow Jones -Florida shooting -Altered Carbon -Sergei Eisenstein -Steve Wynn -Winter Olympics -Alex Smith -Tyler Hilinski -Winter Olympics -Wilder Penfield -Deadpool 2 -Elizabeth Blackwell -Mueller -Elizabeth Blackwell -Lunar eclipse -Patriots -Government Shutdown -Olympic Medal Count -Atlanta Weather -Cavs -Shaun White -Waco -Megan Barry -Super Bowl 2018 -Carter G. Woodson -Solo Trailer -Sea of Thieves -Super Bowl 2018 halftime show -Virginia Woolf -Florida shooting -SAG Awards 2018 -Cbs -Super Bowl 2018 -Lindsey Vonn -Danielle Herrington -Florida shooting -Phantom Thread -Jessica Chastain -Patriots -Carter G. Woodson -Wilder Penfield -Kylie Jenner -Winter Olympics -Virginia Woolf -John Mahoney -Carter G. Woodson -Winter Olympics -Super Bowl 2018 -Carter G. Woodson -Wilder Penfield -Patriots -Florida shooting -School Closings -Winter Olympics -Florida shooting -Florida shooting -Justin Timberlake -Carter G. Woodson -Sergei Eisenstein -Larry Nassar -SpaceX -Cory Booker -Florida shooting -Ash Wednesday -Google Classroom -Florida shooting -Groundhog Day 2018 -Elizabeth Blackwell -Rodney Hood -Bitcoin Price -Winter Olympics -What Time Is The Super Bowl -Josh McDaniels -State of the Union -Justin Timberlake -Black Panther -Eli Manning -Sergei Eisenstein -Patriots -Tom Petty -Wilder Penfield -Samson -Patriots -Google Classroom -LeBron James -Sting -Google Classroom -Bitcoin Price -Kodak Black -Jessica Chastain -Chicago West -Yu Darvish -Super Bowl score -UFC 220 -Super Bowl score -Justin Timberlake -Joseph Haynes -Rasual Butler -Winter Olympics -Paula Modersohn-Becker -Deadpool 2 -Bob Dole -Lakers -Super Bowl score -Justin Timberlake -Patriots -Patriots -Kim Cattrall -Kylie Jenner -Patriots -Super blue blood Moon -Princess Eugenie -Black Panther -Dennis Edwards -Tyler Hilinski -Grammys 2018 -Winter Olympics -Patriots -Football Playoffs 2018 -Justin Timberlake -Snake -NBA Trades -Sabrina Dhowre -Blake Griffin -SZA -Patti LuPone -Larry Nassar -Jamie Anderson -calculator -Jennifer Aniston -Carter G. Woodson -Winter Olympics -Virginia Woolf -Carter G. Woodson -Kesha -Virginia Woolf -Patriots -Peter Rabbit -Sergei Eisenstein -Elizabeth Blackwell -Memo -Sergei Eisenstein -Robert Wagner -Valentines Day -Elizabeth Blackwell -This Is Us -New England Patriots owner -Paula Modersohn-Becker -Paula Modersohn-Becker -Super Bowl score -Hope Hicks -Government shutdown -Chicago West -Dow Jones -Super Bowl 2018 -Elizabeth Blackwell -James Maslow -SpaceX -Paula Modersohn-Becker -Larry Nassar -Bernie Sanders -Bitcoin Price -Elizabeth Blackwell -SpaceX -What Time Is The Super Bowl -Government Shutdown -Super blue blood Moon -Jason Kelce -Super Bowl score -Alex Smith -Portia de Rossi -Carter G. Woodson -Paula Modersohn-Becker -Super Bowl score -James Baldwin -Lonzo Ball -Sergei Eisenstein -Deadpool 2 -SAG Awards 2018 -Kylie Jenner -Patriots -Trump Hair -Super Bowl score -National Pizza Day -State of the Union -XFL -Super Bowl score -Fredo Santana -Carter G. Woodson -Virginia Woolf -Bitcoin Price -Did the Groundhog See His Shadow -Government Shutdown -Anastasia Bryzgalova -Elizabeth Blackwell -Olympic Medal Count -Virginia Woolf -Jimmy Garoppolo -Chloe Kim -LeBron James -Super Bowl Commercials 2018 -Super Bowl 2018 -Trump State of the Union -SpaceX -UFC 220 -Memo -Patriots -Sergei Eisenstein -Get Out -Sergei Eisenstein -Paul Ryan -Wilder Penfield -Dwyane Wade -Florida shooting -Winter Olympics -Government shutdown -Kesha Grammy -Sabrina Dhowre -Obama portrait -Cherry Seaborn -Oscar Nominations 2018 -What Time Is The Super Bowl -Elizabeth Blackwell -Government Shutdown 2018 -Rasual Butler -Elizabeth Blackwell -Deadpool 2 -UFC 220 -Super Bowl 2018 -Roger Federer -Post Malone -Government Shutdown -SAG Awards 2018 -Florida shooting -Release The Memo -Super Bowl 2018 -Brynn Cameron -Sea Of Thieves -Paula Modersohn-Becker -Carter G. Woodson -pissant -The 15:17 to Paris -Trump State of the Union -Super Bowl score -Elizabeth Blackwell -Andre Roberson -Sergei Eisenstein -Did the Groundhog See His Shadow -Patriots -This Is Us -Wilder Penfield -Dow Jones -Royal Rumble 2018 -Tyler Hilinski -Megan Barry -Virginia Woolf -Virginia Woolf -Johnny Weir -Winter Olympics -Winter Olympics -Olympic Medal Count -Cryptocurrency News -Real Madrid -Winter Olympics -What Time Is The Super Bowl -Josh McDaniels -Bitcoin Price -Sarah Barthel -Super Bowl score -What Time Is The Super Bowl -Carter G. Woodson -Super Bowl 2018 -XFL -State of the Union -Carter G. Woodson -Super Bowl 2018 -Winter Olympics -Daryle Singletary -Super Bowl 2018 -Winter Olympics -Mark Salling -Cloverfield Paradox -Bruno Mars -Black Panther -Tom Petty -Elizabeth Blackwell -Shaun White -Government Shutdown -Winter Olympics -NBA Trades -H&r Block -Winter Olympics -Justin Timberlake -tsunami -Rachel Brand -Grammys 2018 -Carter G. Woodson -Winter Olympics -Real Madrid -Winter Olympics -Wilder Penfield -CBS Sports -Paula Modersohn-Becker -Super blue blood Moon -Johnny Weir -Wilder Penfield -Florida shooting -Elizabeth Blackwell -Larry Nassar -Florida shooting -stock market -Patriots -SpaceX -Carter G. Woodson -Wilder Penfield -Super Bowl 2018 -IXL -Rasual Butler -Super Bowl 2018 -The 15:17 to Paris -Mardi Gras 2018 -The Resident -Adam Rippon -Carter G. Woodson -Tonga -Wilder Penfield -Mark Salling -Neil Diamond -James Baldwin -SpaceX -Justin Timberlake -School Closings -JUUL -Super Bowl 2018 -What Time Is The Super Bowl -Paula Modersohn-Becker -Kristaps Porzingis -Carter G. Woodson -Camila Cabello -Groundhog Day 2018 -Carter G. Woodson -Virginia Woolf -Wilder Penfield -Winter Olympics -Paula Modersohn-Becker -Virginia Woolf -Alexander Polinsky -NBA Trades -Justin Timberlake -State of the Union -AFC Championship Game 2018 -Mattie Larson -Grammys 2018 -Presidents Day 2018 -Mardi Gras 2018 -Sergei Eisenstein -Virginia Woolf -Super Bowl score -Happy Valentines Day -Carter G. Woodson -Chinese New Year 2018 -Mark Salling -LL Bean -Joe Kennedy -Patriots -Bill Parcells -Florida shooting -Virginia Woolf -Government Shutdown -Cloverfield Paradox -Carter G. Woodson -Alex Smith -NBA Trades -Elizabeth Blackwell -Patriots -Olympics 2018 -Larry Nassar -NHL All Star Game -Aaron Fies -Monster Hunter World -SpaceX -Winter Olympics -Kylie Jenner -Super Bowl 2018 -Black Panther -Grammys 2018 -Carrie Underwood -Winter Olympics -Happy Valentines Day -Vikings vs Eagles -Super Bowl score -Carter G. Woodson -Olympics 2018 -Trump State of the Union -Black Panther -Mark Salling -Justin Timberlake -Super Bowl 2018 -Super Bowl 2018 -Rasual Butler -Larry Nassar -Amy Schumer -Paula Modersohn-Becker -Wilder Penfield -Earthquake Today -CNN -Kentucky shooting -Cherry Seaborn -Blake Griffin -Super Bowl 2018 -Virginia Woolf -Florida shooting -Paula Modersohn-Becker -Celebrity Big Brother cast -Johnny Weir -Kylie Jenner -Larry Nassar -Dow Jones -Elizabeth Blackwell -Winter Olympics -Happy Valentines Day -Carter G. Woodson -Patriots -Cloverfield Paradox -Vikings Vs Eagles -Elizabeth Blackwell -Mark Salling -Virginia Woolf -Kim Kardashian -Rasual Butler -Super Bowl score -Sergei Eisenstein -Carter G. Woodson -Den of Thieves -Riverdale -Steve Mcnair -Fredo Santana -Super Bowl score -Paula Modersohn-Becker -Virginia Woolf -Timor Leste -Government Shutdown -Winter Olympics -Virginia Woolf -Paula Modersohn-Becker -Football Playoffs 2018 -Super Bowl score -Paula Modersohn-Becker -Hope Hicks -Grammys 2018 -Virginia Woolf -This Is Us -Solo Trailer -Andre Roberson -Super Bowl score -What Time Is The Super Bowl -Justin Timberlake -New California -Fifty Shades Freed -Carter G. Woodson -UFC 220 -Super blue blood Moon -Rolling Loud -Champions League -Forever My Girl -Wilder Penfield -Esteban Loaiza -Super Bowl score -Kylie Jenner -Wilder Penfield -Doomsday Clock -Wilder Penfield -Robert Mueller -Paula Modersohn-Becker -Patriots -Oscar Nominations 2018 -Mardi Gras 2018 -Elizabeth Blackwell -Duke basketball -Shaun White -Super Bowl 2018 -Lauren Davis -Super Bowl score -Winter Olympics -State of the Union -Olympic medal count -Elizabeth Blackwell -Virginia Woolf -Super Bowl 2018 -Super Bowl score -Joel Taylor -State of the Union -Elizabeth Blackwell -Elton John -Wilder Penfield -What Time Is The Super Bowl -Andrew Cunanan -Paula Modersohn-Becker -Sergei Eisenstein -Hostiles -Carter G. Woodson -Red Gerard -Elizabeth Blackwell -Super Bowl 2018 -Snapchat Update -Justin Timberlake -Classroom -Bob Dole -Winter Olympics -Super Bowl 2018 -Google Drive -Virginia Woolf -Kylie Jenner -Shaun White -slides -Olive Garden -Tom Petty -Super Bowl score -Paula Modersohn-Becker -Florida shooting -Elizabeth Blackwell -Kylie Jenner -Carter G. Woodson -Wilder Penfield -Super Bowl 2018 -Black Panther -SpaceX -Carter G. Woodson -Super Bowl 2018 -Chloe Kim Snowboarder -Happy Valentines Day -Dow Jones -Patriots -Joe Kennedy -Did the Groundhog See His Shadow -Paula Modersohn-Becker -Louise Linton -SpaceX -Super Bowl 2018 -What Time Is The Super Bowl -Elizabeth Blackwell -Jon Huntsman -Elton John -Johnny Weir -Winter Olympics -Wilder Penfield -Fifty Shades Freed -Winter Olympics -Elizabeth Blackwell -Larry Nassar -Outback Steakhouse -Dwyane Wade -New England Patriots owner -Rob Porter -Maddie Mastro -Happy Valentines Day -Paula Modersohn-Becker -Carter G. Woodson -Elizabeth Blackwell -Virginia Woolf -Florida shooting -Paula Modersohn-Becker -Elizabeth Blackwell -Cavs -Fifty Shades Freed -Sergei Eisenstein -Virginia Woolf -calculator -Super Blue Blood Moon -Virginia Woolf -Elizabeth Blackwell -Groundhog Day 2018 -Paula Modersohn-Becker -Super Bowl score -Elizabeth Blackwell -XFL -Dow Jones industrial average -Paula Modersohn-Becker -Mark Salling -Super Bowl Commercials 2018 -Bitcoin Price -Super Bowl 2018 -Fredo Santana -State of the Union -Patriots -Larry Nassar -Elizabeth Blackwell -Winter Olympics -Cherry Seaborn -Omarosa -State of the Union -Super Bowl Commercials 2018 -Wilder Penfield -Grammys 2018 -slides -Winter Olympics -Isaiah Canaan -government shutdown -Paula Modersohn-Becker -Shaun White -John Mahoney -Vikings Vs Eagles -Government Shutdown -Super Bowl score -Black Panther -Sergei Eisenstein -Sergei Eisenstein -This Is Us -UFC 220 -Den of Thieves -Super Bowl score -Gigi Hadid -Virginia Woolf -Earthquake Today -Grammys 2018 -NBA Trades -Kesha Grammy -Paula Modersohn-Becker -Paula Modersohn-Becker -Julie Ertz -Royal Rumble 2018 -Patriots -Red Gerard -Patriots -Dow Jones -SpaceX -Super Bowl Commercials -NBA Trades -Sergei Eisenstein -Esteban Loaiza -Government Shutdown -Joshua Cooper Ramo -Uma Thurman -Government Shutdown -Ash Wednesday -Walter Payton -What Time Is The Super Bowl -Sean Hannity -Super blue blood Moon -Paula Modersohn-Becker -SpaceX -Winchester -CBS Sports -Virginia Woolf -Super Bowl 2018 -Tomi Lahren -Virginia Woolf -Terrell Owens -SpaceX -Sarah Barthel -Elizabeth Blackwell -Justin Timberlake -Joe Kennedy -Grammys 2018 -Shaun White -Mavic Air -Patriots -Andre the Giant -Virginia Woolf -calculator -Valentines Day Images -Cloverfield Paradox -Justin Timberlake -All Star Weekend 2018 -Elizabeth Blackwell -Elizabeth Blackwell -Bitcoin Price -Bitcoin Price -Florida shooting -Sergei Eisenstein -Florida shooting -Paula Modersohn-Becker -Carter G. Woodson -SpaceX -Lena Zawaideh -Eli Manning -Florida shooting -Super Bowl score -Paula Modersohn-Becker -Tom Petty -SpaceX -All Star Weekend 2018 -Patriots -Carter G. Woodson -Super Bowl 2018 -Quincy Jones -Government Shutdown -Friends movie -Justin Timberlake -Virginia Woolf -North Korean cheerleaders -Dow Jones industrial average -Justin Timberlake -Super Bowl 2018 -Kentucky shooting -NBA Trades -Lunar eclipse -Virginia Woolf -Super Bowl score -Dow Jones -Robert Wagner -Monster Hunter World -Carter G. Woodson -Virginia Woolf -Bitcoin Price -Government Shutdown -State of the Union -Woody Allen -Rasual Butler -Sergei Eisenstein -United States Postal Service -Sergei Eisenstein -UFC 220 -Blake Griffin -Luke Wilson -Winter Olympics -Super Bowl score -Morgan Freeman -Wilder Penfield -Winter Olympics -SpaceX -Kentucky shooting -Elizabeth Blackwell -SpaceX -Luke Wilson -Sergei Eisenstein -Aaron Fies -This Is Us -Winter Olympics -Winter Olympics -Sergei Eisenstein -Paula Modersohn-Becker -Super Bowl score -Super Blue Blood Moon -Justin Timberlake -Black Panther -Grammys 2018 -Sergei Eisenstein -Government Shutdown Meaning -Dwyane Wade -Elizabeth Blackwell -The Alienist -Virginia Woolf -Carter G. Woodson -Winter Olympics -Olympic medal count -Wilder Penfield -Olympic medal count -State of the Union -Larry Nassar -Larry Nassar -Lunar eclipse -Florida shooting -Elizabeth Blackwell -Memo -Wilder Penfield -Ash Wednesday -Jessica Chastain -Duke basketball -Justin Timberlake -What Time Is The Super Bowl -New England Patriots owner -stock market -Government Shutdown -Anthony Davis -tsunami -Super Bowl 2018 -Neil Diamond -Patriots -Carter G. Woodson -Ash Wednesday -Shaun White -SAG Awards 2018 -Sergei Eisenstein -Paula Modersohn-Becker -Sergei Eisenstein -Carl Higbie -Gianni Versace -Groundhog Day 2018 -CNN -Paula Modersohn-Becker -Black Lightning -Patriots -Super Bowl 2018 -Paula Modersohn-Becker -Fredo Santana -Hope Hicks -Government Shutdown Meaning -Yu Darvish -Wilder Penfield -Bruno Mars -Patriots -Black Panther -Winter Olympics -Chris Paul -Black Panther -Blake Griffin Trade -Wilder Penfield -Larry Nassar -Government shutdown -Enzo Amore -Paula Modersohn-Becker -Black Panther -Paula Modersohn-Becker -SpaceX -Kylie Jenner Baby Girl -Virginia Woolf -Paula Modersohn-Becker -SpaceX -Did the Groundhog See His Shadow -Super Bowl score -Carter G. Woodson -Olympic Medal Count -Casey Affleck -SAG Awards 2018 -Virginia Woolf -Sergei Eisenstein -What Time Is The Super Bowl -Carter G. Woodson -Elizabeth Blackwell -Government shutdown 2018 -Dwyane Wade -Super Bowl 2018 -What Time Is The Super Bowl -Florida shooting -Paula Modersohn-Becker -Justin Timberlake -Grammys 2018 -Chloe Kim -Super Bowl 2018 -Wilder Penfield -John Mahoney -CNN -Patriots -Florida shooting -Super Blue Blood Moon -Kylie Jenner -Alaska earthquake -Paula Modersohn-Becker -Florida shooting -Carter G. Woodson -Mark Salling -Celtics -Wilder Penfield -Government Shutdown -Cherry Seaborn -Bitcoin Price -Grammys 2018 -Super Bowl score -Super blue blood Moon -Best Superbowl Commercials 2018 -SpaceX -New England Patriots owner -Jamie Anderson -Elizabeth Blackwell -Paula Modersohn-Becker -Joe Kennedy -Government shutdown -Patriots -Patriots -Alaska earthquake -Hostiles -Culture 2 -Bitcoin Price -Winter Olympics -Google Classroom -Kim Kardashian -Brie Larson -Virginia Woolf -Wilder Penfield -Winter Olympics -12 Strong -Kesha -Carter G. Woodson -Government shutdown -Dow Jones -Grammys 2018 -Carter G. Woodson -Trump State of the Union -Royal Rumble 2018 -Outback Steakhouse -Snake -Wilder Penfield -Chloe Kim -Elizabeth Blackwell -Wilder Penfield -Patriots -Sergei Eisenstein -Grammys 2018 -What Time Is The Super Bowl -Nba All Star Draft -Carter G. Woodson -Jimmy Garoppolo -Carter G. Woodson -Bradie Tennell -Super Bowl score -Kim Cattrall -Oscar Nominations 2018 -SAG Awards 2018 -Super Bowl 2018 -Carter G. Woodson -Google Classroom -Virginia Woolf -SZA -Vikings Vs Eagles -Lady Gaga -Dow Jones -Government shutdown 2018 -Chloe Kim -State of the Union -Florida shooting -Wilder Penfield -Obama portrait -Super Bowl score -Elizabeth Blackwell -SpaceX -Virginia Woolf -What Time Is The Super Bowl -Florida shooting -UFC 220 -Did the Groundhog See His Shadow -Roger Federer -Trey Gowdy -Wilder Penfield -All Star Weekend 2018 -Kim Kardashian -Super Bowl score -Winter Olympics -Super Bowl score -Sergei Eisenstein -Super Bowl score -Jo Jo White -Super Bowl score -Fredo Santana -Jimmy Garoppolo -Lunar eclipse -Virginia Woolf -Tesla in space -Winter Olympics -Patriots -Mardi Gras 2018 -Florida shooting -Florida shooting -Paula Modersohn-Becker -Elizabeth Blackwell -Black Panther -Winter Olympics -Super blue blood Moon -Costco Wholesale -Super blue blood Moon -Winter Olympics -Florida shooting -Memo -Aaron Feis -Elizabeth Blackwell -Wilder Penfield -The 15:17 to Paris -Pro Bowl 2018 -The Resident -Super Blue Blood Moon -Shaun White -Patriots -Stan Lee -Monster Hunter World -Steve Wynn -Vanessa Trump -Wilder Penfield -When We First Met -SpaceX -Carrie Underwood -Tom Petty -Patriots -Virginia Woolf -Black Panther -Patriots -Conor McGregor -Dwyane Wade -Scott Baio -Paula Modersohn-Becker -Rob Delaney -Justin Timberlake -Carter G. Woodson -Government Shutdown -Winter Olympics -Paula Modersohn-Becker -Florida shooting -Olympic medal count -Super Bowl 2018 -NBA Trades -SpaceX -Justin Timberlake -Winter Olympics -Blue Moon -Paula Modersohn-Becker -Virginia Woolf -Virginia Woolf -SpaceX -Larry Nassar -Elizabeth Blackwell -Florida shooting -Carter G. Woodson -Tiger Woods -Daytona 500 -Florida shooting -Super Bowl 2018 -Sergei Eisenstein -Elizabeth Blackwell -Larry Nassar -Super Bowl 2018 -Patriots -Grammys 2018 -Harley Barber -Lady Bird -Obama portrait -Did the Groundhog See His Shadow -Tiger Woods -SpaceX -Super blue blood Moon -Deadpool 2 -Wilder Penfield -Paula Modersohn-Becker -stock market -Carter G. Woodson -Patriots -NBA Trades -When We First Met -Portia de Rossi -Kylie Jenner -Cloverfield Paradox -What Time Is The Super Bowl -Super Bowl 2018 -Andrew Cunanan -SpaceX -Shaun White -SpaceX -New England Patriots owner -Florida shooting -Kylie Jenner -Tonga -Mueller -Kodak Black -Super blue blood Moon -Duke Basketball -Carter G. Woodson -Sergei Eisenstein -Virginia Woolf -Virginia Woolf -Brynn Cameron -Patriots -Wilder Penfield -Super Bowl score -Google Drive -Sarah Barthel -Celebrity Big Brother cast -Winter Olympics -Patti LuPone -Paula Modersohn-Becker -Caroline Wozniacki -Elizabeth Blackwell -Sergei Eisenstein -Super Bowl score -Super Bowl score -Wilder Penfield -Yahoo Finance -Super Bowl 2018 -Cavs -Elizabeth Blackwell -Wilder Penfield -Oscar Nominations 2018 -Government shutdown -Eli Manning -Tammy Duckworth -State of the Union -Wilder Penfield -Super blue blood Moon -Wilder Penfield -Johnny Weir -Florida shooting -Melania Trump -Google docs -Sarah Barthel -Matt Patricia -Neil Diamond -Elizabeth Blackwell -Jason Kelce -Elizabeth Blackwell -Jennifer Aniston -Paula Modersohn-Becker -Carter G. Woodson -Florida shooting -Kylie Jenner -Josh McDaniels -Florida shooting -Princess Eugenie -Groundhog Day 2018 -Virginia Woolf -Chicago Weather -Dwyane Wade -Memo -Alex Reimer -Super Bowl 2018 -Elizabeth Blackwell -Sergei Eisenstein -Patriots -Grammys 2018 -Virginia Woolf -Government shutdown -Trump State of the Union -Paula Modersohn-Becker -Sergei Eisenstein -Carter G. Woodson -Sergei Eisenstein -Super Blue Blood Moon -Fredo Santana -Release The Memo -Wilder Penfield -Royal Rumble 2018 -Super Bowl 2018 -Super Bowl 2018 -Patriots -Super Bowl score -Oscar Nominations 2018 -Super Bowl score -Chinese New Year 2018 -Grammys 2018 -Vikings Vs Eagles -Fb Stock -Vikings Vs Eagles -Oscar Nominations 2018 -Chinese New Year 2018 -SpaceX -SpaceX -Mardi Gras 2018 -What Time Is The Super Bowl -Carter G. Woodson -Solo Trailer -Kylie Jenner -Patriots -Shaun White -New California -Vikings Vs Eagles -Vikings Vs Eagles -Patriots -Elizabeth Blackwell -Tyler Hilinski -Solo Trailer -Paula Modersohn-Becker -Google docs -Evgenia Medvedeva -What Time Is The Super Bowl -Super Bowl Commercials 2018 -Sergei Eisenstein -Grammys 2018 -Super Bowl score -Call Me by Your Name -Joe Kennedy -This Is Us -Florida shooting -Paula Modersohn-Becker -Bob Dole -SpaceX -Winter Olympics -February -Sergei Eisenstein -Red Gerard -Super Bowl 2018 -SpaceX -NBA Trades -Devin Nunes -Sergei Eisenstein -calculator -Sergei Eisenstein -UFC 220 -Dwyane Wade -Dow Jones -Virginia Woolf -Kim Kardashian -Florida shooting -Blake Griffin -Grammys 2018 -Paula Modersohn-Becker -Early Man -Sergei Eisenstein -What Time Is The Super Bowl -Justin Timberlake -Carter G. Woodson -Monster Hunter World -Sergei Eisenstein -Vanessa Marcil -Elizabeth Blackwell -Justin Timberlake -Super Bowl score -Kylie Jenner Baby Girl -Winter Olympics -Alex Smith -School closings -Adam Rippon -Matt Czuchry -Meteor -Patriots -Mark Salling -Wilder Penfield -Winter Olympics -Grammys 2018 -Esteban Loaiza -Florida shooting -XIV -Elizabeth Blackwell -Government shutdown -Frank Reich -Cavs -Virginia Woolf -Paula Modersohn-Becker -Grammys 2018 -Super Bowl score -Adam Rippon -Did the Groundhog See His Shadow -Patriots -What Time Is The Super Bowl -stock market -Super blue blood Moon -Patriots -Florida shooting -Camila Cabello -Alex Smith -Virginia Woolf -Westerville Ohio -Carter G. Woodson -Winter Olympics -Sergei Eisenstein -This Is Us -SpaceX -Cloverfield Paradox -Grammys 2018 -The 15:17 to Paris -What Time Is The Super Bowl -Rose McGowan -Black Panther -New England Patriots owner -Chipper Jones -Bitcoin Price -Winter Olympics -Government Shutdown Meaning -Winter Olympics -Paula Modersohn-Becker -Elizabeth Blackwell -Super Bowl 2018 -Oscar Nominations 2018 -Paula Modersohn-Becker -Virginia Woolf -Super Bowl score -Groundhog Day 2018 -Gianni Versace -Justin Timberlake -Cavs -Timor Leste -Lauren Davis -Emily Sweeney -Virginia Woolf -The Home Depot -Alex Smith -This Is Us -Carter G. Woodson -Winter Olympics -Super Bowl score -Kylie Jenner -Super Bowl score -Carter G. Woodson -Pro Bowl 2018 -Marlon Brando -Meteor -Jimmy Garoppolo -Mark Salling -Carter G. Woodson -Super Bowl score -School Closings -Den of Thieves -Joe Kennedy -Carter G. Woodson -Florida shooting -Vanessa Trump -Oscar Nominations 2018 -Kristaps Porzingis -Carter G. Woodson -Carter G. Woodson -Hope Hicks -Super Bowl score -Winter Olympics -Tara Lipinski -Zion Williamson -Paula Modersohn-Becker -Super Bowl 2018 -Fredo Santana -Black Panther -Justin Timberlake -Cavs -Virginia Woolf -Grammys 2018 -Wilder Penfield -SAG Awards 2018 -Alexander Polinsky -Carter G. Woodson -Virginia Woolf -Obama portrait -Paragon -Government Shutdown 2018 -Elizabeth Blackwell -Virginia Woolf -Royal Rumble 2018 -Happy Valentines Day -Elizabeth Blackwell -Winter Olympics -tsunami -Florida shooting -Super Bowl 2018 -Winchester -Patriots -Elizabeth Blackwell -Patriots -Super Bowl 2018 -Nintendo Labo -Fredo Santana -Super blue blood Moon -Carter G. Woodson -Mark Salling -Dow Jones -Korea -Mexico Vs Bosnia -Wilder Penfield -SAG Awards 2018 -Government Shutdown -Elizabeth Blackwell -Super Bowl score -Florida shooting -UFC 220 -Sergei Eisenstein -Jason Kelce -Wilder Penfield -Virginia Woolf -Florida shooting -Super Bowl Winners -Florida shooting -Patriots -Super blue blood Moon -Kristaps Porzingis -Sergei Eisenstein -Carter G. Woodson -John Mahoney -Paula Modersohn-Becker -SAG Awards 2018 -Kylie Jenner -Cloverfield Paradox -UFC 220 -Robert Mueller -Justin Timberlake -Lady Bird -Winter Olympics -Jeff Flake -What Time Is The Super Bowl -Winter Olympics -Elizabeth Blackwell -School Closings -Mr Rogers -Blake Griffin -Elizabeth Blackwell -Carter G. Woodson -Fredo Santana -Google Classroom -Sergei Eisenstein -Google Drive -The Home Depot -Florida shooting -Government Shutdown Meaning -Happy Valentines Day -Trump State of the Union -Bitcoin Price -Carter G. Woodson -Super Bowl score -Super Bowl score -Snapchat Update -Wilder Penfield -Virginia Woolf -Super Bowl score -Rodney Hood -Happy Valentines Day -All Star Weekend 2018 -Lakers -Grammys 2018 -When We First Met -Valentine's Day -FC Barcelona -Mark Salling -Greg Monroe -Florida shooting -Earthquake Today -Super Bowl score -Sergei Eisenstein -Bitcoin Price -Patti LuPone -Mark Salling -State of the Union -Rett Syndrome -Happy Valentines Day -Chinese New Year 2018 -Virginia Woolf -Mitt Romney -Peter Rabbit -Super Bowl 2018 -Google docs -Super Bowl 2018 -Elizabeth Blackwell -Alaska earthquake -Johnny Weir -Super Bowl 2018 -Government Shutdown -Lakers -Lil Xan -Winter Olympics -Mark E Smith -Wilder Penfield -Cloverfield Paradox -Blake Griffin -Paula Modersohn-Becker -Solo Trailer -Elizabeth Blackwell -Rihanna -Carter G. Woodson -Government shutdown 2018 -Paula Modersohn-Becker -Larry Nassar -This Is Us -Kris Dunn -Bill Parcells -Alex Smith -Virginia Woolf -Happy Valentines Day -Florida shooting -Virginia Woolf -Larry Nassar -Winter Olympics -Wilder Penfield -Super Bowl 2018 -Winter Olympics -Florida shooting -Winter Olympics -Patriots -Kylie Jenner -Super Bowl 2018 -Mark E Smith -Patriots -Elizabeth Blackwell -Olympic Medal Count -Winter Olympics -NBA Trades -Paula Modersohn-Becker -Obama portrait -Justin Timberlake -UFC 220 -Kesha Grammy -Super blue blood Moon -Kylie Jenner -Kelsey Grammer -Blue Moon -Virginia Woolf -Enzo Amore -Justin Timberlake -Super Bowl 2018 -Valentines Day -Florida shooting -Government Shutdown -Blake Griffin -Snap Stock -Super Bowl 2018 -Winter Olympics -Super blue blood Moon -Mark Salling -What Time Is The Super Bowl -Mark Salling -Super Bowl 2018 -Sergei Eisenstein -Chicago West -Virginia Woolf -Super Bowl score -Johnny Weir -Winter Olympics -Justin Timberlake -stock market -Virginia Woolf -Super Bowl 2018 -Ash Wednesday -Omarosa -Florida shooting -Cavs -Larry Nassar -State of the Union -Justin Timberlake -Paula Modersohn-Becker -Johnny Weir -DeMarcus Cousins -Valentines Day -Virginia Woolf -School closings -Super Bowl 2018 -Dow Jones industrial average -Alaska earthquake -Google Drive -Larry Nassar -Winter Olympics -The 15:17 to Paris -Groundhog Day 2018 -Alaska earthquake -school closings -Valentine's Day -Happy Valentines Day -Elizabeth Blackwell -Groundhog Day 2018 -Obama portrait -Virginia Woolf -Tessa Virtue -Ash Wednesday -Kylie Jenner -Carter G. Woodson -Jamie Dornan -Grammys 2018 -Florida shooting -Trey Gowdy -Patriots -Wilder Penfield -Presidents Day 2018 -Happy Valentines Day -Abraham Lincoln -Carter G. Woodson -Elizabeth Blackwell -Larry Nassar -Kitty Kat West -Olympic medal count -Winter Olympics -Winter Olympics -Wilder Penfield -Dennis Edwards -Paula Modersohn-Becker -Patriots -Shaun White -Winter Olympics -Government shutdown -Morgan Freeman -Winter Olympics -Kylie Jenner -Kingdom Come Deliverance -Celtics -Rasual Butler -Super Bowl score -Olivia Culpo -Sergei Eisenstein -Vanity Fair Cover -Andrew McCabe -Google docs -Super Blue Blood Moon -Aliona Savchenko -Mardi Gras 2018 -Larry Nassar -Wilder Penfield -Manchester United -Royal Rumble 2018 -Carter G. Woodson -Super Bowl 2018 -Groundhog Day 2018 -Kim Kardashian -Google Classroom -Peter Rabbit -stock market -Virginia Woolf -Patriots -Elizabeth Blackwell -Patriots -Lindsey Vonn -Super Bowl score -Wilder Penfield -Sergei Eisenstein -Blake Griffin Trade -Elton John -Patriots -Super Bowl 2018 -What Time Is The Super Bowl -Carter G. Woodson -Super Bowl 2018 -Government Shutdown -Brie Larson -Wilder Penfield -Black Panther -Oscar Nominations 2018 -Wilder Penfield -Carter G. Woodson -Florida shooting -Carter G. Woodson -Rasual Butler -Winter Olympics -Rasual Butler -Carter G. Woodson -Kirstjen Nielsen -Super blue blood Moon -Alessia Cara -Florida shooting -Justin Timberlake -Dow Jones -Kylie Jenner -Paula Modersohn-Becker -Patriots -Wilder Penfield -Larry Nassar -Shaun White -Chinese New Year 2018 -Winter Olympics -State of the Union -Super blue blood Moon -Chicago West -Mardi Gras 2018 -Florida shooting -Den of Thieves -Kylie Jenner -Ann Curry -Florida shooting -Alexa Commercial -Winter Olympics -Elizabeth Blackwell -Tom Petty -Cory Booker -Trey Gowdy -Kentucky shooting -What Time Is The Super Bowl -Stan Lee -Champions League -Super Bowl 2018 -SpaceX -Virginia Woolf -Groundhog Day 2018 -Royal Rumble 2018 -Elton John -Caroline Wozniacki -Winter Olympics -Elizabeth Blackwell -Sergei Eisenstein -Super Bowl score -Bill Belichick -Wilder Penfield -Government Shutdown -Virginia Woolf -Kodak Black -Elizabeth Blackwell -Andrew Cunanan -Government Shutdown -Super Bowl 2018 -Florida shooting -Wilder Penfield -Mike Tomlin -Alex Reimer -Shaun White -Bitcoin Price -Justin Timberlake -Super blue blood Moon -Alaska earthquake -Wilder Penfield -What Time Is The Super Bowl -Patriots -Terrell Owens -Sergei Eisenstein -Bitcoin Price -Carter G. Woodson -Happy Valentines Day -Dow Jones -Kylie Jenner -Royal Rumble 2018 -Winter Olympics -Super blue blood Moon -Women's March 2018 -Oscar Nominations 2018 -Carter G. Woodson -Tyler Hilinski -Justin Timberlake -Winter Olympics -Royal Rumble 2018 -Ash Wednesday -Government shutdown 2018 -Carter G. Woodson -Super Bowl 2018 -New England Patriots owner -Peter Rabbit -Trump State of the Union -Tonga -Kylie Jenner -SpaceX -Conor McGregor -Puppy Bowl 2018 -What Time Is The Super Bowl -Gods Plan -Kentucky shooting -calculator -Elizabeth Blackwell -Grammys 2018 -Florida shooting -Elizabeth Blackwell -Virginia Woolf -Elizabeth Blackwell -State of the Union -Bitcoin Price -Winter Olympics -Larry Nassar -Patriots -Nba All Star Draft -Kylie Jenner -This Is Us -Wilder Penfield -Chris Long -Super Bowl score -Virginia Woolf -Grammys 2018 -Patti LuPone -Joseph Haynes -Ash Wednesday -Trump State of the Union -Government Shutdown -Winter Olympics -Government Shutdown -Florida shooting -Camila Cabello -Sergei Eisenstein -Government Shutdown -Wilder Penfield -Rihanna -Super Bowl score -Patriots -Florida shooting -Olympics 2018 -Virginia Woolf -Paula Modersohn-Becker -Josh McDaniels -Blake Griffin Trade -Government Shutdown 2018 -Virginia Woolf -Kentucky shooting -Alex Smith -school closings -Wilder Penfield -Virginia Woolf -Super Bowl score -Virginia Woolf -Justin Timberlake -Winter Olympics -Lady Bird -School closings -Paul Ryan -Childish Gambino -Larry Nassar -Wilder Penfield -Paula Modersohn-Becker -Tom Petty -Carter G. Woodson -Justin Timberlake -happy new year in Chinese -Memo -Shaun White -Kesha Grammy -Super Bowl score -Elizabeth Blackwell -New England Patriots owner -UFC 220 -Marlon Brando -Government Shutdown Meaning -Adam Rippon -Government shutdown -Justin Timberlake -Super Bowl 2018 -Kylie Jenner -School Closings -What Time Is The Super Bowl -Virginia Woolf -Winter Olympics -Kylie Jenner -Winter Olympics -Jalen Ramsey -Despacito -Ash Wednesday -Winter Olympics -Paula Modersohn-Becker -Larry Nassar -Florida shooting -Kentucky shooting -Amy Schumer -Super Bowl score -Matt Patricia -SpaceX -Robert Wagner -Kylie Jenner -Elizabeth Blackwell -Puppy Bowl 2018 -Larry Nassar -Justin Timberlake -Luke Wilson -Grammys 2018 -Government Shutdown -Omarosa -Happy Valentines Day -Meteor -Olympic medal count -Yura Min -Elizabeth Blackwell -Shaun White -Super Bowl 2018 -Daryle Singletary -Florida shooting -Wilder Penfield -Kristaps Porzingis -Virginia Woolf -Grammys 2018 -Sea Of Thieves -Super Bowl score -Super Bowl score -Virginia Woolf -Fifty Shades Freed -Eli Manning -Patty Hearst -This Is Us -Alex Smith -Trump State of the Union -Carter G. Woodson -Josh McDaniels -Culture 2 -Amy Schumer -Virginia Woolf -Blake Griffin Trade -Kylie Jenner -Elizabeth Blackwell -SAG Awards 2018 -Despacito -Don Lemon -Virginia Woolf -Ted Bundy -calculator -Grammys 2018 -Virginia Woolf -Devin Nunes -Mardi Gras 2018 -Winter Olympics -Isaiah Thomas -Virginia Woolf -Paula Modersohn-Becker -Russell Wilson -What Time Is The Super Bowl -This Is Us -Grammys 2018 -SAG Awards 2018 -Snapchat Update -Dow Jones -Joshua Cooper Ramo -Andrew McCabe -Isaiah Thomas -Chloe Kim -Chloe Kim -Florida shooting -Bitcoin Price -Patriots -Black Panther -Tom Brady daughter -Vanessa Marcil -SpaceX -Tom Izzo -Elizabeth Blackwell -Carter G. Woodson -Mitt Romney -Paul Ryan -NBA Trades -Obama portrait -Carter G. Woodson -Tessa Virtue -Rasual Butler -Adam Rippon -Justin Timberlake -Trump State of the Union -Incredibles 2 -Grammys 2018 -Shaun White -Sergei Eisenstein -SpaceX -Paula Modersohn-Becker -Super Bowl score -Carter G. Woodson -Shibutani -Chloe Kim -Despacito -Kylie Jenner -Happy Valentines Day -Elizabeth Blackwell -Elizabeth Blackwell -What Time Is The Super Bowl -Mardi Gras 2018 -Elizabeth Blackwell -United States Of America Winter Olympics -Justin Timberlake -Sea Of Thieves -Mexico Vs Bosnia -Natalie Wood -Nancy Pelosi -Cavs -SpaceX -Incredibles 2 -Super Bowl 2018 halftime show -Paula Modersohn-Becker -Mark Salling -Sergei Eisenstein -Virginia Woolf -Fifty Shades Freed -Altered Carbon -Kevin Love -Paula Modersohn-Becker -Winter Olympics -Olympic medal count -Virginia Woolf -Adam Rippon -Super Bowl score -Super Bowl score -Peter Rabbit -Blake Griffin -Super Bowl 2018 -Memo -SpaceX -Sergei Eisenstein -Pro Bowl 2018 -Patriots -What Time Is The Super Bowl -Jason Kidd -Paula Modersohn-Becker -SpaceX -Kelly Clark -Robby Anderson -Carter G. Woodson -Patriots -Valentines Day Cards -Lee Miglin -Paula Modersohn-Becker -Lunar eclipse -What Time Is The Super Bowl -SpaceX -Kylie Jenner -Paula Modersohn-Becker -Bruno Mars -Otto Warmbier -Kentucky shooting -Fredo Santana -Justin Timberlake -Sergei Eisenstein -Tom Brady daughter -SpaceX -Winter Olympics -Virginia Woolf -Jacob Copeland -Virginia Woolf -Happy Valentines Day -Elizabeth Blackwell -Terrell Owens -Government shutdown -Super Bowl score -This Is Us -Rob Porter -Brynn Cameron -Winter Olympics -Wilder Penfield -Government shutdown -Super Bowl 2018 -Tom Izzo -Neil Diamond -Carter G. Woodson -Mark Salling -Virginia Woolf -State of the Union -Paula Modersohn-Becker -Joe Kennedy -Super Bowl 2018 -Carter G. Woodson -Rasual Butler -Robert Mueller -This Is Us -Andrew McCabe -Chloe Kim -Red Gerard -Google docs -Chipper Jones -Elizabeth Blackwell -Paula Modersohn-Becker -Virginia Woolf -Winter Olympics -Rodney Hood -Winter Olympics -Kylie Jenner -Sergei Eisenstein -Prince William -Pro Bowl 2018 -Celtics -Super Bowl 2018 -Rose McGowan -Government shutdown 2018 -Super Bowl 2018 -Super Bowl 2018 -Winter Olympics -stock market -Patriots -Mardi Gras 2018 -Memo -Patriots -Amy Schumer -Sergei Eisenstein -What Time Is The Super Bowl -Sergei Eisenstein -Sergei Eisenstein -Alessia Cara -Kylie Jenner -Sergei Eisenstein -Lauren Davis -Super Bowl score -earthquake today -Sergei Eisenstein -Dow Jones -Shiffrin -Elton John -Florida shooting -Dow Jones -Kristaps Porzingis -Super Bowl 2018 -Government Shutdown Meaning -Bitcoin Price -Terrell Owens -Virginia Woolf -Black Panther -Patriots -Elizabeth Blackwell -Earthquake Today -Blake Griffin -Super Bowl score -Wilder Penfield -Rob Delaney -Happy Valentines Day -Walter Payton -Stan Lee -Sal Castro Middle School -Elizabeth Blackwell -Tiger Woods -Venom -Government shutdown 2018 -Wilder Penfield -Black Panther -Carter G. Woodson -School Closings -Quincy Jones -National Pizza Day -AR-15 -Stormi -SpaceX -Paula Modersohn-Becker -Yu Darvish -Patriots -Andre Roberson -Super Bowl 2018 -Sergei Eisenstein -Kim Kardashian -Elizabeth Blackwell -Lil Pump -Princess Eugenie -Florida shooting -Lena Zawaideh -Mark Salling -Sergei Eisenstein -Taiwan Earthquake Today -Mikaela Shiffrin -Kylie Jenner -Florida shooting -Sergei Eisenstein -Justin Timberlake -Super Bowl 2018 -Patriots -Larry Nassar -Patriots -Peter Rabbit -Super Bowl Commercials -Blue Ivy -Valentines Day -Zion Williamson -Valentines Day Memes -Larry Nassar -Carter G. Woodson -Government Shutdown Meaning -NBA Trades -Super Bowl score -NBA Trades -Super Bowl 2018 -Ash Wednesday -Super Bowl 2018 -NBA Trades -Carter G. Woodson -Super Bowl 2018 -Sergei Eisenstein -Vikings Vs Eagles -Wilder Penfield -Paula Modersohn-Becker -Larry Nassar -Black Panther -Chinese New Year 2018 -Super Bowl score -Amy Schumer -Alessia Cara -Virginia Woolf -Super Bowl 2018 -LeBron James -Cloverfield Paradox -Wilder Penfield -Florida shooting -Wilder Penfield -Paul Ryan -Kylie Jenner -Dow Jones -Super Bowl 2018 -Elizabeth Blackwell -Larry Nassar -Kylie Jenner -Groundhog Day 2018 -Solo Trailer -Super Bowl 2018 -Marlon Brando -Justin Timberlake -Carter G. Woodson -Tsunami Warning -Jennifer Aniston -Jessica Chastain -Sergei Eisenstein -Wilder Penfield -NBA Trades -Nathan Chen -Sergei Eisenstein -Valentines Day -Peter Rabbit -Carter G. Woodson -State of the Union -Kesha Grammy -SpaceX -Mardi Gras 2018 -Jo Jo White -Carter G. Woodson -What Time Is The Super Bowl -XFL -earthquake today -Ursula Le Guin -Blood Moon -Fifty Shades Freed -Paula Modersohn-Becker -Pro Bowl 2018 -Chris Long -Virginia Woolf -Dane Cook -SpaceX -Jennifer Aniston -Patriots -Joe Kennedy -United States Of America Winter Olympics -Elton John -Government Shutdown -Mike Tomlin -Kim Kardashian -Vikings vs Eagles -Paula Modersohn-Becker -Carter G. Woodson -Did the Groundhog See His Shadow -Tammy Duckworth -Wilder Penfield -NASCAR -Esteban Loaiza -Yahoo Finance -Wilder Penfield -State of the Union -What Time Is The Super Bowl -Black Panther -Virginia Woolf -Jessica Chastain -Daryle Singletary -Wilder Penfield -Royal Rumble 2018 -SpaceX -Wilder Penfield -Sergei Eisenstein -Bruno Mars -Larry Nassar -Maze Runner: The Death Cure -Paula Modersohn-Becker -Sergei Eisenstein -Google Classroom -Super Bowl 2018 -Greg Monroe -Dow Jones -Virginia Woolf -Sergei Eisenstein -Carter G. Woodson -NBC Sports -Kawhi Leonard -Cavs -Groundhog Day 2018 -Wilder Penfield -Wilder Penfield -Sergei Eisenstein -Patriots -Super Bowl Commercials 2018 -Paula Modersohn-Becker -Virginia Woolf -SZA -Mark Salling -Real Madrid -Winter Olympics -Florida shooting -Larry Nassar -Winter Olympics -Rasual Butler -stock market -UFC 220 -Red Gerard -Rasual Butler -Paula Modersohn-Becker -Florida shooting -Florida shooting -Elton John -SpaceX -Paula Modersohn-Becker -Winter Olympics -Maze Runner: The Death Cure -Florida shooting -Alessia Cara -Sergei Eisenstein -Rasual Butler -Patriots -Winter Olympics -XFL -Grammys 2018 -Tara Lipinski -Women's March 2018 -Super Bowl 2018 -Carter G. Woodson -John Mahoney -Elizabeth Blackwell -CNN -Steve Wynn -Super Bowl score -Patriots -Winter Olympics -Patriots -Valentines Day -Football Playoffs 2018 -Government Shutdown -Shaun White -calculator -Super Bowl 2018 -Lena Zawaideh -Rachel Brand -Oscar Nominations 2018 -Justin Timberlake -Justin Timberlake -Blake Griffin Trade -Super Bowl 2018 -Lil Pump -Patriots -Elizabeth Blackwell -James Maslow -Elizabeth Blackwell -Government Shutdown -Super Bowl score -Paula Modersohn-Becker -Adam Rippon -Black Panther -Paula Modersohn-Becker -Snapchat Update -Alexander Polinsky -Super Bowl 2018 -Alison Brie -Quincy Jones -Super Bowl 2018 -SpaceX -Paula Modersohn-Becker -Did the Groundhog See His Shadow -Super Bowl score -Winter Olympics -Grammys 2018 -Snake -Paula Modersohn-Becker -Super Bowl score -Super Bowl 2018 -Fifty Shades Freed -Childish Gambino -Paula Modersohn-Becker -Oscar Nominations 2018 -Shaun White -Florida shooting -Did the Groundhog See His Shadow -Florida shooting -Kesha -James Harden -State of the Union -Chinese New Year 2018 -Doomsday Clock -Wilder Penfield -Yura Min -Dow Jones -Steven Tyler -Daryle Singletary -Government Shutdown -Grammys 2018 -Carter G. Woodson -Joe Kennedy -Super Bowl score -Paula Modersohn-Becker -Obama portrait -Larry Nassar -Kim Kardashian -Oscar Nominations 2018 -Paula Modersohn-Becker -Hope Hicks -Super Bowl 2018 -Florida shooting -Edwin Jackson -Government Shutdown -Elizabeth Blackwell -Chloe Kim -Virginia Woolf -Patriots -Justin Timberlake -Super Bowl score -Wilder Penfield -Toys R Us -Tom Brady -Wilder Penfield -Kesha -Paula Modersohn-Becker -Virginia Woolf -Super Bowl 2018 -Stormi -Larry Nassar -Rose McGowan -Andrew Cunanan -Sergei Eisenstein -Forever My Girl -Shaun White -Elizabeth Blackwell -Virginia Woolf -Neil Diamond -Josh McDaniels -Devin Nunes -National Pizza Day -Russell Wilson -calculator -Carter G. Woodson -Grammys 2018 -Wilder Penfield -Google Drive -Super blue blood Moon -Super Bowl 2018 -Tyler Hilinski -Zion Williamson -Sergei Eisenstein -Government shutdown -Wilder Penfield -Andrew Cunanan -The 15:17 to Paris -This Is Us -Wilder Penfield -Super Bowl 2018 -Paula Modersohn-Becker -Super Bowl Commercials 2018 -The Resident -NSA -Andrew Cunanan -SpaceX -Quincy Jones -Winter Olympics -Carter G. Woodson -Larry Nassar -What Time Is The Super Bowl -Patriots -Edwin Jackson -Carter G. Woodson -James Maslow -Carter G. Woodson -Mark Salling -Korea -Kristaps Porzingis -Den of Thieves -Bitcoin Price -Winter Olympics -Super Bowl score -The Resident -Kim Kardashian -Government Shutdown Meaning -Kim Kardashian -Sergei Eisenstein -Florida shooting -Kylie Jenner -XFL -Sergei Eisenstein -Bob Marley -Sergei Eisenstein -Wilder Penfield -Super blue blood Moon -Winter Olympics -Grey's Anatomy -Robert Wagner -Super Bowl 2018 -Bitcoin Price -Olympic medal count -Did the Groundhog See His Shadow -Winter Olympics -Betty White -Disneyland tickets -Winter Olympics -Sergei Eisenstein -Super Bowl score -NBA Trades -Happy Valentines Day -Virginia Woolf -Elton John -Super Bowl 2018 -Florida shooting -Adam Rippon -Altered Carbon -Elton John -Paula Modersohn-Becker -Zion Williamson -Tesla in space -Super Bowl 2018 -NBA Trades -Monster Hunter World -Carter G. Woodson -Paula Modersohn-Becker -Edwin Jackson -Alaska earthquake -UFC 220 -Carter G. Woodson -Memo -Blake Griffin -Blake Griffin -Paula Modersohn-Becker -Government Shutdown -Carter G. Woodson -Patriots -Super Bowl score -Virginia Woolf -Virginia Woolf -Tiger Woods -Will Ferrell -Winter Olympics -Slender Man -Grammys 2018 -Shaun White -Virginia Woolf -Carter G. Woodson -Super blue blood Moon -Larry Nassar -Paula Modersohn-Becker -Virginia Woolf -Florida shooting -Super Bowl 2018 -Winter Olympics -Obama portrait -Virginia Woolf -Warren Miller -Virginia Woolf -Amazon stock -What Time Is The Super Bowl -Dwyane Wade -Kylie Jenner -H&r Block -Virginia Woolf -Vikings Vs Eagles -Altered Carbon -Grammys 2018 -Winter Olympics -What Time Is The Super Bowl -Mikaela Shiffrin -Adam Rippon -Johnny Manziel -Cbs -Super Bowl score -Wilder Penfield -Roger Federer -Sergei Eisenstein -Super Bowl 2018 -Pro Bowl 2018 -Aaron Fies -Dane Cook -Kentucky shooting -Chinese New Year 2018 -Super Bowl Commercials 2018 -Royal Rumble 2018 -Hope Hicks -Vanessa Trump -Joe Kennedy -Super Bowl 2018 -Rasual Butler -Paula Modersohn-Becker -CNN -Nba All Star 2018 -Patriots -Government Shutdown -Kesha Grammy -Elizabeth Blackwell -Mark Salling -Super Bowl score -What Time Is The Super Bowl -Florida shooting -SAG Awards 2018 -Alex Smith -Bitcoin Price -Memo -Wilder Penfield -Super Bowl 2018 -Daniel Kaluuya -Government Shutdown -Trump State of the Union -Carter G. Woodson -Super Bowl 2018 -Jacob Copeland -Super Bowl 2018 -Vikings Vs Eagles -Grammys 2018 -Florida shooting -Kylie Jenner -Super Bowl 2018 -Elizabeth Blackwell -Justin Timberlake -Super Bowl Commercials 2018 -Despacito -Paula Modersohn-Becker -Wilder Penfield -What Time Is The Super Bowl -Sabrina Dhowre -Royal Rumble 2018 -Florida shooting -Elizabeth Blackwell -Grammys 2018 -Winter Olympics -Super Bowl 2018 -Wilder Penfield -Johnny Weir -New England Patriots owner -Mardi Gras 2018 -Pro Bowl 2018 -Justin Timberlake -Super Bowl 2018 -Elizabeth Blackwell -Carter G. Woodson -Florida shooting -Wilder Penfield -Shaun White -Government Shutdown 2018 -Bitcoin Price -Solo Trailer -Carter G. Woodson -Super Bowl 2018 -Aaliyah -Valentines Day -Super Bowl 2018 -Elizabeth Blackwell -Super Bowl 2018 -Kylie Jenner -Ellen Pompeo -Rob Porter -Super Bowl 2018 -Florida shooting -Johnny Weir -Virginia Woolf -Royal Rumble 2018 -Elizabeth Blackwell -Grammys 2018 -national signing day 2018 -Google Classroom -Happy Valentines Day -Elizabeth Blackwell -Vikings Vs Eagles -Dow Jones -Cloverfield Paradox -Elizabeth Blackwell -Andrew Cunanan -Florida shooting -Ash Wednesday -Natalie Wood -Winter Olympics -Memo -Winter Olympics -Alessia Cara -Sergei Eisenstein -Super Bowl score -Alex Reimer -Puppy Bowl 2018 -Dow Jones -NBA Trades -Paula Modersohn-Becker -Black Panther -Super Bowl score -Jenna Morasca -Wilder Penfield -Rodney Hood -Black Lightning -Best Superbowl Commercials 2018 -Larry Nassar -School Closings -Virginia Woolf -Carter G. Woodson -Patriots -Super Bowl score -Sergei Eisenstein -Rasual Butler -Patriots -Mark E Smith -Wilder Penfield -Patriots -Aaron Hernandez -Tonga -Super Bowl 2018 -Wilder Penfield -Dwyane Wade -Did the Groundhog See His Shadow -Did the Groundhog See His Shadow -Puppy Bowl 2018 -Deadpool 2 -Government shutdown -Carl Higbie -Google Classroom -SpaceX -Super Blue Blood Moon -Tyler Hilinski -Patriots -Dwyane Wade -Grammys 2018 -Larry Nassar -Oar Olympics -Matt Patricia -Government Shutdown -Super blue blood Moon -Trey Gowdy -Government Shutdown -UFC 220 -Logan Paul -Grammys 2018 -SpaceX -Andrew McCabe -Sergei Eisenstein -Wilder Penfield -Kylie Jenner -Carter G. Woodson -Pro Bowl 2018 -Winchester -Patriots -Stan Lee -Sergei Eisenstein -Paula Modersohn-Becker -Justin Timberlake -All Star Weekend 2018 -Super Bowl 2018 -Chinese New Year 2018 -Super blue blood Moon -Super Bowl 2018 -Vikings Vs Eagles -Elizabeth Blackwell -Altered Carbon -Paula Modersohn-Becker -Natalie Portman -NBA Trades -Government Shutdown -Black Panther -Marlon Brando -Hostiles -Elton John -Phantom Thread -Carter G. Woodson -Elizabeth Blackwell -Patriots -Super Bowl score -Mark Salling -Lauren Davis -Wilder Penfield -Sergei Eisenstein -Winter Olympics -Alex Smith -happy new year in Chinese -Black Panther -Natalie Wood -Solo Trailer -Sergei Eisenstein -Jessica Chastain -Paula Modersohn-Becker -Post Malone -Elizabeth Blackwell -Cloverfield Paradox -Gods Plan -XFL -Patriots -Omarosa -Lunar eclipse -Cherry Seaborn -Florida shooting -SpaceX -Elizabeth Blackwell -Obama portrait -Virginia Woolf -Justin Timberlake -Chloe Kim -Celebrity Big Brother cast -Mark Salling -SpaceX -Patriots -Groundhog Day 2018 -Edwin Jackson -Patriots -Elizabeth Blackwell -Alaska earthquake -SpaceX -Paula Modersohn-Becker -Patriots -Olympics 2018 -Matt Patricia -Winter Olympics -SpaceX -Jessica Chastain -fake news awards -Government Shutdown Meaning -Elizabeth Blackwell -Virginia Woolf -Kentucky shooting -Super Bowl 2018 -NBA Trades -UFC 220 -Grammys 2018 -Jennifer Aniston -Virginia Woolf -Sergei Eisenstein -Mark E Smith -Chinese New Year 2018 -Government Shutdown -New England Patriots owner -Super Bowl 2018 -Mark Salling -Stan Lee -Government Shutdown -This Is Us -Elizabeth Blackwell -Adam Rippon -State of the Union -Pro Bowl 2018 -Super Bowl 2018 -Wilder Penfield -Wilder Penfield -Larry Nassar -SAG Awards 2018 -Cherry Seaborn -Kylie Jenner -Alex Smith -Wilder Penfield -Alex Smith -Wilder Penfield -Virginia Woolf -Deadpool 2 -Jessica Chastain -Grammys 2018 -SAG Awards 2018 -Celtics -Elizabeth Blackwell -Kylie Jenner -Patriots -Super Bowl 2018 -Grammys 2018 -Virginia Woolf -Virginia Woolf -Roger Federer -Vikings Vs Eagles -Winter Olympics -James Baldwin -Carter G. Woodson -Uma Thurman -Dow Jones -Patriots -Winter Olympics -Elizabeth Blackwell -United States Of America Winter Olympics -Bitcoin Price -Dwyane Wade -Nintendo Labo -Florida shooting -Winter Olympics -Patriots -Virginia Woolf -Gods Plan -XFL -Dwyane Wade -SpaceX -Florida shooting -Super blue blood Moon -Super blue blood Moon -Super Bowl score -Florida shooting -Virginia Woolf -Super Bowl 2018 -Valentines Day -Elizabeth Blackwell -Winter Olympics -Super Bowl 2018 -Winter Olympics -Release The Memo -Super Bowl 2018 -SpaceX -Virginia Woolf -Chicago Weather -Virginia Woolf -Emily Sweeney -The Home Depot -Super Bowl score -PlayStation Network -Elizabeth Blackwell -Greg Monroe -Chicago West -Chloe Kim -Vikings vs Eagles -Otto Warmbier -Government shutdown 2018 -Sergei Eisenstein -Football Playoffs 2018 -Drake -Groundhog Day 2018 -Patriots -Super Bowl score -Elizabeth Blackwell -Black Panther -Super blue blood Moon -Paula Modersohn-Becker -Government shutdown -Rasual Butler -XFL -Government Shutdown Meaning -Outback Steakhouse -calculator -Super Bowl score -Oscar Nominations 2018 -Solo Trailer -SpaceX -Winter Olympics -Cherry Seaborn -Quincy Jones -Bitcoin Price -February -Bitcoin Price -Did the Groundhog See His Shadow -BitConnect -Lunar eclipse -Puppy Bowl 2018 -Larry Nassar -Josh McDaniels -lady gaga grammys -Robert Wagner -Florida shooting -Florida shooting -Valentines Day Memes -Mark E Smith -Omarosa -Fifty Shades Freed -calculator -Elizabeth Blackwell -Patriots -Florida shooting -Luke Wilson -Mardi Gras 2018 -School Closings -Bitcoin Price -Winter Olympics -Quincy Jones -Cavs -Obama portrait -Florida shooting -Oscar Nominations 2018 -Wilder Penfield -Carter G. Woodson -Brynn Cameron -Kesha Grammy -Florida shooting -Alessia Cara -Wilder Penfield -SpaceX -Joe Kennedy -Super Bowl score -Virginia Woolf -Government shutdown -Chinese New Year 2018 -Fredo Santana -What Time Is The Super Bowl -Super Bowl 2018 -Vikings Vs Eagles -Tesla in space -Brynn Cameron -Wilder Penfield -Wilder Penfield -Virginia Woolf -Carter G. Woodson -Costco Wholesale -Wilder Penfield -Childish Gambino -Shaun White -Carter G. Woodson -Sergei Eisenstein -Florida shooting -Grammys 2018 -Kylie Jenner Baby Girl -Meteor -Elton John tickets -Dow Jones industrial average -Kylie Jenner -NFC Championship Game 2018 -Blue Moon -Kylie Jenner -Blake Griffin -Patriots -Wilder Penfield -Super Blue Blood Moon -Vikings Vs Eagles -Kevin Love -Get Out -Winter Olympics -Megan Barry -AFC Championship Game 2018 -Paula Modersohn-Becker -Alison Brie -Happy Valentines Day -Paula Modersohn-Becker -Larry Nassar -Florida shooting -Virginia Woolf -Kim Kardashian -Wilder Penfield -Did the Groundhog See His Shadow -NSA -Grammys 2018 -Drive -Bitcoin Price -Vikings vs Eagles -Elizabeth Blackwell -Omarosa -Toys R Us -Did the Groundhog See His Shadow -Kylie Jenner -Carter G. Woodson -Florida shooting -Carter G. Woodson -Government Shutdown -Wilder Penfield -Patriots -Winter Olympics -Yoel Romero -Rob Delaney -Carter G. Woodson -Super Bowl score -Super Bowl score -Carter G. Woodson -Grammys 2018 -Johnny Weir -Grammys 2018 -Winter Olympics -Wilder Penfield -Super Bowl 2018 -Government Shutdown -Patriots -Hostiles Movie -Elizabeth Blackwell -Sergei Eisenstein -Fredo Santana -What Time Is The Super Bowl -Kylie Jenner -Aliona Savchenko -LeBron James -Vikings Vs Eagles -Government Shutdown Meaning -Government Shutdown -Super Blue Blood Moon -Justin Timberlake -Wilder Penfield -SpaceX -Wilder Penfield -Alex Smith -School Closings -Brynn Cameron -Groundhog Day 2018 -Jessica Chastain -Elizabeth Blackwell -SAG Awards 2018 -calculator -SpaceX -Bitcoin Price -Carter G. Woodson -Dow Jones -Lindsey Vonn -Ar 15 -What Time Is The Super Bowl -School closings -Super Bowl 2018 -Solo Trailer -Kate Upton -Virginia Woolf -Google docs -Nintendo Labo -Virginia Woolf -Oscar Nominations 2018 -Paula Modersohn-Becker -Ash Wednesday -stock market -Tyler Hilinski -Wilder Penfield -Super Bowl 2018 -Carter G. Woodson -Paula Modersohn-Becker -Kylie Jenner -Jennifer Aniston -Carter G. Woodson -Patriots -Sergei Eisenstein -stock market -Super Bowl 2018 -Chloe Kim -Super blue blood Moon -Sergei Eisenstein -Vikings Vs Eagles -Super Bowl score -LeBron James -Virginia Woolf -Super Bowl score -Justin Timberlake -Grammys 2018 -Paula Modersohn-Becker -Snapchat Update -Vikings Vs Eagles -Valentines Day -Winter Olympics -Justin Timberlake -Florida shooting -Carter G. Woodson -Ar 15 -Oscar Nominations 2018 -Super Bowl score -Emily Sweeney -Shaun White -Carter G. Woodson -Google docs -Sergei Eisenstein -Alex Smith -NBA Trades -Carter G. Woodson -Groundhog Day 2018 -Lil Xan -Super Bowl score -SpaceX -Elizabeth Blackwell -State of the Union -AFC Championship Game 2018 -Jennifer Aniston -Winter Olympics -Sergei Eisenstein -Black Panther -Larry Nassar -Super Bowl score -Patriots -Oscar Nominations 2018 -Sergei Eisenstein -Stan Lee -Russell Wilson -Groundhog Day 2018 -The Home Depot -Sergei Eisenstein -Alex Smith -Carter G. Woodson -Oscar Nominations 2018 -Louise Linton -Grammys 2018 -Fifty Shades Freed -Grammys 2018 -Carter G. Woodson -Wilder Penfield -Paula Modersohn-Becker -Patti LuPone -Wilder Penfield -Sergei Eisenstein -Wilder Penfield -Carter G. Woodson -Elizabeth Blackwell -Grammys 2018 -Chicago Weather -Larry Nassar -Immaculate Conception -Winter Olympics -Robert Mueller -Winter Olympics -AFC Championship Game 2018 -Lena Zawaideh -Isaiah Thomas -Elizabeth Blackwell -Kesha Grammy -Super blue blood Moon -Dow Jones -XFL -Sergei Eisenstein -Chris Long -Justin Timberlake -Florida shooting -Altered Carbon -Super Bowl score -Super Bowl score -school closings -Elizabeth Blackwell -Omarosa -SAG Awards 2018 -SpaceX -Bitcoin Price -Groundhog Day 2018 -Sergei Eisenstein -Super blue blood Moon -JUUL -Government Shutdown -Chinese New Year 2018 -Elizabeth Blackwell -Super Bowl score -Virginia Woolf -Virginia Woolf -Sergei Eisenstein -FA Cup -Natalie Portman -Super Bowl score -Greg Monroe -Super Bowl score -Mark Salling -Super Bowl score -SpaceX -Daryle Singletary -Julie Ertz -Fredo Santana -Blue Moon -Fredo Santana -Groundhog Day 2018 -The 15:17 to Paris -Jimmy Garoppolo -Chloe Kim -Florida shooting -Quincy Jones -Larry Nassar -Google Classroom -NBA Trades -Altered Carbon -Justin Timberlake -Patriots -Shaun White -Kylie Jenner -Super blue blood Moon -Football Playoffs 2018 -Virginia Woolf -Patriots -Happy Valentines Day -Carter G. Woodson -Vikings Vs Eagles -What Time Is The Super Bowl -What Time Is The Super Bowl -Stan Lee -SpaceX -Justin Timberlake -Trump State of the Union -Patriots -Kim Kardashian -Virginia Woolf -Shaun White -Wilder Penfield -Meteor -Virginia Woolf -Valentines Day -Virginia Woolf -Kentucky shooting -Patriots -Alaska earthquake -Virginia Woolf -Florida shooting -Justin Timberlake -Did the Groundhog See His Shadow -Government Shutdown Meaning -Steve Mcnair -Bitcoin Price -Earthquake Today -Super Bowl Commercials 2018 -Wilder Penfield -Justin Timberlake -Quincy Jones -Florida shooting -Paula Modersohn-Becker -Sergei Eisenstein -Tonga -Carter G. Woodson -Elizabeth Blackwell -Patriots -Elizabeth Blackwell -happy new year in Chinese -Patriots -Google Classroom -Paula Modersohn-Becker -Pro Bowl 2018 -Amy Schumer -Kesha Grammy -Oscar Nominations 2018 -Elton John -Mardi Gras 2018 -Sergei Eisenstein -Virginia Woolf -NBC Sports -Super Bowl 2018 -Royal Rumble 2018 -Elizabeth Blackwell -Shaun White -New England Patriots owner -Florida shooting -Shaun White -Korea -Happy Valentines Day -Jessica Chastain -Alessia Cara -Wilder Penfield -Carter G. Woodson -Super Bowl score -Winter Olympics -Bruno Mars -Super Bowl 2018 -New England Patriots owner -Super Bowl score -Florida shooting -Terrell Owens -Super Bowl score -Kesha Grammy -Sergei Eisenstein -SpaceX -AR-15 -Super Bowl 2018 -Bitcoin Price -Adam Rippon -Stock Market Crash Today -Enzo Amore -Elizabeth Blackwell -Shaun White -Pro Bowl 2018 -Wilder Penfield -Rasual Butler -Super Bowl 2018 -Shaun White -Sergei Eisenstein -Winter Olympics -Virginia Woolf -Sergei Eisenstein -Quincy Jones -Florida shooting -Kylie Jenner -Shani Davis -Don Lemon -Alex Smith -Erykah Badu -Government shutdown -Drive -Winter Olympics -Chinese New Year 2018 -Did the Groundhog See His Shadow -Virginia Woolf -Wilder Penfield -Arsenal -The 15:17 to Paris -Wilder Penfield -Sergei Eisenstein -Winchester -Andrew McCabe -Farmers Insurance Open 2018 -Super Bowl 2018 -John Mahoney -Sergei Eisenstein -Fredo Santana -Jacob Copeland -Elizabeth Blackwell -Altered Carbon -Cloverfield Paradox -Elizabeth Blackwell -Wilder Penfield -Paula Modersohn-Becker -fake news awards -Shaun White -Uma Thurman -Vikings Vs Eagles -Super Bowl score -Rodney Hood -Winter Olympics -What Time Is The Super Bowl -Super Bowl score -Elizabeth Blackwell -DeMarcus Cousins -Grammys 2018 -Super blue blood Moon -12 Strong -Florida shooting -Virginia Woolf -CNN -Valentines Day -Kentucky shooting -Rasual Butler -Carter G. Woodson -Patriots -Kim Kardashian -Elizabeth Blackwell -Childish Gambino -Paula Modersohn-Becker -Groundhog Day 2018 -State of the Union -Paula Modersohn-Becker -Super Bowl score -Grammys 2018 -Kesha -Sergei Eisenstein -Paula Modersohn-Becker -Royal Rumble 2018 -Steve Wynn -Winter Olympics -Patriots -Government Shutdown -Larry Nassar -Obama portrait -KSI Vs Weller -Vikings Vs Eagles -Patti LuPone -Bitcoin Price -Costco Wholesale -Happy Valentines Day -Kylie Jenner Baby Girl -This Is Us -12 Strong -What Time Is The Super Bowl -What Time Is The Super Bowl -Larry Nassar -Grammys 2018 -Andrew McCabe -Dow Jones -Drake -Mikaela Shiffrin -Wilder Penfield -Alessia Cara -Kylie Jenner -calculator -Lari White -Bruno Mars -Super blue blood Moon -Best Superbowl Commercials 2018 -Grammys 2018 -Robert Mueller -Florida shooting -Kylie Jenner -Carter G. Woodson -Elizabeth Blackwell -Florida shooting -Super Bowl score -Elizabeth Blackwell -Lunar eclipse -Super Bowl score -National Pizza Day -Groundhog Day 2018 -Cavs -Joe Kennedy -Winter Olympics -CNN -Real Madrid -SpaceX -Greg Monroe -SpaceX -SAG Awards 2018 -Paula Modersohn-Becker -Luke Wilson -Super Bowl score -Kim Kardashian -Rasual Butler -Yu Darvish -Carter G. Woodson -Kelly Clark -Elizabeth Blackwell -Fifty Shades Freed -Alex Smith -Josh McDaniels -Larry Nassar -Lindsey Vonn -SpaceX -Justin Timberlake -Florida shooting -Oscar Nominations 2018 -This Is Us -Happy Valentines Day -Florida shooting -Stephanie Katelnikoff -Super Bowl 2018 -Mardi Gras 2018 -Kylie Jenner -NBA Trades -Gods Plan -Super Bowl 2018 -Royal Rumble 2018 -Rose McGowan -earthquake -Bitcoin Price -Carter G. Woodson -Virginia Woolf -Winter Olympics -Donald Trump Jr -Adam Rippon -Elizabeth Blackwell -Virginia Woolf -Valentines Day -Lorenzo Cain -All Star Weekend 2018 -Eli Manning -Sandy Hook -Carter G. Woodson -Vikings Vs Eagles -Super Bowl score -Dow Jones -Wilder Penfield -SpaceX -Super Bowl score -Wilder Penfield -NBA Trades -Justin Timberlake -Adam Rippon -Alex Smith -Justin Timberlake -Super Bowl score -Sergei Eisenstein -Dwyane Wade -Bitcoin Price -Jimmy Garoppolo -Paula Modersohn-Becker -Fredo Santana -Super blue blood Moon -Wilder Penfield -Dow Jones -Grammys 2018 -Happy Valentines Day -Black Panther -Elizabeth Blackwell -Patriots -Wilder Penfield -Sharon Stone -Blue Moon -Government Shutdown Meaning -Wilder Penfield -Winter Olympics -Groundhog Day 2018 -Carter G. Woodson -Super Bowl 2018 -Super Bowl 2018 -Sergei Eisenstein -Paula Modersohn-Becker -Sergei Eisenstein -Dane Cook -Pro Bowl 2018 -Sea Of Thieves -Super blue blood Moon -Real Madrid -Chloe Kim -February -Sal Castro Middle School -Virginia Woolf -Jessica Chastain -Super Bowl 2018 -Sergei Eisenstein -Oscar Nominations 2018 -Winter Olympics -Elizabeth Blackwell -Stormi -Government Shutdown -Paula Modersohn-Becker -Edwin Jackson -Paula Modersohn-Becker -Carter G. Woodson -Virginia Woolf -Winter Olympics -Carter G. Woodson -Quincy Jones -Phantom Thread -Tesla in space -Florida shooting -Paula Modersohn-Becker -Chris Stapleton -State of the Union -Super Bowl score -Oar Olympics -Kylie Jenner -Vikings Vs Eagles -lady gaga grammys -Sergei Eisenstein -Drake -Super blue blood Moon -Patriots -What Time Is The Super Bowl -Super Bowl score -Did the Groundhog See His Shadow -Florida shooting -Gigi Hadid -Justin Timberlake -Carter G. Woodson -Super Bowl score -Carter G. Woodson -Did the Groundhog See His Shadow -Florida shooting -Ellen DeGeneres -Dwyane Wade -Dow Jones -Julie Bowen -Sabrina Dhowre -Florida shooting -Justin Timberlake -Solo Trailer -Chloe Kim -Groundhog Day 2018 -Sergei Eisenstein -Virginia Woolf -Winter Olympics -Walter Payton -Alex Smith -Virginia Woolf -Patriots -Larry Nassar -SpaceX -Paula Modersohn-Becker -Patriots -school closings -Winter Olympics -Oscar Nominations 2018 -Kim Cattrall -Kylie Jenner -Carter G. Woodson -New England Patriots owner -Winter Olympics -Winter Olympics -The 15:17 to Paris -Patriots -Naya Rivera -Paula Modersohn-Becker -Johnny Weir -Carter G. Woodson -Winter Olympics -Government Shutdown -SAG Awards 2018 -Super blue blood Moon -Super Bowl Commercials 2018 -Government Shutdown 2018 -Valentines Day -Carter G. Woodson -SpaceX -Ash Wednesday -Nathan Chen -NBA Trades -Larry Nassar -Solo Trailer -State of the Union -Wilder Penfield -This is Us -Carter G. Woodson -Vanity Fair Cover -Sergei Eisenstein -Alexander Polinsky -Winter Olympics -Jo Jo White -Groundhog Day 2018 -Florida shooting -Virginia Woolf -Elizabeth Blackwell -Larry Nassar -Kim Kardashian -Wilder Penfield -Solo Trailer -Super Bowl score -Fredo Santana -Sergei Eisenstein -Winter Olympics -Sandy Hook -Super Bowl score -Kesha Grammy -Elizabeth Blackwell -Kylie Jenner -What Time Is The Super Bowl -Jason Kelce -Johnny Weir -Government Shutdown -Florida shooting -Vikings vs Eagles -Kylie Jenner -SpaceX -School Closings -Sergei Eisenstein -Government Shutdown -Chinese New Year 2018 -Super Bowl score -Kristaps Porzingis -Tom Brady daughter -Happy Valentines Day -Robby Anderson -Florida shooting -Alex Reimer -Grammys 2018 -Carter G. Woodson -Daytona 500 -Elton John -Paula Modersohn-Becker -Olympic medal count -Champions League -The 15:17 to Paris -Super Bowl 2018 -Super blue blood Moon -Kim Kardashian -State of the Union -Florida shooting -Adam Hicks -Virginia Woolf -Patti LuPone -Patriots -What Time Is The Super Bowl -Super Bowl score -Shaun White -What Time Is The Super Bowl -Norovirus -earthquake -Super Bowl score -Walter Payton -Super Bowl 2018 -Paula Modersohn-Becker -UFC 221 -Government shutdown -Mark Salling -Paula Modersohn-Becker -Dow Jones -Ash Wednesday -Elizabeth Blackwell -Paula Modersohn-Becker -SpaceX -Kylie Jenner Baby Girl -What Time Is The Super Bowl -Black Panther -Sergei Eisenstein -Paula Modersohn-Becker -earthquake today -Super Bowl score -Government Shutdown Meaning -Larry Nassar -Fredo Santana -Super Bowl 2018 -Oscar Nominations 2018 -Rasual Butler -Sergei Eisenstein -Kesha -Virginia Woolf -Mikaela Shiffrin -Norovirus -Pro Bowl 2018 -Paula Modersohn-Becker -Florida shooting -Patriots -Super Bowl score -Jeff Flake -Super Bowl 2018 -Super Bowl score -Paula Modersohn-Becker -Patriots -Release The Memo -State of the Union -Winter Olympics -National Pizza Day -Virginia Woolf -Dow Jones -Wilder Penfield -IXL -Government shutdown -Sergei Eisenstein -SpaceX -Kevin Durant -Sergei Eisenstein -Jessica Chastain -Jacob Copeland -Kesha -Vikings Vs Eagles -Trump State of the Union -Florida shooting -Super Bowl score -Vince McMahon -Alex Smith -Sergei Eisenstein -Paula Modersohn-Becker -Trump State of the Union -Larry Nassar -Wilder Penfield -What Time Is The Super Bowl -Paula Modersohn-Becker -Valentines Day Memes -Grammys 2018 -Adam Rippon -Super Bowl 2018 -Black Lightning -luge -Google Classroom -Super Bowl 2018 -Kylie Jenner -Paula Modersohn-Becker -Olympics 2018 -Oar Olympics -calculator -Harley Barber -Patriots -Cavs -Valentines Day -Patriots -Solo Trailer -Paula Modersohn-Becker -Sergei Eisenstein -Patriots -Super Bowl score -Olympic medal count -Real Madrid -Amy Schumer -Winter Olympics -James Baldwin -Chinese New Year 2018 -Grammys 2018 -Super Bowl Commercials 2018 -Women's March 2018 -AFC Championship Game 2018 -Super Bowl 2018 -Memo -Evgenia Medvedeva -Classroom -Super Bowl score -Rihanna -Rasual Butler -Grammys 2018 -Omarosa -Wilder Penfield -Groundhog Day 2018 -Elizabeth Blackwell -Grammys 2018 -CNN -Virginia Woolf -Sergei Eisenstein -LeBron James -Florida shooting -Super Bowl Commercials 2018 -Wilder Penfield -Super Bowl score -Government Shutdown -Justin Timberlake -Blake Griffin -Justin Timberlake -Sal Castro Middle School -Johnny Weir -Jacob Copeland -Cloverfield Paradox -Florida shooting -Elizabeth Blackwell -calculator -Patriots -NBA Trades -Elizabeth Blackwell -Olympic medal count -Elizabeth Blackwell -Valentines Day -Patriots -Vanessa Trump -Red Gerard -SpaceX -Florida shooting -Memo -school closings -Jemele Hill -Virginia Woolf -SAG Awards 2018 -Super Bowl 2018 -Carl Higbie -Super Bowl score -Alex Smith -Mike Vrabel -Dow Jones -Classroom -Florida shooting -Wilder Penfield -Rampage -Elizabeth Blackwell -Tyler Hilinski -Kim Kardashian -Wilder Penfield -UFC 220 -Virginia Woolf -Jason Kelce -Super Bowl score -Super Bowl 2018 -Hailee Steinfeld -Patriots -Cavs -Sergei Eisenstein -Wilder Penfield -Government shutdown 2018 -Grammys 2018 -Gods Plan -Carter G. Woodson -Isaiah Canaan -Blake Griffin Trade -Carter G. Woodson -Paula Modersohn-Becker -Justin Timberlake -Patriots -This Is Us -Elizabeth Blackwell -State of the Union -Blake Griffin -Gods Plan -School closings -UFC 220 -UFC 220 -Elizabeth Blackwell -Super Bowl score -Royal Rumble 2018 -LeBron James -Bill Belichick -Patriots -Super Bowl score -Grammys 2018 -Wilder Penfield -Shaun White -Donald Trump Jr -Carter G. Woodson -Women's March 2018 -Alaska earthquake -Bruno Mars Tour 2018 -Chinese New Year 2018 -Kim Kardashian -Blake Griffin -Florida shooting -SpaceX -Melania Trump -Florida shooting -Celebrity Big Brother cast -Government Shutdown -Super Bowl 2018 -Blake Griffin -What Time Is The Super Bowl -Eli Manning -Super Bowl score -Winter Olympics -Florida shooting -Happy Valentines Day -What Time Is The Super Bowl -Patriots -Shibutani -Virginia Woolf -Black Panther -Real Madrid -Elizabeth Blackwell -Super Bowl 2018 -John Mahoney -Elizabeth Blackwell -tsunami -What Time Is The Super Bowl -Alessia Cara -Grammys 2018 -Winter Olympics -Shaun White -Super Bowl score -SpaceX -Larry Nassar -What Time Is The Super Bowl -Cloverfield Paradox -Shaun White -Jacob Copeland -Elton John -Elizabeth Blackwell -Mark Salling -Elizabeth Blackwell -Forever My Girl -SpaceX -What Time Is The Super Bowl -Phantom Thread -Virginia Woolf -Sergei Eisenstein -Black Panther -Sergei Eisenstein -SpaceX -Super blue blood Moon -Yu Darvish -Carter G. Woodson -SZA -Super Bowl 2018 -Rasual Butler -Elizabeth Blackwell -SpaceX -SpaceX -Bitcoin Price -Justin Timberlake -John Mahoney -Winter Olympics -State of the Union -Florida shooting -Paula Modersohn-Becker -Esteban Loaiza -Larry Nassar -Super Bowl 2018 -What Time Is The Super Bowl -Virginia Woolf -Google docs -Wilder Penfield -Bitcoin Price -Lorenzo Cain -Omarosa -Chris Long -Super Bowl Commercials 2018 -Vikings Vs Eagles -Isaiah Thomas -Larry Nassar -Grammys 2018 -FA Cup -Justin Timberlake -Elizabeth Blackwell -Paula Modersohn-Becker -Google Classroom -Elizabeth Blackwell -Wilder Penfield -Josh McDaniels -Cavs -Sergei Eisenstein -Paula Modersohn-Becker -Black Panther -Google Classroom -Daytona 500 -Luke Wilson -Super Bowl score -Super Bowl 2018 halftime show -Malcom Butler -Grammys 2018 -calculator -Grammys 2018 -Super Bowl score -Carter G. Woodson -The 15:17 to Paris -Kylie Jenner Baby Girl -Government Shutdown -Grammys 2018 -Winter Olympics -Johnny Weir -Paula Modersohn-Becker -stock market -Kylie Jenner Baby Girl -Solo Trailer -Super Bowl 2018 -Winter Olympics -Carter G. Woodson -Elizabeth Blackwell -Government Shutdown -Bitcoin Price -Elizabeth Blackwell -Black Panther -Tesla in space -Government Shutdown -Happy Valentines Day -Maze Runner: The Death Cure -Google Drive -Sergei Eisenstein -Michelle Obama -Paula Modersohn-Becker -Carter G. Woodson -Super Bowl score -Alaska earthquake -Paula Modersohn-Becker -Kim Kardashian -Elizabeth Blackwell -Lindsey Vonn -Kim Kardashian -Trump State of the Union -Patriots -Chris Long -Oscar Nominations 2018 -Snapchat Update -Lunar eclipse -Larry Nassar -Shaun White -Fifty Shades Freed -Google Drive -School closings -SpaceX -Ar 15 -Wilder Penfield -Groundhog Day 2018 -Chris Paul -Justin Timberlake -Paula Modersohn-Becker -Jennifer Aniston -Winter Olympics -Alex Smith -Super Bowl score -Super Bowl 2018 -SpaceX -Sergei Eisenstein -Natalie Wood -Solo Trailer -Super Bowl 2018 -SpaceX -Red Gerard -Winter Olympics -Paula Modersohn-Becker -Sergei Eisenstein -Patriots -Steve Mcnair -Bitcoin Price -Blue Moon -Carter G. Woodson -Elizabeth Blackwell -Den of Thieves -Virginia Woolf -SpaceX -Bitcoin Price -Kim Kardashian -SpaceX -Super Bowl 2018 -Florida shooting -Groundhog Day 2018 -Florida shooting -Michigan State -Florida shooting -Grammys 2018 -Kingdom Come Deliverance -Larry Nassar -Grammys 2018 -Once Upon a Time -Red Gerard -Dolly Parton -Sergei Eisenstein -Hope Hicks -Sergei Eisenstein -Paula Modersohn-Becker -Sergei Eisenstein -Wilder Penfield -Adam Rippon -Virginia Woolf -Virginia Woolf -Super Bowl 2018 -Google docs -Government Shutdown -Isaiah Thomas -Lee Miglin -JUUL -What Time Is The Super Bowl -Celtics -Sea of Thieves -Dwyane Wade -Groundhog Day 2018 -Virginia Woolf -Johnny Weir -Patriots -Kelly Clark -Winter Olympics -Florida shooting -Neil Diamond -Carter G. Woodson -Justin Timberlake -Amy Schumer -Patriots -Virginia Woolf -Super Bowl 2018 -Super Bowl score -Carter G. Woodson -Trey Gowdy -Carter G. Woodson -Paragon -Oscar Nominations 2018 -Kim Kardashian -The 15:17 to Paris -Obama portrait -Patriots -12 Strong -What Time Is The Super Bowl -Olive Garden -Florida shooting -Mark E Smith -Government Shutdown Meaning -Super Bowl 2018 -Sergei Eisenstein -Florida shooting -Presidents Day 2018 -Florida shooting -Puppy Bowl 2018 -Yu Darvish -Grammys 2018 -Super Bowl 2018 -Paula Modersohn-Becker -Black Panther -Wilder Penfield -Grammys 2018 -Sergei Eisenstein -Rose McGowan -Patriots -Black Panther -Andrew McCabe -State of the Union -Jamie Anderson -National Pizza Day -Kesha Grammy -All Star Weekend 2018 -Daryle Singletary -Sergei Eisenstein -Wilder Penfield -Black Panther -shutdown -Uma Thurman -Doomsday Clock -Elizabeth Blackwell -Alaska earthquake -Carter G. Woodson -Kylie Jenner -Super Bowl score -Google Classroom -Super Bowl score -Paula Modersohn-Becker -Terrell Owens -Super Bowl score -Real Madrid -Super Bowl 2018 -Black Panther -Patriots -Winter Olympics -stock market -Super Bowl score -Julie Ertz -Dwyane Wade -Sting -Ursula Le Guin -Patriots -Grammys 2018 -Mcdonald's -Super Bowl 2018 -Marlon Brando -Florida shooting -Wilder Penfield -Government Shutdown -Tammy Duckworth -Elizabeth Blackwell -United States Postal Service -Patriots -Chloe Kim -Patriots -Waco -Larry Nassar -Winter Olympics -Patriots -Terrell Owens -Isaiah Thomas -Apolo Ohno -Kylie Jenner -Virginia Woolf -Super Bowl score -Black Panther -XFL -What Time Is The Super Bowl -Earthquake Today -SpaceX -Kylie Jenner -Blue Ivy -Champions League -What Time Is The Super Bowl -Blake Griffin -Winter Olympics -Did the Groundhog See His Shadow -Sergei Eisenstein -Kristaps Porzingis -Elizabeth Blackwell -Melania Trump -Kelsey Grammer -Super Bowl score -Alaska earthquake -Paula Modersohn-Becker -Government shutdown -Virginia Woolf -Winter Olympics -What Time Is The Super Bowl -Patriots -Walter Payton -What Time Is The Super Bowl -Florida shooting -luge -Tom Petty -government shutdown -Did the Groundhog See His Shadow -Arsenal -Government Shutdown -Super blue blood Moon -Super Bowl score -Super Bowl 2018 -Dolly Parton -Paula Modersohn-Becker -Wilder Penfield -Sergei Eisenstein -Elizabeth Blackwell -John Mahoney -Happy Valentines Day -Paula Modersohn-Becker -Elizabeth Blackwell -NBA Trades -Google docs -Vanessa Trump -Kylie Jenner -Daryle Singletary -Olivia Munn -Kylie Jenner -Kesha -Kentucky shooting -United States Of America Winter Olympics -Carter G. Woodson -Super Bowl score -Florida shooting -Super Bowl score -Florida shooting -Kesha Grammy -Patti LuPone -Sergei Eisenstein -Riverdale -Blake Griffin -Friends The Movie 2018 -Winter Olympics -Kylie Jenner -Super Bowl score -slides -Patriots -Chicago West -Mark Salling -Virginia Woolf -Trump State of the Union -What Time Is The Super Bowl -Government Shutdown -Cloverfield Paradox -Farmers Insurance Open 2018 -Government Shutdown -Patriots -Larry Nassar -Paula Modersohn-Becker -SpaceX -Larry Nassar -Uma Thurman -Mark Salling -H&r Block -Patriots -SpaceX -Happy Valentines Day -Camila Cabello -Winter Olympics -Did the Groundhog See His Shadow -Alaska earthquake -12 Strong -Robert Wagner -Jennifer Aniston -State of the Union -Melania Trump -NBA Trades -UFC 221 -SpaceX -Justin Timberlake -NBC Sports -Super Bowl 2018 -Ash Wednesday -Patriots -Super Bowl score -Patriots -Virginia Woolf -Grammys 2018 -Marlon Brando -Government shutdown -Shaun White -Slender Man -Elizabeth Blackwell -Grammys 2018 -Grammys 2018 -Government Shutdown -SpaceX -Mikaela Shiffrin -Justin Timberlake -NBA Trades -Paula Modersohn-Becker -Justin Timberlake -Winter Olympics -Paula Modersohn-Becker -Gods Plan -Alex Smith -Blue Moon -Groundhog Day 2018 -calculator -Walter Payton -Grammys 2018 -Winter Olympics -Valentines Day -Chris Stapleton -Trey Gowdy -Kim Kardashian -Super blue blood Moon -Jimmy Garoppolo -Tesla in space -School Closings -Justin Timberlake -Kylie Jenner -Google docs -Patriots -Winter Olympics -Super Bowl score -Winter Olympics -Paula Modersohn-Becker -Super Bowl 2018 -Carter G. Woodson -SpaceX -Meteor -Obama portrait -Government Shutdown 2018 -Vanessa Marcil -Vikings Vs Eagles -Florida shooting -Sergei Eisenstein -Alessia Cara -Super Bowl 2018 -Jemele Hill -Carter G. Woodson -Super Bowl score -Sergei Eisenstein -What Time Is The Super Bowl -Super Bowl score -Justin Timberlake -Patriots -Patriots -Virginia Woolf -Patriots -SpaceX -Virginia Woolf -Justin Timberlake -State of the Union -Toys R Us -Jo Jo White -Kylie Jenner -Chris Stapleton -Amy Schumer -Cavs -Vikings Vs Eagles -Virginia Woolf -Did the Groundhog See His Shadow -What Time Is The Super Bowl -Chief Wahoo -Patriots -Apple stock -Paula Modersohn-Becker -Virginia Woolf -Grammys 2018 -Florida shooting -Larry Nassar -Blake Griffin -12 Strong -Government Shutdown -Vanessa Trump -Matt Patricia -AFC Championship Game 2018 -Champions League -Black Panther -Larry Nassar -Portia de Rossi -Paula Modersohn-Becker -Edwin Jackson -Celtics -Super blue blood Moon -Blue Ivy -Carter G. Woodson -Bitcoin Price -Elizabeth Blackwell -Sergei Eisenstein -Wilder Penfield -Google Classroom -Dow Jones -Sting -Isaiah Thomas -Grammys 2018 -Elon Musk -Rose McGowan -Patty Hearst -Russell Wilson -Norovirus -Sergei Eisenstein -Sergei Eisenstein -Elton John -Kylie Jenner -NBA Trades -Super Bowl 2018 -Elizabeth Blackwell -Hope Hicks -Bob Marley -SpaceX -Vikings vs Eagles -Woody Allen -Eli Manning -Chinese New Year 2018 -Winter Olympics -Joy Villa -Jen Selter -Carter G. Woodson -Virginia Woolf -Taiwan -Ash Wednesday -Elizabeth Blackwell -Early Man -Jessica Chastain -Carter G. Woodson -Manchester United -Waco -Super Bowl 2018 -Bill Paxton -Kentucky shooting -Super Bowl Commercials 2018 -Tonga -Paula Modersohn-Becker -New England Patriots owner -Government Shutdown -Kentucky shooting -Blake Griffin -Super Bowl score -Sergei Eisenstein -Dua Lipa -Katie Couric -Winter Olympics -Carter G. Woodson -Lady Bird -Paula Modersohn-Becker -Did the Groundhog See His Shadow -Super Bowl score -Patriots -Carter G. Woodson -SpaceX -Government Shutdown -Early Man -Super Bowl score -Super Bowl score -Alex Reimer -Chloe Kim -Columbine -Super Bowl 2018 -Wilder Penfield -Yoel Romero -Call Me by Your Name -Super Bowl score -Chloe Kim -Virginia Woolf -Elizabeth Blackwell -Shaun White -Cory Booker -Elizabeth Blackwell -Sergei Eisenstein -Tomi Lahren -Wilder Penfield -Sergei Eisenstein -Paul Ryan -Solo Trailer -Terrell Owens -Florida shooting -Solo Trailer -SpaceX -Virginia Woolf -Sergei Eisenstein -SpaceX -Super Bowl 2018 -Tyler Hilinski -Pyeongchang 2018 Olympic Winter Games -Heath Ledger -Virginia Woolf -Super Bowl score -Black Panther -Super Bowl 2018 -Wilder Penfield -Jennifer Aniston -Memo -Red Gerard -Carter G. Woodson -Florida shooting -Patriots -Paula Modersohn-Becker -Bill Belichick -Snapchat Update -Jason Kelce -Florida shooting -Valentines Day Images -Kylie Jenner -Super blue blood Moon -Patriots -Paula Modersohn-Becker -Florida shooting -Government Shutdown -Elizabeth Blackwell -SpaceX -Sergei Eisenstein -Fortnite New Map -Black Panther -Patriots -Esteban Loaiza -Childish Gambino -Virginia Woolf -Dwyane Wade -tsunami -Bitcoin Price -Patriots -Sergei Eisenstein -What Time Is The Super Bowl -Grammys 2018 -Patriots -Florida shooting -Senior Bowl -Kylie Jenner -school closings -Jennifer Aniston -Patriots -Kentucky shooting -Chipper Jones -Joy Villa -Kylie Jenner -Government Shutdown -Larry Nassar -tsunami -Carter G. Woodson -Super blue blood Moon -Nintendo Labo -Dow Jones industrial average -UFC 220 -Government shutdown -Black Panther -Gianni Versace -Kylie Jenner -government shutdown -Kylie Jenner -Florida shooting -Carter G. Woodson -Kris Dunn -Google Drive -Cloverfield Paradox -Super Bowl score -Luke Wilson -Paula Modersohn-Becker -Alex Reimer -Venom -Super Bowl score -Happy Valentines Day -Paula Modersohn-Becker -Ash Wednesday -Grammys 2018 -Peter Rabbit -Carter G. Woodson -Carter G. Woodson -Sergei Eisenstein -Phantom Thread -Adam Rippon -Black Panther -Super Bowl 2018 -Virginia Woolf -Matt Patricia -Virginia Woolf -Roger Federer -Paula Modersohn-Becker -Lonzo Ball -Bitcoin Price -Solo Trailer -Winter Olympics -Winter Olympics -Alexander Polinsky -Olympic medal count -Grammys 2018 -Government Shutdown -Solo Trailer -Elizabeth Blackwell -Government Shutdown -Government shutdown 2018 -Elizabeth Blackwell -Justin Timberlake -Government shutdown -Dolly Parton -Ar 15 -Wilder Penfield -Winter Olympics -Carter G. Woodson -Carter G. Woodson -Ash Wednesday -Elizabeth Blackwell -Carter G. Woodson -Lunar eclipse -Blake Griffin -Mark Salling -Paula Modersohn-Becker -Lindsey Vonn -Super Bowl score -Black Panther -Super Bowl score -Matt Patricia -Elizabeth Blackwell -Virginia Woolf -Alex Smith -Super blue blood Moon -Joe Kennedy -Puppy Bowl 2018 -Trayvon Martin -Kylie Jenner -Yu Darvish -Happy Valentines Day -Altered Carbon -Dow Jones -Shaun White -Andre Roberson -Groundhog Day 2018 -Super blue blood Moon -Maddie Mastro -Patriots -Wilder Penfield -UFC 221 -Trump State of the Union -Dow Jones -Carter G. Woodson -Norovirus -Bruno Mars -Kim Kardashian -Sergei Eisenstein -Woody Allen -SpaceX -Patriots -Government Shutdown Meaning -SpaceX -SpaceX -Grammys 2018 -Carter G. Woodson -Florida shooting -CNN -Valentines Day Images -Omarosa -Winter Olympics -Patriots -Florida shooting -What Time Is The Super Bowl -Women's March 2018 -Groundhog Day 2018 -Virginia Woolf -Steve Wynn -Patriots -Daryle Singletary -Carter G. Woodson -Kim Kardashian -Paula Modersohn-Becker -Sergei Eisenstein -Groundhog Day 2018 -Elizabeth Blackwell -Google Drive -Paula Modersohn-Becker -SpaceX -Super Bowl 2018 halftime show -Korea -Carter G. Woodson -Solo Trailer -Forever My Girl -Obama portrait -Florida shooting -Florida shooting -Winter Olympics -Vikings Vs Eagles -Jimmy Kimmel -Super Bowl 2018 -Super Bowl score -SZA -This is Us -Super Bowl 2018 -Lil Pump -Vikings Vs Eagles -Bitcoin Price -Paula Modersohn-Becker -Patriots -Zion Williamson -Elizabeth Blackwell -Grammys 2018 -Government shutdown -Happy Valentines Day -State of the Union -Call Me by Your Name -Super Bowl 2018 -Grammys 2018 -Government Shutdown -Virginia Woolf -Wilder Penfield -Vikings Vs Eagles -Dennis Edwards -John Mahoney -Sergei Eisenstein -Super Bowl 2018 -Winter Olympics -Vikings Vs Eagles -Government Shutdown Meaning -Cherry Seaborn -Sergei Eisenstein -Vanessa Trump -Paula Modersohn-Becker -Patriots -Carter G. Woodson -Royal Rumble 2018 -Groundhog Day 2018 -Larry Nassar -Grammys 2018 -Valentines Day -Government Shutdown -What Time Is The Super Bowl -Wilder Penfield -XFL -Elizabeth Blackwell -Super Bowl score -Super Bowl 2018 -Paula Modersohn-Becker -Patriots -Kylie Jenner -Super Bowl 2018 -Kylie Jenner -Justin Timberlake -Natalie Wood -Paula Modersohn-Becker -SpaceX -Paula Modersohn-Becker -Florida shooting -Mexico earthquake -Virginia Woolf -Sergei Eisenstein -Super Bowl 2018 -Winter Olympics -Florida shooting -Kylie Jenner -SpaceX -Edible Arrangements -Vikings Vs Eagles -Justin Timberlake -Chloe Kim -Wilder Penfield -Vikings Vs Eagles -Government Shutdown Meaning -Josh McDaniels -Mark Salling -Elizabeth Blackwell -Grammys 2018 -Florida shooting -Government Shutdown -Wilder Penfield -KSI Vs Weller -Nintendo Labo -Zion Williamson -Super Bowl 2018 -Super Bowl 2018 -Carter G. Woodson -Elizabeth Blackwell -Andrew Cunanan -Mexico earthquake -Bitcoin Price -Patriots -Super blue blood Moon -Terry Bradshaw -Winter Olympics -Maze Runner: The Death Cure -Justin Timberlake -Patriots -Derrick Rose -Carter G. Woodson -Duke Basketball -Patriots -Blue Ivy -Patriots -Patriots -Florida shooting -Columbine -Vikings Vs Eagles -Sergei Eisenstein -Grammys 2018 -Mikaela Shiffrin -Daryle Singletary -Grammys 2018 -Super Bowl score -Wilder Penfield -Virginia Woolf -Florida shooting -Kylie Jenner -Carter G. Woodson -Dow Jones -Wilder Penfield -Chloe Kim -National Pizza Day -What Time Is The Super Bowl -Virginia Woolf -New England Patriots owner -Carter G. Woodson -Sergei Eisenstein -Wilder Penfield -Ash Wednesday -Kylie Jenner -What Time Is The Super Bowl -Winter Olympics -H&r Block -Larry Nassar -Florida shooting -Dow Jones -Paula Modersohn-Becker -Brynn Cameron -UFC 220 -Alison Brie -Valentines Day -Florida shooting -Kesha Grammy -Virginia Woolf -Jamie Anderson -Reg E Cathey -John Mahoney -Paula Modersohn-Becker -Winter Olympics -Virginia Woolf -Gus Kenworthy -Dow Jones -School Closings -Winter Olympics -Carter G. Woodson -Super Bowl 2018 -Elizabeth Blackwell -Alessia Cara -LeBron James -Larry Nassar -Elizabeth Blackwell -Kylie Jenner -Virginia Woolf -Valentines Day -Government shutdown 2018 -Government shutdown -Dennis Edwards -Elizabeth Blackwell -Wilder Penfield -Anastasia Bryzgalova -Gods Plan -Hope Hicks -Super Bowl score -NBC Sports -Paula Modersohn-Becker -Paula Modersohn-Becker -Mark Salling -Bitcoin Price -Government shutdown 2018 -Wilder Penfield -Solo Trailer -Grammys 2018 -Winter Olympics -Winter Olympics -Fidel Castro -SpaceX -Paula Modersohn-Becker -The 15:17 to Paris -Paula Modersohn-Becker -Chloe Kim -Google docs -Winter Olympics -Oscar Nominations 2018 -Paula Modersohn-Becker -Altered Carbon -Sergei Eisenstein -Sergei Eisenstein -Mikaela Shiffrin -Justin Timberlake -school closings -Alex Smith -Virginia Woolf -What Time Is The Super Bowl -Patriots -Super Bowl 2018 -Elon Musk -Patriots -Sergei Eisenstein -Trey Gowdy -Omarosa -Sergei Eisenstein -Florida shooting -Paula Modersohn-Becker -Obama portrait -Paula Modersohn-Becker -Wilder Penfield -Fifty Shades Freed -Wilder Penfield -Justin Timberlake -Super Bowl 2018 -Black Panther -CNN -Super Bowl 2018 -Justin Timberlake -Wilder Penfield -school closings -Vikings Vs Eagles -Grammys 2018 -Mark Salling -Elizabeth Blackwell -Westminster Dog Show 2018 -Patriots -Florida shooting -Virginia Woolf -Carter G. Woodson -Lil Pump -Carter G. Woodson -Carter G. Woodson -Elizabeth Blackwell -Winter Olympics -Carter G. Woodson -Government Shutdown Meaning -Carter G. Woodson -Sergei Eisenstein -Super Bowl score -Immaculate Conception -Adam Rippon -Wilder Penfield -Andrew Cunanan -Paula Modersohn-Becker -Wilder Penfield -Super Bowl 2018 -Elizabeth Blackwell -Blake Griffin -Kylie Jenner -Super Bowl score -Florida shooting -Quentin Tarantino -Florida shooting -Winter Olympics -Kim Kardashian -Josh McDaniels -Quentin Tarantino -Paula Modersohn-Becker -Black Lightning -Mark Salling -Obama portrait -Larry Nassar -Carter G. Woodson -Blood Moon -Elizabeth Blackwell -Real Madrid -Virginia Woolf -Turpin -Sergei Eisenstein -SAG Awards 2018 -Quincy Jones -Adam Rippon -Royal Rumble 2018 -CNN -Larry Nassar -Elizabeth Blackwell -Elizabeth Blackwell -Elizabeth Blackwell -Valentines Day -Obama portrait -Wilder Penfield -Paula Modersohn-Becker -Larry Nassar -Sergei Eisenstein -Sergei Eisenstein -12 Strong -Stock Market Crash Today -Sergei Eisenstein -Super Bowl score -Super Bowl score -Super Bowl 2018 -Elizabeth Blackwell -Patriots -Grammys 2018 -Elton John -Lunar eclipse -Mardi Gras 2018 -State of the Union -Paula Modersohn-Becker -Nba All Star Draft -SpaceX -Kylie Jenner -Carter G. Woodson -Wilder Penfield -CNN -Rachel Brand -Virginia Woolf -Patriots -Eli Manning -Jimmy Garoppolo -Super Bowl score -Isaiah Thomas -Patriots -Kylie Jenner -NBA Trades -Government shutdown 2018 -Paula Modersohn-Becker -Justin Timberlake -Scott Baio -Winter Olympics -Peter Rabbit -Terrell Owens -Florida shooting -SpaceX -Elizabeth Blackwell -Wilder Penfield -Luke Wilson -Virginia Woolf -Larry Nassar -Omarosa -Virginia Woolf -Patriots -Valentines Day -Super Bowl score -Virginia Woolf -Jacob Copeland -Chipper Jones -John Mahoney -Groundhog Day 2018 -Sergei Eisenstein -Kesha -Dwyane Wade -Julie Ertz -Wilder Penfield -Patriots -Winter Olympics -Government shutdown 2018 -Sammy Sosa -Olympic Medal Count -Ann Curry -Justin Timberlake -Ann Curry -Elton John -Kylie Jenner -SpaceX -Larry Nassar -Justin Timberlake -The 15:17 to Paris -Patriots -Virginia Woolf -Wilder Penfield -Rasual Butler -Vikings Vs Eagles -Virginia Woolf -Super Bowl 2018 -Kylie Jenner -Government shutdown 2018 -Matt Czuchry -Fredo Santana -Grammys 2018 -Justin Timberlake -Government Shutdown -What Time Is The Super Bowl -Venom -Paula Modersohn-Becker -Black Panther -Elizabeth Blackwell -Wilder Penfield -Anna Kournikova -Florida shooting -Shaun White -Wilder Penfield -Olive Garden -Super Bowl score -Mikaela Shiffrin -Super Bowl 2018 -Bitcoin Price -Did the Groundhog See His Shadow -Carter G. Woodson -Sergei Eisenstein -Government shutdown 2018 -Red Gerard -Edwin Jackson -Jeff Flake -Wilder Penfield -What Time Is The Super Bowl -Rasual Butler -What Time Is The Super Bowl -Carter G. Woodson -Florida shooting -Government Shutdown -Grammys 2018 -Sergei Eisenstein -SpaceX -SpaceX -Elizabeth Blackwell -Grammys 2018 -Happy Valentines Day -CNN -Groundhog Day 2018 -Sergei Eisenstein -Elizabeth Blackwell -Super Bowl 2018 -Tammy Duckworth -Lakers -Mardi Gras 2018 -Super Bowl 2018 -LL Bean -Lari White -Dow Jones -Super Bowl 2018 -Cherry Seaborn -Carter G. Woodson -Nba All Star Draft -Florida shooting -XFL -Virginia Woolf -Florida shooting -Sergei Eisenstein -Winter Olympics -Winter Olympics -CBS Sports -Harley Barber -Riverdale -Andre the Giant -Valentines Day -Larry Nassar -Adam Rippon -Senior Bowl -Justin Timberlake -Sea Of Thieves -Paula Modersohn-Becker -Cloverfield Paradox -Lorenzo Cain -Pro Bowl 2018 -Super Bowl score -Google docs -New England Patriots owner -Bill Parcells -Bill Parcells -Kylie Jenner -Winter Olympics -Danielle Herrington -Emily Sweeney -Sergei Eisenstein -Winter Olympics -Justin Timberlake -Virginia Woolf -Super Bowl score -Wilder Penfield -Real Madrid -Super blue blood Moon -United States Of America Winter Olympics -NBA Trades -Altered Carbon -Netflix Stock -Justin Timberlake -UFC 220 -Waco -Ted Bundy -Wilder Penfield -What Time Is The Super Bowl -CNN -Black Panther -What Time Is The Super Bowl -NHL All Star Game -Shaun White -Greg Monroe -Obama portrait -Sergei Eisenstein -Elizabeth Blackwell -Oscar Nominations 2018 -Florida shooting -Mark Salling -Patriots -Virginia Woolf -Meteor -Kesha Grammy -Elizabeth Blackwell -Elizabeth Blackwell -CNN -Larry Nassar -calculator -Virginia Woolf -Pro Bowl 2018 -Elizabeth Blackwell -Patriots -Amy Schumer -Paula Modersohn-Becker -Justin Timberlake -Pro Bowl 2018 -Patriots -Luke Wilson -What Time Is The Super Bowl -Black Panther -Chloe Kim -Fredo Santana -Oscar Nominations 2018 -NBA Trades -Early Man -Winter Olympics -Puppy Bowl 2018 -Wilder Penfield -Patriots -Sergei Eisenstein -Woody Allen -School closings -Government Shutdown -Carl Higbie -Wilder Penfield -This is Us -UFC 220 -Kentucky shooting -Elon Musk -Government shutdown -Cavs -Fredo Santana -SpaceX -Sergei Eisenstein -CNN -Kylie Jenner -Virginia Woolf -Puppy Bowl 2018 -Wilder Penfield -Melania Trump -Carter G. Woodson -Robert Wagner -Happy Valentines Day -Paula Modersohn-Becker -Super Bowl Commercials 2018 -NBA Trades -Cloverfield Paradox -Elizabeth Blackwell -Solo Trailer -Florida shooting -Elizabeth Blackwell -Justin Timberlake -Groundhog Day 2018 -Johnny Weir -Super Bowl score -H&r Block -Elizabeth Blackwell -Virginia Woolf -Wilder Penfield -NBA Trades -Super Bowl score -Kevin Love -Wilder Penfield -LeBron James -Women's March 2018 -Government shutdown -XFL -Wilder Penfield -Lunar eclipse -Den of Thieves -What Time Is The Super Bowl -Wilder Penfield -Timor Leste -Winter Olympics -Quincy Jones -Alaska earthquake -Royal Rumble 2018 -Elizabeth Blackwell -Florida shooting -Cavs -State of the Union -Bitcoin Price -Wilder Penfield -Virginia Woolf -fake news awards -Nancy Pelosi -Tony Romo -Kylie Jenner -Shaun White -XFL -Did the Groundhog See His Shadow -Government Shutdown 2018 -Wilder Penfield -Elizabeth Blackwell -SpaceX -Wilder Penfield -Joe Kennedy -Wilder Penfield -Joe Kennedy -Wilder Penfield -Puppy Bowl 2018 -Highline College -Rob Porter -Gus Kenworthy -Justin Timberlake -Wilder Penfield -Valentines Day -Groundhog Day 2018 -Grammys 2018 -Lee Miglin -Dow Jones industrial average -Bitcoin Price -Did the Groundhog See His Shadow -Super Bowl 2018 -Puppy Bowl 2018 -Snake -Kentucky shooting -Justin Timberlake -Carter G. Woodson -This Is Us -Lindsey Vonn -Amazon Stock -Farmers Insurance Open 2018 -Chinese New Year 2018 -Justin Timberlake -Elizabeth Blackwell -Sergei Eisenstein -UFC 220 -James Harden -Trump State of the Union -Johnny Weir -Super Bowl score -SpaceX -Winter Olympics -stock market -Carter G. Woodson -UFC 220 -Paula Modersohn-Becker -Jason Kelce -Robert Wagner -Julie Ertz -Super Bowl 2018 -Bill Parcells -Johnny Manziel -Elizabeth Blackwell -Pro Bowl 2018 -FC Barcelona -Oscar Nominations 2018 -Kylie Jenner -Rodney Hood -Shaun White -Danielle Herrington -Grammys 2018 -Wilder Penfield -Wilder Penfield -Florida shooting -Zion Williamson -Derrick Rose -Josh Allen -Wilder Penfield -Matt Czuchry -Patriots -Virginia Woolf -Matt Patricia -Vikings Vs Eagles -Paul Ryan -Groundhog Day 2018 -Culture 2 -Sergei Eisenstein -What Time Is The Super Bowl -Elizabeth Blackwell -Vikings Vs Eagles -LeBron James -Paula Modersohn-Becker -Johnny Weir -Winter Olympics -Super blue blood Moon -Vanessa Marcil -Wilder Penfield -Aaliyah -Fredo Santana -Robby Anderson -Patriots -Google Classroom -Blood Moon -Kesha -SpaceX -Kentucky shooting -Winter Olympics -Super Bowl Commercials -Winter Olympics -Did the Groundhog See His Shadow -Adam Rippon -Omarosa -Cavs -Government Shutdown -Virginia Woolf -Deadpool 2 -Patriots -Paula Modersohn-Becker -Kentucky shooting -Winter Olympics -Kylie Jenner -State of the Union -Pro Bowl 2018 -earthquake -Black Panther -Grammys 2018 -Virginia Woolf -Patriots -Patriots -Super Bowl 2018 -Patriots -Winter Olympics -Government shutdown 2018 -SpaceX -Government shutdown 2018 -Jennifer Aniston -Bitcoin Price -Paula Modersohn-Becker -Patriots -Super Bowl Commercials 2018 -Blake Griffin -Chicago West -Dua Lipa -Tessa Virtue -Chloe Kim -Super Bowl score -Lonzo Ball -Patriots -Kodak Black -Virginia Woolf -Olympic Medal Count -Vikings Vs Eagles -Virginia Woolf -Grammys 2018 -LeBron James -Erykah Badu -Wilder Penfield -Super Bowl Commercials 2018 -Super Bowl score -MS13 -Florida shooting -Patriots -Super Bowl 2018 -The 15:17 to Paris -Paula Modersohn-Becker -Paula Modersohn-Becker -Chris Paul -SpaceX -Florida shooting -Sammy Sosa -Chinese New Year 2018 -Wilder Penfield -Carter G. Woodson -Sergei Eisenstein -Phantom Thread -Dwyane Wade -Grammys 2018 -LL Bean -Olympic Medal Count -Elizabeth Blackwell -Josh McDaniels -Winter Olympics -12 Strong -Justin Timberlake -Google docs -Valentines Day Images -What Time Is The Super Bowl -SpaceX -Wilder Penfield -Florida shooting -Carter G. Woodson -Earthquake -Matt Patricia -Meteor -Virginia Woolf -Justin Timberlake -Florida shooting -Winter Olympics -Jennifer Aniston -Lindsey Vonn -SpaceX -State of the Union -School closings -Will Ferrell -Florida shooting -Ash Wednesday -Steve Wynn -The 15:17 to Paris -Elizabeth Blackwell -Wilder Penfield -Terrell Owens -SZA -Patriots -Kylie Jenner -Mexico Vs Bosnia -Government Shutdown -Ted Bundy -Paula Modersohn-Becker -Mikaela Shiffrin -Florida shooting -Marlon Brando -Super Bowl 2018 -Joe Kennedy -Shaun White -Duke Basketball -Isaiah Thomas -Kentucky shooting -Elizabeth Blackwell -Korea -NBC Sports -Trump State of the Union -Government shutdown 2018 -Florida shooting -Alex Smith -Grammys 2018 -Winter Olympics -Wilder Penfield -Wilder Penfield -Winter Olympics -Rampage -Vikings vs Eagles -Super Bowl 2018 -Chloe Kim -What Time Is The Super Bowl -Dow Jones -Virginia Woolf -Chicago Weather -Alex Smith -Carter G. Woodson -Terrell Owens -Lunar eclipse -Super Bowl 2018 -Dow Jones -Ted Bundy -Paula Modersohn-Becker -Mr Rogers -Grammys 2018 -Carter G. Woodson -Virginia Woolf -What Time Is The Super Bowl -Ursula Le Guin -Grammys 2018 -Winter Olympics -Super Bowl Commercials 2018 -Jennifer Aniston -Florida shooting -Alaska earthquake -Grammys 2018 -Patriots -Elizabeth Blackwell -Carl Higbie -Virginia Woolf -Super Bowl 2018 -Carrie Underwood -Grammys 2018 -Government Shutdown -Grammys 2018 -Larry Nassar -What Time Is The Super Bowl -Luke Wilson -Oscar Nominations 2018 -Happy Valentines Day -Fredo Santana -Patriots -Wilder Penfield -Google Drive -Wilder Penfield -Paula Modersohn-Becker -Sal Castro Middle School -Elizabeth Blackwell -Robby Anderson -Paula Modersohn-Becker -Kentucky shooting -Paula Modersohn-Becker -New England Patriots owner -Red Gerard -Kylie Jenner -What Time Is The Super Bowl -Vanessa Trump -Neil Diamond -Robert Wagner -Vikings vs Eagles -Wilder Penfield -Sammy Sosa -Mcdonald's -Super blue blood Moon -What Time Is The Super Bowl -Kratom -Sergei Eisenstein -Cnbc -Winter Olympics -Winter Olympics -Elizabeth Blackwell -Dwyane Wade -Winter Olympics -Amy Schumer -Florida shooting -Super blue blood Moon -Dow Jones -Greg Monroe -earthquake today -SpaceX -Celtics -Grammys 2018 -Grammys 2018 -Winter Olympics -Wilder Penfield -This Is Us -Virginia Woolf -Patriots -Jalen Ramsey -Groundhog Day 2018 -Sergei Eisenstein -Virginia Woolf -Matt Czuchry -Quincy Jones -Virginia Woolf -Kylie Jenner -Larry Nassar -Grammys 2018 -Super Bowl 2018 -Super Bowl score -Super Bowl 2018 -Rodney Hood -Scott Baio -Gigi Hadid -stock market -Virginia Woolf -Robert Mueller -Earthquake Today -Super Bowl score -Winter Olympics -State of the Union -Virginia Woolf -Sergei Eisenstein -Super Bowl score -happy new year in Chinese -Chloe Kim Snowboarder -Winter Olympics -XFL -Johnny Weir -What Time Is The Super Bowl -Elizabeth Blackwell -Alaska earthquake -Kristaps Porzingis -Mark Salling -Alaska earthquake -National Pizza Day -Carter G. Woodson -Solo Trailer -Rasual Butler -Grammys 2018 -Grammys 2018 -Government Shutdown Meaning -Solo Trailer -Super Bowl 2018 -Wilder Penfield -Florida shooting -Kylie Jenner -Dow Jones -Wilder Penfield -Grammys 2018 -Omarosa -Government Shutdown Meaning -Patriots -Paula Modersohn-Becker -Neil Diamond -State of the Union -Chris Paul -Dow Jones -Winter Olympics -Paula Modersohn-Becker -Justin Timberlake -Florida shooting -Larry Nassar -Terrell Owens -blue alert -Mexico earthquake -Winter Olympics -Nba All Star Draft -Hope Hicks -XFL -Zion Williamson -Winter Olympics -Cherry Seaborn -Edwin Jackson -Paula Modersohn-Becker -Carter G. Woodson -Daryle Singletary -Amy Schumer -Virginia Woolf -Robby Anderson -Solo Trailer -Solo Trailer -Trump State of the Union -SpaceX -Best Superbowl Commercials 2018 -Trump State of the Union -Alex Smith -Vikings Vs Eagles -Winter Olympics -Government shutdown -Virginia Woolf -Sergei Eisenstein -Winter Olympics -Paula Modersohn-Becker -Wilder Penfield -Mardi Gras 2018 -Super Bowl Commercials 2018 -Terrell Owens -Apple stock -Government Shutdown -Neil Diamond -Florida shooting -SpaceX -Government Shutdown -Peter Rabbit -Google docs -Sting -Florida shooting -Rasual Butler -Patriots -New England Patriots owner -Trump State of the Union -Trump State of the Union -Betty White -Super Blue Blood Moon -Alessia Cara -Chicago West -Joe Kennedy -Super Bowl score -Larry Nassar -Joy Villa -Patriots -Super Blue Blood Moon -Paula Modersohn-Becker -Elizabeth Blackwell -Kesha Grammy -Wilder Penfield -Elizabeth Blackwell -Paula Modersohn-Becker -Sergei Eisenstein -Terrell Owens -Virginia Woolf -SpaceX -Mexico earthquake -Google Drive -Ash Wednesday -Virginia Woolf -Kim Kardashian -Jennifer Aniston -Elizabeth Blackwell -Andrew Cunanan -Olympics 2018 -The First Purge -Kylie Jenner Baby Girl -Kingdom Come Deliverance -What Time Is The Super Bowl -Lady Gaga -Alaska earthquake -Florida shooting -Shaun White -Grammys 2018 -Terrell Owens -Memo -Sergei Eisenstein -Blake Griffin -Carter G. Woodson -Wilder Penfield -Scott Baio -Black Panther -Halsey -Maze Runner: The Death Cure -School Closings -New England Patriots owner -Wilder Penfield -Florida shooting -SpaceX -Super Bowl Commercials 2018 -Virginia Woolf -Paula Modersohn-Becker -Winchester -Mark E Smith -Camila Cabello -Portia de Rossi -Grammys 2018 -Valentine's Day -Andrew Cunanan -Paula Modersohn-Becker -Paula Modersohn-Becker -IXL -Elizabeth Blackwell -Google Classroom -Patriots -Olive Garden -Olympic Medal Count -Cloverfield Paradox -Paula Modersohn-Becker -Super Bowl 2018 -Cnbc -Florida shooting -Tiger Woods -Trey Gowdy -Juventus -Omarosa -Government Shutdown -Larry Nassar -State of the Union -Virginia Woolf -Trump State of the Union -NBA Trades -Danielle Herrington -Elizabeth Blackwell -Patriots -Carter G. Woodson -NBA Trades -Ar 15 -Memo -Nintendo Labo -Elizabeth Blackwell -Carter G. Woodson -Super Bowl 2018 -Super Bowl 2018 -Wilder Penfield -Super blue blood Moon -Paula Modersohn-Becker -Wilder Penfield -Dow Jones -Elizabeth Blackwell -Wilder Penfield -Snap Stock -Super Bowl score -Cloverfield Paradox -Cloverfield Paradox -Florida shooting -Grammys 2018 -Fredo Santana -Super Bowl 2018 -Kris Dunn -XFL -Florida shooting -Bob Marley -Sergei Eisenstein -Wilder Penfield -Wilder Penfield -Elizabeth Blackwell -Virginia Woolf -State of the Union -Winter Olympics -Government Shutdown -This Is Us -Paula Modersohn-Becker -Google docs -What Time Is The Super Bowl -Trump State of the Union -Elizabeth Blackwell -Senior Bowl -Sergei Eisenstein -Lady Bird -Carter G. Woodson -Florida shooting -Florida shooting -Virginia Woolf -Dragon Ball Super -Stock Market Crash Today -Wilder Penfield -Super Bowl 2018 -Andre the Giant -Virginia Woolf -Super Blue Blood Moon -Super Bowl score -Scandal -Florida shooting -Lakers -SpaceX -Larry Nassar -Bitcoin Price -Groundhog Day 2018 -Florida shooting -Earthquake Today -Johnny Weir -Bruno Mars -Rasual Butler -Florida shooting -Justin Timberlake -Government Shutdown -Kylie Jenner -Super Bowl 2018 -Super Bowl score -Florida shooting -Government Shutdown -This Is Us -Florida shooting -Virginia Woolf -NBA Trades -Sergei Eisenstein -Ted Bundy -What Time Is The Super Bowl -Patriots -Sergei Eisenstein -Red Gerard -Tonga -Valentines Day Cards -School closings -Kentucky shooting -Virginia Woolf -Elton John -Sergei Eisenstein -Super Bowl 2018 -Valentines Day Cards -Best Superbowl Commercials 2018 -Winter Olympics -Google Classroom -Super Bowl 2018 -Obama portrait -Lauren Davis -Mark Salling -Patriots -Wilder Penfield -Luke Wilson -NBA Trades -Wilder Penfield -LeBron James -Patriots -Groundhog Day 2018 -Elon Musk -Winter Olympics -Mikaela Shiffrin -Carter G. Woodson -Shaun White -Super Bowl score -Google Classroom -Adam Rippon -Ohio State basketball -Rob Porter -Grammys 2018 -MS13 -Florida shooting -Elon Musk -Sergei Eisenstein -Sea of Thieves -Carter G. Woodson -Carter G. Woodson -SpaceX -Elizabeth Blackwell -Elizabeth Blackwell -Despacito -Mark Salling -Cavs -Ash Wednesday -Bode Miller -Paula Modersohn-Becker -SpaceX -Grammys 2018 -Oscar Nominations 2018 -Terrell Owens -Mark Salling -Super Bowl 2018 -Cavs -XFL -Groundhog Day 2018 -Super Bowl 2018 -Taiwan Earthquake Today -Kylie Jenner -Virginia Woolf -CNN -Patriots -Kylie Jenner -Vikings vs Eagles -Super Bowl 2018 -Chicago Weather -Elizabeth Blackwell -Elton John -Elizabeth Blackwell -Daytona 500 -Paula Modersohn-Becker -Super Bowl score -Super Bowl score -Winter Olympics -Groundhog Day 2018 -Paula Modersohn-Becker -Bitcoin Price -Florida shooting -Florida shooting -Earthquake -Obama portrait -shutdown -Wilder Penfield -Patriots -Elizabeth Blackwell -SpaceX -Wilder Penfield -Patriots -Wilder Penfield -This Is Us -Winter Olympics -Bitcoin Price -Super Bowl score -Cavs -Winter Olympics -Sandy Hook -Super Bowl score -Rasual Butler -Reg E Cathey -Carter G. Woodson -Hope Hicks -Olympic Medal Count -Super Bowl score -Super Bowl score -Carter G. Woodson -Paula Modersohn-Becker -Virginia Woolf -Larry Nassar -fake news awards -Winter Olympics -Rodney Hood -Virginia Woolf -Larry Nassar -NBA Trades -Wilder Penfield -Valentines Day -SpaceX -Memo -Black Panther -This Is Us -Elizabeth Blackwell -Virginia Woolf -Carter G. Woodson -Sergei Eisenstein -What Time Is The Super Bowl -Dow Jones -Winter Olympics -Justin Timberlake -Super Bowl 2018 -Super Bowl Winners -Wonder Woman -Super Bowl 2018 -Wilder Penfield -Virginia Woolf -Kim Kardashian -Larry Nassar -Super Bowl 2018 -NBA Trades -Winter Olympics -Sergei Eisenstein -Amy Schumer -NBA Trades -Paula Modersohn-Becker -Alaska earthquake -Wilder Penfield -Carter G. Woodson -Chinese New Year 2018 -Super Bowl score -Bitcoin Price -New England Patriots owner -calculator -Patriots -Dow Jones -Paula Modersohn-Becker -Culture 2 -Shaun White -Alex Smith -Wilder Penfield -shutdown -Justin Timberlake -LeBron James -Florida shooting -Carter G. Woodson -Jane Fonda -Emily Sweeney -Memo -Luke Wilson -Virginia Woolf -Shaun White -Bitcoin Price -Wilder Penfield -Joseph Haynes -Carter G. Woodson -Elizabeth Blackwell -Patriots -Jason Kelce -SpaceX -Isaiah Thomas -Elizabeth Blackwell -Jo Jo White -Valentines Day -SpaceX -Kylie Jenner -Super Bowl 2018 -Super Bowl 2018 -Super Bowl score -Don Lemon -Wilder Penfield -Super Bowl score -Tom Petty -Winter Olympics -Sergei Eisenstein -Paula Modersohn-Becker -Ohio State basketball -Super Bowl score -Super Bowl 2018 -Sergei Eisenstein -Super Bowl 2018 -LL Bean -Florida shooting -Doomsday Clock -Paula Modersohn-Becker -Kentucky shooting -Esteban Loaiza -Elizabeth Blackwell -Sergei Eisenstein -Celebrity Big Brother cast -New England Patriots owner -Florida shooting -Solo Trailer -Florida shooting -Jamie Anderson -Elizabeth Blackwell -Alexander Polinsky -Paula Modersohn-Becker -Aliona Savchenko -Government Shutdown -NBA Trades -Carter G. Woodson -Government Shutdown -What Time Is The Super Bowl -Wilder Penfield -12 Strong -Matt Patricia -Carter G. Woodson -Justin Timberlake -Grammys 2018 -Virginia Woolf -Vikings Vs Eagles -Paula Modersohn-Becker -Memo -Government Shutdown -Super Bowl 2018 -XFL -Release The Memo -Rasual Butler -Johnny Weir -shutdown -Alison Brie -Sergei Eisenstein -Patriots -Florida shooting -Government Shutdown -Wilder Penfield -Paula Modersohn-Becker -Paula Modersohn-Becker -Earthquake Today -Mark Salling -Virginia Woolf -Alexander Polinsky -Government Shutdown Meaning -Valentines Day -Kim Kardashian -Happy Valentines Day -Eli Manning -Vikings Vs Eagles -Winter Olympics -Florida shooting -calculator -Winter Olympics -Super Bowl Commercials 2018 -Brynn Cameron -Meteor -James Maslow -Cloverfield Paradox -Wilder Penfield -Sergei Eisenstein -Olympic medal count -Wilder Penfield -Alaska earthquake -Virginia Woolf -Obama portrait -Super Bowl score -Grammys 2018 -Patriots -New England Patriots owner -Patriots -Robby Anderson -Groundhog Day 2018 -Bitcoin Price -Paul Ryan -Katie Couric -Winter Olympics -Isaiah Canaan -fake news awards -Wilder Penfield -Google docs -Kylie Jenner -Super Bowl 2018 -Elizabeth Blackwell -Super Bowl 2018 halftime show -Kodak Black -New England Patriots owner -Kylie Jenner -Kim Kardashian -Maze Runner: The Death Cure -Google Drive -Sergei Eisenstein -Google Classroom -Patriots -Carter G. Woodson -Carter G. Woodson -Marlon Brando -Patriots -Super Bowl score -Cloverfield Paradox -Super Bowl 2018 -Woody Allen -Virginia Woolf -Did the Groundhog See His Shadow -Justin Timberlake -Winter Olympics -Fifty Shades Freed -Super Bowl 2018 -school closings -Google docs -Patriots -Happy Valentines Day -Super Bowl score -Carter G. Woodson -Winter Olympics -Patriots -Kesha Grammy -Shaun White -Johnny Weir -Grammys 2018 -SpaceX -Rodney Hood -Patriots -Florida shooting -Champions League -Terrell Owens -Super Bowl score -Grammys 2018 -Government shutdown 2018 -Black Panther -Paula Modersohn-Becker -Elton John -Virginia Woolf -Wilder Penfield -Isaiah Thomas -Winter Olympics -Google docs -What Time Is The Super Bowl -Super Bowl score -Mark Salling -Larry Nassar -Mark Salling -Grammys 2018 -Winter Olympics -Rasual Butler -lady gaga grammys -Ursula Le Guin -Virginia Woolf -What Time Is The Super Bowl -Greg Monroe -Tsunami Warning -Joshua Cooper Ramo -NBA Trades -Patriots -SpaceX -Florida shooting -Super Bowl 2018 -Blake Griffin -stock market -Champions League -Atlanta Weather -Edwin Jackson -Mark Salling -SpaceX -Tom Petty -Dow Jones -Patriots -calculator -Florida shooting -Elizabeth Blackwell -Kentucky shooting -SpaceX -Patriots -Winter Olympics -Super Bowl score -Wilder Penfield -Government Shutdown -Winter Olympics -CNN -Super Bowl 2018 -What Time Is The Super Bowl -Google Drive -Elizabeth Blackwell -Elizabeth Blackwell -Sergei Eisenstein -Kylie Jenner -Winter Olympics -Wilder Penfield -Valentines Day -government shutdown -Patriots -Shaun White -Kesha Grammy -Vikings Vs Eagles -SpaceX -Groundhog Day 2018 -Paul Ryan -Florida shooting -Toys R Us -Government shutdown -Carter G. Woodson -Cherry Seaborn -Edible Arrangements -Early Man -Super Bowl 2018 -State of the Union -Patriots -Carrie Underwood -NBA Trades -Valentines Day -Virginia Woolf -Paula Modersohn-Becker -Carter G. Woodson -Bitcoin Price -Florida shooting -Did the Groundhog See His Shadow -Florida shooting -Super Bowl score -Super Bowl score -Bitcoin Price -Government shutdown 2018 -Walter Payton -Kylie Jenner -Cloverfield Paradox -Isaiah Thomas -Alaska earthquake -Super Bowl 2018 -Happy Valentines Day -Government Shutdown -Government Shutdown -12 Strong -Kentucky shooting -New California -John Mahoney -SpaceX -Super Bowl score -Carter G. Woodson -SpaceX -Deadpool 2 -NBA Trades -Wilder Penfield -Solo Trailer -Patriots -calculator -United States Postal Service -Super Bowl 2018 -Lil Pump -Olympics 2018 -Patriots -Larry Nassar -DeMarcus Cousins -Dwyane Wade -Elizabeth Blackwell -John Mahoney -Google docs -Fifty Shades Freed -Den of Thieves -Earthquake Today -Kylie Jenner -Virginia Woolf -Happy Valentines Day -Elizabeth Blackwell -Maze Runner: The Death Cure -Alaska earthquake -Sea of Thieves -Kesha -Virginia Woolf -Carter G. Woodson -Dow Jones -Kylie Jenner -Larry Nassar -Elizabeth Blackwell -Royal Rumble 2018 -Super Bowl 2018 -Chipper Jones -Super Bowl score -Government shutdown 2018 -Winter Olympics -What Time Is The Super Bowl -Apolo Ohno -Florida shooting -What Time Is The Super Bowl -Super Bowl 2018 -Super Bowl score -Carter G. Woodson -Best Superbowl Commercials 2018 -Vikings Vs Eagles -Winter Olympics -SpaceX -Wilder Penfield -Wilder Penfield -Florida shooting -Larry Nassar -Elizabeth Blackwell -Wilder Penfield -Government Shutdown Meaning -Patriots -Carter G. Woodson -Rasual Butler -Paula Modersohn-Becker -Paula Modersohn-Becker -Grammys 2018 -UFC 220 -Super Bowl 2018 halftime show -Isaiah Thomas -Tonga -Larry Nassar -Super Bowl score -Nba All Star Draft -Carter G. Woodson -Elizabeth Blackwell -Elizabeth Blackwell -Carter G. Woodson -Justin Timberlake -Daryle Singletary -Wilder Penfield -Get Out -Groundhog Day 2018 -Sergei Eisenstein -Carter G. Woodson -Virginia Woolf -Farmers Insurance Open 2018 -Sergei Eisenstein -Trump State of the Union -Wilder Penfield -Alaska earthquake -Mitt Romney -Blue Ivy -Elizabeth Blackwell -Patriots -Justin Timberlake -Paula Modersohn-Becker -Florida shooting -Winter Olympics -Florida shooting -Rasual Butler -Kim Kardashian -SpaceX -Rachel Brand -Justin Timberlake -Virginia Woolf -Wilder Penfield -Vanity Fair Cover -Elizabeth Blackwell -Tom Izzo -Patriots -Paula Modersohn-Becker -Jessica Biel -Naya Rivera -Sergei Eisenstein -Government Shutdown -Kesha Grammy -Andre the Giant -Mickey Jones -Super Bowl score -Adam Rippon -UFC 220 -Winter Olympics -Kylie Jenner -Patriots -Ohio State basketball -Elizabeth Blackwell -Kim Kardashian -Marlon Brando -Bob Dole -SpaceX -CNN -Government Shutdown -Uma Thurman -Patriots -Kylie Jenner -school closings -stock market -Scott Baio -Super Bowl 2018 -Sal Castro Middle School -Grammys 2018 -Pro Bowl 2018 -Mark Salling -Larry Nassar -Florida shooting -Carter G. Woodson -Florida shooting -John Mahoney -Bitcoin Price -AR-15 -Memo -Paula Modersohn-Becker -Justin Timberlake -Happy Valentines Day -Terrell Owens -Dow Jones -Pro Bowl 2018 -Shiffrin -Alex Smith -Nikki Haley -Grammys 2018 -Google Classroom -Daryle Singletary -Roger Federer -Super Bowl score -Chicago West -Wilder Penfield -Mikaela Shiffrin -SpaceX -Florida shooting -Super Bowl 2018 -Edwin Jackson -Super Bowl 2018 -Happy Valentines Day -Paula Modersohn-Becker -Winter Olympics -Dwyane Wade -Winter Olympics -Did the Groundhog See His Shadow -Senior Bowl -Florida shooting -Florida shooting -SAG Awards 2018 -Super Bowl 2018 -Grammys 2018 -Wilder Penfield -Did the Groundhog See His Shadow -Kylie Jenner -government shutdown -Paula Modersohn-Becker -Jessica Chastain -What Time Is The Super Bowl -Cherry Seaborn -Hillary Clinton -Trump State of the Union -Larry Nassar -Wilder Penfield -Florida shooting -NBA Trades -State of the Union -Virginia Woolf -Carter G. Woodson -Winter Olympics -Super Bowl score -Google Classroom -Patriots -Patriots -Blake Griffin -Will Ferrell -Jeffrey Tambor -Wilder Penfield -Oscar Nominations 2018 -Super Bowl 2018 -SpaceX -Super Bowl 2018 -Jemele Hill -Rodney Hood -Ant Man and the Wasp -Fredo Santana -Alison Brie -Winter Olympics -Super Bowl score -Obama portrait -Tom Brady -12 Strong -Ash Wednesday -Wilder Penfield -SpaceX -Super Bowl score -Korea -Elton John -Kingdom Come Deliverance -Carter G. Woodson -Government shutdown -Carter G. Woodson -Patriots -Quincy Jones -Super Bowl 2018 -Lindsey Vonn -Larry Nassar -What Time Is The Super Bowl -Carter G. Woodson -Super Bowl 2018 -Grammys 2018 -Snake -Bitcoin Price -Government Shutdown 2018 -SpaceX -Patriots -earthquake today -Super Bowl 2018 -Cryptocurrency News -Super Bowl 2018 -Government shutdown -Government shutdown -Despacito -Justin Timberlake -Jennifer Aniston -Mark Salling -Robert Wagner -Super Bowl 2018 -Virginia Woolf -Florida shooting -Florida shooting -What Time Is The Super Bowl -Winter Olympics -SpaceX -Elizabeth Blackwell -Real Madrid -Chris Paul -BitConnect -Elizabeth Blackwell -Dwyane Wade -Florida shooting -Winter Olympics -Virginia Woolf -State of the Union -Scott Baio -Carter G. Woodson -Best Superbowl Commercials 2018 -Vikings Vs Eagles -Fifty Shades Freed -Vikings vs Eagles -Patriots -Jimmy Garoppolo -Super Bowl score -Monster Hunter World -Groundhog Day 2018 -NBC Sports -Amtrak -Super Bowl score -Shibutani -Florida shooting -Nathan Chen -Super Bowl Commercials 2018 -government shutdown -Virginia Woolf -Kylie Jenner -Super blue blood Moon -Warren Miller -Super Bowl Commercials -Greg Monroe -Virginia Woolf -Shaun White -Justin Timberlake -Super Bowl score -Virginia Woolf -Florida shooting -Champions League -Bitcoin Price -Wilder Penfield -Presidents Day 2018 -Blake Griffin -Super Bowl score -NBC Sports -Black Panther -Nadal -Did the Groundhog See His Shadow -Kylie Jenner -Fortnite New Map -Memo -Olympic Medal Count -Sergei Eisenstein -Carter G. Woodson -SpaceX -Sea Of Thieves -Vikings vs Eagles -Bitcoin Price -Joe Kennedy -Super Bowl score -Justin Timberlake -Super Blue Blood Moon -Kylie Jenner -Mark E Smith -Virginia Woolf -Patriots -Black Panther -Memo -Rob Gronkowski -Patriots -Rodney Hood -Bitcoin Price -Justin Timberlake -Blue Ivy -Wilder Penfield -Patriots -Florida shooting -Carter G. Woodson -Government Shutdown 2018 -Kevin Love -Vikings Vs Eagles -Government Shutdown -Winter Olympics -Steve Wynn -Google Classroom -Chris Mazdzer -Aaron Feis -Virginia Woolf -Andrew Cunanan -Bitcoin Price -Florida shooting -Sergei Eisenstein -Winter Olympics -Google Drive -Pro Bowl 2018 -Kodak Black -Winter Olympics -Virginia Woolf -Laura Ingraham -Wilder Penfield -Trump State of the Union -Ursula Le Guin -Kylie Jenner -Super Bowl score -Super Bowl score -Logan Paul -Den of Thieves -Grammys 2018 -Paula Modersohn-Becker -Elizabeth Blackwell -Justin Timberlake -Sergei Eisenstein -Carter G. Woodson -Wilder Penfield -Shaun White -Did the Groundhog See His Shadow -Super Bowl score -Winter Olympics -Elizabeth Blackwell -What Time Is The Super Bowl -Elizabeth Blackwell -Paula Modersohn-Becker -Larry Nassar -Cavs -Cnbc -SpaceX -Carter G. Woodson -Patriots -Virginia Woolf -Solo Trailer -NBA Trades -Grammys 2018 -Altered Carbon -Sergei Eisenstein -Yu Darvish -Virginia Woolf -Patriots -Virginia Woolf -Fifty Shades Freed -Elizabeth Blackwell -Sergei Eisenstein -Florida shooting -Super Bowl score -Valentines Day Memes -Patriots -Super Bowl 2018 -Wilder Penfield -earthquake -Larry Nassar -Patriots -Winter Olympics -Super Bowl score -Paula Modersohn-Becker -Chicago Weather -This is Us -Government shutdown 2018 -Winter Olympics -Gods Plan -Groundhog Day 2018 -Grammys 2018 -Sergei Eisenstein -Government Shutdown -Justin Timberlake -What Time Is The Super Bowl -Tonga -Paula Modersohn-Becker -Virginia Woolf -Carter G. Woodson -What Time Is The Super Bowl -Black Panther -Paula Modersohn-Becker -Shaun White -Virginia Woolf -Sergei Eisenstein -Patriots -Florida shooting -John Mahoney -Cbs -Super Bowl Winners -Elizabeth Blackwell -Larry Nassar -Natalie Portman -Carter G. Woodson -Forever My Girl -Shaun White -Trump State of the Union -UFC 220 -Kesha -Marlon Brando -Super blue blood Moon -Sal Castro Middle School -Carter G. Woodson -Patriots -Super Bowl 2018 halftime show -Paula Modersohn-Becker -Anna Kournikova -Elizabeth Blackwell -Memo -Virginia Woolf -Fifty Shades Freed -Elizabeth Blackwell -Mardi Gras 2018 -Winter Olympics -Champions League -What Time Is The Super Bowl -Pro Bowl 2018 -Elizabeth Blackwell -Tom Petty -Florida shooting -Paula Modersohn-Becker -Carter G. Woodson -Super Bowl 2018 -Sergei Eisenstein -What Time Is The Super Bowl -Tom Petty -Drive -Kylie Jenner -Shaun White -Florida shooting -Virginia Woolf -Justin Timberlake -Blake Griffin -Virginia Woolf -Turpin -Paula Modersohn-Becker -Kylie Jenner Baby Girl -Rodney Hood -National Pizza Day -Cory Booker -Patriots -Cavs -Paula Modersohn-Becker -Elizabeth Blackwell -Florida shooting -Virginia Woolf -Super Bowl 2018 -SpaceX -Childish Gambino -Adam Rippon -Google Classroom -Kylie Jenner -What Time Is The Super Bowl -New England Patriots owner -Super Bowl score -Super Bowl score -Virginia Woolf -Fifty Shades Freed -Super Bowl 2018 -Winter Olympics -Winter Olympics -Florida shooting diff --git a/corpus_transform.py b/corpus_transform.py new file mode 100644 index 00000000000..9bde8568d74 --- /dev/null +++ b/corpus_transform.py @@ -0,0 +1,28 @@ +import fileinput +import json +import re + +PTN = re.compile("[^a-zA-Z]+") + +def transform(text): + return PTN.sub(" ", text.lower()) + +for line in fileinput.input(): + doc = {} + try: + doc = json.loads(line) + except ValueError: + continue + + if doc["url"] == "": + continue + if len(doc["url"].split("curid=",1)) == 1: + continue + + doc_transformed = { + "id": doc["url"], + "id_num": int(doc["url"].split("curid=",1)[1]), + "text": transform(doc["body"]) + } + + print(json.dumps(doc_transformed)) diff --git a/engines/bleve-0.8.0-boltdb/Makefile b/engines/bleve-0.8.0-boltdb/Makefile new file mode 100644 index 00000000000..3d61331bb9b --- /dev/null +++ b/engines/bleve-0.8.0-boltdb/Makefile @@ -0,0 +1,50 @@ +SRCPATH=$(shell pwd) + +GOOS ?= +GOARCH ?= +CGO_ENABLED ?= 0 +CGO_CFLAGS ?= +CGO_LDFLAGS ?= +BUILD_TAGS ?= +BIN_EXT ?= + +GO := GOOS=$(GOOS) GOARCH=$(GOARCH) CGO_ENABLED=$(CGO_ENABLED) CGO_CFLAGS=$(CGO_CFLAGS) CGO_LDFLAGS=$(CGO_LDFLAGS) GO111MODULE=on go + +PACKAGES = $(shell $(GO) list ./... | grep -v '/vendor/') + +LDFLAGS = -ldflags "-s -w" + +ifeq ($(GOOS),windows) + BIN_EXT = .exe +endif + +.DEFAULT_GOAL := compile + +init: + @echo "--- Initializing Bleve 0.8.0 boltdb ---" + @$(GO) mod init github.com/mosuka/search-benchmark-game + +format: + @echo "--- Formatting code ---" + @$(GO) fmt $(PACKAGES) + +clean: + @echo "--- Cleaning Bleve 0.8.0 boltdb ---" + @rm -fr ./idx + @rm -fr ./bin + +compile: build + +index: idx + +serve: + @./bin/do_query ./idx + +build: + @echo "--- Building Bleve 0.8.0 boltdb ---" + @$(GO) build -tags="$(BUILD_TAGS)" $(LDFLAGS) -o $(SRCPATH)/bin/build_index $(SRCPATH)/build_index.go + @$(GO) build -tags="$(BUILD_TAGS)" $(LDFLAGS) -o $(SRCPATH)/bin/do_query $(SRCPATH)/do_query.go + +idx: build + @echo "--- Indexing Bleve 0.8.0 boltdb ---" + ./bin/build_index ./idx "$@" < ${CORPUS} diff --git a/engines/bleve-0.8.0-boltdb/build_index.go b/engines/bleve-0.8.0-boltdb/build_index.go new file mode 100644 index 00000000000..0dc42d38312 --- /dev/null +++ b/engines/bleve-0.8.0-boltdb/build_index.go @@ -0,0 +1,124 @@ +package main + +import ( + "bufio" + "encoding/json" + "fmt" + "io" + "os" + + "github.com/blevesearch/bleve" + "github.com/blevesearch/bleve/analysis/analyzer/standard" + _ "github.com/blevesearch/bleve/config" + "github.com/blevesearch/bleve/index/store/boltdb" + "github.com/blevesearch/bleve/index/upsidedown" +) + +func main() { + outputDir := os.Args[1] + + textFieldMapping := bleve.NewTextFieldMapping() + textFieldMapping.Analyzer = standard.Name + textFieldMapping.Store = false + textFieldMapping.IncludeInAll = false + + docMapping := bleve.NewDocumentMapping() + docMapping.AddFieldMappingsAt("text", textFieldMapping) + + indexMapping := bleve.NewIndexMapping() + indexMapping.DefaultMapping = docMapping + indexMapping.DefaultField = "text" + + index, err := bleve.NewUsing(outputDir, indexMapping, upsidedown.Name, boltdb.Name, nil) + defer func() { + err = index.Close() + if err != nil { + fmt.Println(err) + return + } + }() + if err != nil { + fmt.Println(err) + return + } + + batchSize := 500 + batch := index.NewBatch() + + reader := bufio.NewReader(os.Stdin) + for { + lineBytes, err := reader.ReadBytes('\n') + if err != nil { + if err == io.EOF || err == io.ErrClosedPipe { + if len(lineBytes) > 0 { + var data map[string]interface{} + err = json.Unmarshal(lineBytes, &data) + if err != nil { + fmt.Println(err) + return + } + id := data["id"].(string) + fields := map[string]interface{}{} + for k, v := range data { + if k != "id" { + fields[k] = v + } + } + err = batch.Index(id, fields) + if err != nil { + fmt.Println(err) + return + } + } + break + } + } + + if len(lineBytes) > 0 { + var data map[string]interface{} + err = json.Unmarshal(lineBytes, &data) + if err != nil { + fmt.Println(err) + return + } + id := data["id"].(string) + fields := map[string]interface{}{} + for k, v := range data { + if k != "id" { + fields[k] = v + } + } + err = batch.Index(id, fields) + if err != nil { + fmt.Println(err) + return + } + + if batch.Size() >= batchSize { + err := index.Batch(batch) + if err != nil { + fmt.Println(err) + return + } + batch = index.NewBatch() + } + } + } + + if batch.Size() > 0 { + err := index.Batch(batch) + if err != nil { + fmt.Println(err) + return + } + } + + docCount, err := index.DocCount() + if err != nil { + fmt.Println(err) + return + } + fmt.Println(docCount) + + fmt.Println("Does not support index marge") +} diff --git a/engines/bleve-0.8.0-boltdb/do_query.go b/engines/bleve-0.8.0-boltdb/do_query.go new file mode 100644 index 00000000000..7f8a8c5ace3 --- /dev/null +++ b/engines/bleve-0.8.0-boltdb/do_query.go @@ -0,0 +1,67 @@ +package main + +import ( + "bufio" + "fmt" + "os" + "strings" + + "github.com/blevesearch/bleve" +) + +func main() { + indexDir := os.Args[1] + + index, err := bleve.Open(indexDir) + defer func() { + err = index.Close() + if err != nil { + fmt.Println("ERROR") + return + } + }() + if err != nil { + fmt.Println("ERROR") + return + } + + scanner := bufio.NewScanner(os.Stdin) + for scanner.Scan() { + line := scanner.Text() + fields := strings.SplitN(line, "\t", 2) + command := fields[0] + query := bleve.NewQueryStringQuery(fields[1]) + searchRequest := bleve.NewSearchRequest(query) + + count := uint64(0) + switch command { + case "COUNT": + searchResult, err := index.Search(searchRequest) + if err != nil { + fmt.Println("ERROR") + continue + } + count = searchResult.Total + case "TOP_10": + searchRequest.Size = 10 + _, err := index.Search(searchRequest) + if err != nil { + fmt.Println("ERROR") + continue + } + count = 1 + case "TOP_10_COUNT": + searchRequest.Size = 10 + searchResult, err := index.Search(searchRequest) + if err != nil { + fmt.Println("ERROR") + continue + } + count = searchResult.Total + default: + fmt.Println("UNSUPPORTED") + continue + } + fmt.Println(count) + } +} diff --git a/engines/bleve-0.8.0-boltdb/go.mod b/engines/bleve-0.8.0-boltdb/go.mod new file mode 100644 index 00000000000..e875512c036 --- /dev/null +++ b/engines/bleve-0.8.0-boltdb/go.mod @@ -0,0 +1,35 @@ +module github.com/mosuka/blevesample + +go 1.13 + +require ( + github.com/RoaringBitmap/roaring v0.4.20 // indirect + github.com/blevesearch/bleve v0.8.0 + github.com/blevesearch/blevex v0.0.0-20190916190636-152f0fe5c040 // indirect + github.com/blevesearch/cld2 v0.0.0-20150916130542-10f17c049ec9 // indirect + github.com/blevesearch/go-porterstemmer v1.0.2 // indirect + github.com/blevesearch/segment v0.0.0-20160915185041-762005e7a34f // indirect + github.com/blevesearch/snowballstem v0.0.0-20180110192139-26b06a2c243d // indirect + github.com/couchbase/ghistogram v0.0.0-20170308220240-d910dd063dd6 // indirect + github.com/couchbase/moss v0.0.0-20190322010551-a0cae174c498 // indirect + github.com/couchbase/vellum v0.0.0-20190823171024-95128b2d4edb // indirect + github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d // indirect + github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect + github.com/cznic/strutil v0.0.0-20181122101858-275e90344537 // indirect + github.com/edsrzf/mmap-go v1.0.0 // indirect + github.com/etcd-io/bbolt v1.3.3 // indirect + github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51 // indirect + github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect + github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870 // indirect + github.com/golang/protobuf v1.3.2 // indirect + github.com/ikawaha/kagome.ipadic v1.1.0 // indirect + github.com/jmhodges/levigo v1.0.0 // indirect + github.com/remyoudompheng/bigfft v0.0.0-20190728182440-6a916e37a237 // indirect + github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2 // indirect + github.com/syndtr/goleveldb v1.0.0 // indirect + github.com/tebeka/snowball v0.3.0 // indirect + github.com/tecbot/gorocksdb v0.0.0-20190705090504-162552197222 // indirect + go.etcd.io/bbolt v1.3.3 // indirect + golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3 // indirect + golang.org/x/text v0.3.2 // indirect +) diff --git a/engines/bleve-0.8.0-boltdb/go.sum b/engines/bleve-0.8.0-boltdb/go.sum new file mode 100644 index 00000000000..e04e94d718b --- /dev/null +++ b/engines/bleve-0.8.0-boltdb/go.sum @@ -0,0 +1,114 @@ +github.com/RoaringBitmap/roaring v0.4.20 h1:PKmAFTkw47a5khFKgTdu64iObahLTBwTJnVOCN9dg3M= +github.com/RoaringBitmap/roaring v0.4.20/go.mod h1:D3qVegWTmfCaX4Bl5CrBE9hfrSrrXIr8KVNvRsDi1NI= +github.com/blevesearch/bleve v0.8.0 h1:DCoCrxscCXrlzVWK92k7Vq4d28lTAFuigVmcgIX0VCo= +github.com/blevesearch/bleve v0.8.0/go.mod h1:Y2lmIkzV6mcNfAnAdOd+ZxHkHchhBfU/xroGIp61wfw= +github.com/blevesearch/blevex v0.0.0-20190916190636-152f0fe5c040 h1:SjYVcfJVZoCfBlg+fkaq2eoZHTf5HaJfaTeTkOtyfHQ= +github.com/blevesearch/blevex v0.0.0-20190916190636-152f0fe5c040/go.mod h1:WH+MU2F4T0VmSdaPX+Wu5GYoZBrYWdOZWSjzvYcDmqQ= +github.com/blevesearch/cld2 v0.0.0-20150916130542-10f17c049ec9 h1:ZPImXwzC+ICkkSYlPP9mMVgQlZH24+56rIEUjVxfFnY= +github.com/blevesearch/cld2 v0.0.0-20150916130542-10f17c049ec9/go.mod h1:PN0QNTLs9+j1bKy3d/GB/59wsNBFC4sWLWG3k69lWbc= +github.com/blevesearch/go-porterstemmer v1.0.2 h1:qe7n69gBd1OLY5sHKnxQHIbzn0LNJA4hpAf+5XDxV2I= +github.com/blevesearch/go-porterstemmer v1.0.2/go.mod h1:haWQqFT3RdOGz7PJuM3or/pWNJS1pKkoZJWCkWu0DVA= +github.com/blevesearch/segment v0.0.0-20160915185041-762005e7a34f h1:kqbi9lqXLLs+zfWlgo1PIiRQ86n33K1JKotjj4rSYOg= +github.com/blevesearch/segment v0.0.0-20160915185041-762005e7a34f/go.mod h1:IInt5XRvpiGE09KOk9mmCMLjHhydIhNPKPPFLFBB7L8= +github.com/blevesearch/snowballstem v0.0.0-20180110192139-26b06a2c243d h1:iPCfLXcTYDotqO1atEOQyoRDwlGaZVuMI4wSaKQlI2I= +github.com/blevesearch/snowballstem v0.0.0-20180110192139-26b06a2c243d/go.mod h1:cdytUvf6FKWA9NpXJihYdZq8TN2AiQ5HOS0UZUz0C9g= +github.com/couchbase/ghistogram v0.0.0-20170308220240-d910dd063dd6 h1:T7Qykid5GIoDEVTZL0NcbimcT2qmzjo5mNGhe8i0/5M= +github.com/couchbase/ghistogram v0.0.0-20170308220240-d910dd063dd6/go.mod h1:s1Jhy76zqfEecpNWJfWUiKZookAFaiGOEoyzgHt9i7k= +github.com/couchbase/moss v0.0.0-20190322010551-a0cae174c498 h1:b8rnI4JWbakUNfpmYDxGobTY/jTuF5zHLw0ID75yzuM= +github.com/couchbase/moss v0.0.0-20190322010551-a0cae174c498/go.mod h1:mGI1GcdgmlL3Imff7Z+OjkkQ8qSKr443BuZ+qFgWbPQ= +github.com/couchbase/vellum v0.0.0-20190823171024-95128b2d4edb h1:KGkbXeg7OEi/415VIYCnpXW9KdZBXzZCsw9jbC6xAAo= +github.com/couchbase/vellum v0.0.0-20190823171024-95128b2d4edb/go.mod h1:prYTC8EgTu3gwbqJihkud9zRXISvyulAplQ6exdCo1g= +github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d h1:SwD98825d6bdB+pEuTxWOXiSjBrHdOl/UVp75eI7JT8= +github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8= +github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 h1:iwZdTE0PVqJCos1vaoKsclOGD3ADKpshg3SRtYBbwso= +github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548/go.mod h1:e6NPNENfs9mPDVNRekM7lKScauxd5kXTr1Mfyig6TDM= +github.com/cznic/strutil v0.0.0-20181122101858-275e90344537 h1:MZRmHqDBd0vxNwenEbKSQqRVT24d3C05ft8kduSwlqM= +github.com/cznic/strutil v0.0.0-20181122101858-275e90344537/go.mod h1:AHHPPPXTw0h6pVabbcbyGRK1DckRn7r/STdZEeIDzZc= +github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/edsrzf/mmap-go v1.0.0 h1:CEBF7HpRnUCSJgGUb5h1Gm7e3VkmVDrR8lvWVLtrOFw= +github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= +github.com/etcd-io/bbolt v1.3.3 h1:gSJmxrs37LgTqR/oyJBWok6k6SvXEUerFTbltIhXkBM= +github.com/etcd-io/bbolt v1.3.3/go.mod h1:ZF2nL25h33cCyBtcyWeZ2/I3HQOfTP+0PIEvHjkjCrw= +github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51 h1:0JZ+dUmQeA8IIVUMzysrX4/AKuQwWhV2dYQuPZdvdSQ= +github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51/go.mod h1:Yg+htXGokKKdzcwhuNDwVvN+uBxDGXJ7G/VN1d8fa64= +github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 h1:JWuenKqqX8nojtoVVWjGfOF9635RETekkoH6Cc9SX0A= +github.com/facebookgo/stack v0.0.0-20160209184415-751773369052/go.mod h1:UbMTZqLaRiH3MsBH8va0n7s1pQYcu3uTb8G4tygF4Zg= +github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870 h1:E2s37DuLxFhQDg5gKsWoLBOB0n+ZW8s599zru8FJ2/Y= +github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870/go.mod h1:5tD+neXqOorC30/tWg0LCSkrqj/AR6gu8yY8/fpw1q0= +github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= +github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/glycerine/go-unsnap-stream v0.0.0-20181221182339-f9677308dec2 h1:Ujru1hufTHVb++eG6OuNDKMxZnGIvF6o/u8q/8h2+I4= +github.com/glycerine/go-unsnap-stream v0.0.0-20181221182339-f9677308dec2/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE= +github.com/glycerine/goconvey v0.0.0-20180728074245-46e3a41ad493 h1:OTanQnFt0bi5iLFSdbEVA/idR6Q2WhCm+deb7ir2CcM= +github.com/glycerine/goconvey v0.0.0-20180728074245-46e3a41ad493/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db h1:woRePGFeVFfLKN/pOkfl+p/TAqKOfFu+7KPlMVpok/w= +github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= +github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8= +github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= +github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= +github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= +github.com/ikawaha/kagome.ipadic v1.1.0 h1:9hzwhcklEL4Cmp+lM9HQfmDg2nhB43Fe1n9UUY6mifY= +github.com/ikawaha/kagome.ipadic v1.1.0/go.mod h1:DPSBbU0czaJhAb/5uKQZHMc9MTVRpDugJfX+HddPHHg= +github.com/jmhodges/levigo v1.0.0 h1:q5EC36kV79HWeTBWsod3mG11EgStG3qArTKcvlksN1U= +github.com/jmhodges/levigo v1.0.0/go.mod h1:Q6Qx+uH3RAqyK4rFQroq9RL7mdkABMcfhEI+nNuzMJQ= +github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= +github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= +github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae h1:VeRdUYdCw49yizlSbMEn2SZ+gT+3IUKx8BqxyQdz+BY= +github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae/go.mod h1:qAyveg+e4CE+eKJXWVjKXM4ck2QobLqTDytGJbLLhJg= +github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.7.0 h1:WSHQ+IS43OoUrWtD1/bbclrwK8TTH5hzp+umCiuxHgs= +github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/gomega v1.4.3 h1:RE1xgDvH7imwFD45h+u2SgIfERHlS2yNG4DObb5BSKU= +github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= +github.com/philhofer/fwd v1.0.0 h1:UbZqGr5Y38ApvM/V/jEljVxwocdweyH+vmYvRPBnbqQ= +github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/remyoudompheng/bigfft v0.0.0-20190728182440-6a916e37a237 h1:HQagqIiBmr8YXawX/le3+O26N+vPPC1PtjaF3mwnook= +github.com/remyoudompheng/bigfft v0.0.0-20190728182440-6a916e37a237/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= +github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff h1:86HlEv0yBCry9syNuylzqznKXDK11p6D0DT596yNMys= +github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff/go.mod h1:KSQcGKpxUMHk3nbYzs/tIBAM2iDooCn0BmttHOJEbLs= +github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2 h1:JNEGSiWg6D3lcBCMCBqN3ELniXujt+0QNHLhNnO0w3s= +github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2/go.mod h1:mjqs7N0Q6m5HpR7QfXVBZXZWSqTjQLeTujjA/xUp2uw= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/syndtr/goleveldb v1.0.0 h1:fBdIW9lB4Iz0n9khmH8w27SJ3QEJ7+IgjPEwGSZiFdE= +github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ= +github.com/tebeka/snowball v0.3.0 h1:/vP76OjIhZrXtcmBmQgQ986B/WM95MB4tdLEuWdDgZk= +github.com/tebeka/snowball v0.3.0/go.mod h1:4IfL14h1lvwZcp1sfXuuc7/7yCsvVffTWxWxCLfFpYg= +github.com/tecbot/gorocksdb v0.0.0-20190705090504-162552197222 h1:FLimlAjzuhq8loeLX7lLhKKeUgpA/4slynlNVB/Qaks= +github.com/tecbot/gorocksdb v0.0.0-20190705090504-162552197222/go.mod h1:ahpPrc7HpcfEWDQRZEmnXMzHY03mLDYMCxeDzy46i+8= +github.com/tinylib/msgp v1.1.0 h1:9fQd+ICuRIu/ue4vxJZu6/LzxN0HwMds2nq/0cFvxHU= +github.com/tinylib/msgp v1.1.0/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= +github.com/willf/bitset v1.1.10 h1:NotGKqX0KwQ72NUzqrjZq5ipPNDQex9lo3WpaS8L2sc= +github.com/willf/bitset v1.1.10/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= +go.etcd.io/bbolt v1.3.3 h1:MUGmc65QhB3pIlaQ5bB4LwqSj6GIonVJXpZiaKNyaKk= +go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= +golang.org/x/net v0.0.0-20180906233101-161cd47e91fd h1:nTDtHvHSdCn1m6ITfMRqtOd/9+7a3s8RBNOZ3eYZzJA= +golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e h1:o3PsSEY8E4eXWkXrIP9YJALUkVZqzHJT5DOasTyn8Vs= +golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3 h1:7TYNF4UdlohbFwpNH04CoPMp1cHUZgO1Ebq5r2hIjfo= +golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= +golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4= +gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= +gopkg.in/yaml.v2 v2.2.1 h1:mUhvW9EsL+naU5Q3cakzfE91YhliOondGd6ZrsDBHQE= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/engines/bleve-0.8.0-scorch/Makefile b/engines/bleve-0.8.0-scorch/Makefile new file mode 100644 index 00000000000..2e4d285f42d --- /dev/null +++ b/engines/bleve-0.8.0-scorch/Makefile @@ -0,0 +1,50 @@ +SRCPATH=$(shell pwd) + +GOOS ?= +GOARCH ?= +CGO_ENABLED ?= 0 +CGO_CFLAGS ?= +CGO_LDFLAGS ?= +BUILD_TAGS ?= +BIN_EXT ?= + +GO := GOOS=$(GOOS) GOARCH=$(GOARCH) CGO_ENABLED=$(CGO_ENABLED) CGO_CFLAGS=$(CGO_CFLAGS) CGO_LDFLAGS=$(CGO_LDFLAGS) GO111MODULE=on go + +PACKAGES = $(shell $(GO) list ./... | grep -v '/vendor/') + +LDFLAGS = -ldflags "-s -w" + +ifeq ($(GOOS),windows) + BIN_EXT = .exe +endif + +.DEFAULT_GOAL := compile + +init: + @echo "--- Initializing Bleve 0.8.0 scorch ---" + @$(GO) mod init github.com/mosuka/search-benchmark-game + +format: + @echo "--- Formatting code ---" + @$(GO) fmt $(PACKAGES) + +clean: + @echo "--- Cleaning Bleve 0.8.0 scorch ---" + @rm -fr ./idx + @rm -fr ./bin + +compile: build + +index: idx + +serve: + @./bin/do_query ./idx + +build: + @echo "--- Building Bleve 0.8.0 scorch ---" + @$(GO) build -tags="$(BUILD_TAGS)" $(LDFLAGS) -o $(SRCPATH)/bin/build_index $(SRCPATH)/build_index.go + @$(GO) build -tags="$(BUILD_TAGS)" $(LDFLAGS) -o $(SRCPATH)/bin/do_query $(SRCPATH)/do_query.go + +idx: build + @echo "--- Indexing Bleve 0.8.0 scorch ---" + ./bin/build_index ./idx "$@" < ${CORPUS} diff --git a/engines/bleve-0.8.0-scorch/build_index.go b/engines/bleve-0.8.0-scorch/build_index.go new file mode 100644 index 00000000000..e58f9a84576 --- /dev/null +++ b/engines/bleve-0.8.0-scorch/build_index.go @@ -0,0 +1,151 @@ +package main + +import ( + "bufio" + "encoding/json" + "fmt" + "io" + "os" + + "github.com/blevesearch/bleve" + "github.com/blevesearch/bleve/analysis" + "github.com/blevesearch/bleve/analysis/token/lowercase" + "github.com/blevesearch/bleve/analysis/tokenizer/unicode" + _ "github.com/blevesearch/bleve/config" + "github.com/blevesearch/bleve/index/scorch" + "github.com/blevesearch/bleve/registry" +) + +func main() { + outputDir := os.Args[1] + + textFieldMapping := bleve.NewTextFieldMapping() + textFieldMapping.Analyzer = StandardAnalyzerWithStopWords + textFieldMapping.Store = false + textFieldMapping.IncludeTermVectors = false + textFieldMapping.IncludeInAll = false + + docMapping := bleve.NewDocumentMapping() + docMapping.AddFieldMappingsAt("text", textFieldMapping) + + indexMapping := bleve.NewIndexMapping() + indexMapping.DefaultMapping = docMapping + indexMapping.DefaultField = "text" + + index, err := bleve.NewUsing(outputDir, indexMapping, scorch.Name, scorch.Name, nil) + defer func() { + err = index.Close() + if err != nil { + fmt.Println(err) + return + } + }() + if err != nil { + fmt.Println(err) + return + } + + batchSize := 20000 + batch := index.NewBatch() + + reader := bufio.NewReader(os.Stdin) + for { + lineBytes, err := reader.ReadBytes('\n') + if err != nil { + if err == io.EOF || err == io.ErrClosedPipe { + if len(lineBytes) > 0 { + var data map[string]interface{} + err = json.Unmarshal(lineBytes, &data) + if err != nil { + fmt.Println(err) + return + } + id := data["id"].(string) + fields := map[string]interface{}{} + for k, v := range data { + if k != "id" { + fields[k] = v + } + } + err = batch.Index(id, fields) + if err != nil { + fmt.Println(err) + return + } + } + break + } + } + + if len(lineBytes) > 0 { + var data map[string]interface{} + err = json.Unmarshal(lineBytes, &data) + if err != nil { + fmt.Println(err) + return + } + id := data["id"].(string) + fields := map[string]interface{}{} + for k, v := range data { + if k != "id" { + fields[k] = v + } + } + err = batch.Index(id, fields) + if err != nil { + fmt.Println(err) + return + } + + if batch.Size() >= batchSize { + err := index.Batch(batch) + if err != nil { + fmt.Println(err) + return + } + batch = index.NewBatch() + } + } + } + + if batch.Size() > 0 { + err := index.Batch(batch) + if err != nil { + fmt.Println(err) + return + } + } + + docCount, err := index.DocCount() + if err != nil { + fmt.Println(err) + return + } + fmt.Println(docCount) + + fmt.Println("Does not support index marge") +} + +func NewStandardAnalyzerWithStopWords(config map[string]interface{}, cache *registry.Cache) (*analysis.Analyzer, error) { + tokenizer, err := cache.TokenizerNamed(unicode.Name) + if err != nil { + return nil, err + } + toLowerFilter, err := cache.TokenFilterNamed(lowercase.Name) + if err != nil { + return nil, err + } + rv := analysis.Analyzer{ + Tokenizer: tokenizer, + TokenFilters: []analysis.TokenFilter{ + toLowerFilter, + }, + } + return &rv, nil +} + +const StandardAnalyzerWithStopWords = "standard-with-stopwords" + +func init() { + registry.RegisterAnalyzer(StandardAnalyzerWithStopWords, NewStandardAnalyzerWithStopWords) +} diff --git a/engines/bleve-0.8.0-scorch/do_query.go b/engines/bleve-0.8.0-scorch/do_query.go new file mode 100644 index 00000000000..aaf1a213e6b --- /dev/null +++ b/engines/bleve-0.8.0-scorch/do_query.go @@ -0,0 +1,96 @@ +package main + +import ( + "bufio" + "fmt" + "os" + "strings" + + "github.com/blevesearch/bleve" + "github.com/blevesearch/bleve/analysis" + "github.com/blevesearch/bleve/analysis/token/lowercase" + "github.com/blevesearch/bleve/analysis/tokenizer/unicode" + _ "github.com/blevesearch/bleve/config" + "github.com/blevesearch/bleve/registry" +) + +func main() { + indexDir := os.Args[1] + + index, err := bleve.Open(indexDir) + defer func() { + err = index.Close() + if err != nil { + fmt.Sprintf("ERROR: %v", err) + return + } + }() + if err != nil { + fmt.Sprintf("ERROR: %v", err) + return + } + + scanner := bufio.NewScanner(os.Stdin) + for scanner.Scan() { + line := scanner.Text() + fields := strings.SplitN(line, "\t", 2) + command := fields[0] + query := bleve.NewQueryStringQuery(fields[1]) + searchRequest := bleve.NewSearchRequest(query) + + count := uint64(0) + switch command { + case "COUNT": + searchResult, err := index.Search(searchRequest) + if err != nil { + fmt.Sprintf("ERROR: %v", err) + continue + } + count = searchResult.Total + case "TOP_10": + searchRequest.Size = 10 + _, err := index.Search(searchRequest) + if err != nil { + fmt.Sprintf("ERROR: %v", err) + continue + } + count = 1 + case "TOP_10_COUNT": + searchRequest.Size = 10 + searchResult, err := index.Search(searchRequest) + if err != nil { + fmt.Sprintf("ERROR: %v", err) + continue + } + count = searchResult.Total + default: + fmt.Println("UNSUPPORTED") + continue + } + fmt.Println(count) + } +} + +func NewStandardAnalyzerWithStopWords(config map[string]interface{}, cache *registry.Cache) (*analysis.Analyzer, error) { + tokenizer, err := cache.TokenizerNamed(unicode.Name) + if err != nil { + return nil, err + } + toLowerFilter, err := cache.TokenFilterNamed(lowercase.Name) + if err != nil { + return nil, err + } + rv := analysis.Analyzer{ + Tokenizer: tokenizer, + TokenFilters: []analysis.TokenFilter{ + toLowerFilter, + }, + } + return &rv, nil +} + +const StandardAnalyzerWithStopWords = "standard-with-stopwords" + +func init() { + registry.RegisterAnalyzer(StandardAnalyzerWithStopWords, NewStandardAnalyzerWithStopWords) +} diff --git a/engines/bleve-0.8.0-scorch/go.mod b/engines/bleve-0.8.0-scorch/go.mod new file mode 100644 index 00000000000..e875512c036 --- /dev/null +++ b/engines/bleve-0.8.0-scorch/go.mod @@ -0,0 +1,35 @@ +module github.com/mosuka/blevesample + +go 1.13 + +require ( + github.com/RoaringBitmap/roaring v0.4.20 // indirect + github.com/blevesearch/bleve v0.8.0 + github.com/blevesearch/blevex v0.0.0-20190916190636-152f0fe5c040 // indirect + github.com/blevesearch/cld2 v0.0.0-20150916130542-10f17c049ec9 // indirect + github.com/blevesearch/go-porterstemmer v1.0.2 // indirect + github.com/blevesearch/segment v0.0.0-20160915185041-762005e7a34f // indirect + github.com/blevesearch/snowballstem v0.0.0-20180110192139-26b06a2c243d // indirect + github.com/couchbase/ghistogram v0.0.0-20170308220240-d910dd063dd6 // indirect + github.com/couchbase/moss v0.0.0-20190322010551-a0cae174c498 // indirect + github.com/couchbase/vellum v0.0.0-20190823171024-95128b2d4edb // indirect + github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d // indirect + github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect + github.com/cznic/strutil v0.0.0-20181122101858-275e90344537 // indirect + github.com/edsrzf/mmap-go v1.0.0 // indirect + github.com/etcd-io/bbolt v1.3.3 // indirect + github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51 // indirect + github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 // indirect + github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870 // indirect + github.com/golang/protobuf v1.3.2 // indirect + github.com/ikawaha/kagome.ipadic v1.1.0 // indirect + github.com/jmhodges/levigo v1.0.0 // indirect + github.com/remyoudompheng/bigfft v0.0.0-20190728182440-6a916e37a237 // indirect + github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2 // indirect + github.com/syndtr/goleveldb v1.0.0 // indirect + github.com/tebeka/snowball v0.3.0 // indirect + github.com/tecbot/gorocksdb v0.0.0-20190705090504-162552197222 // indirect + go.etcd.io/bbolt v1.3.3 // indirect + golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3 // indirect + golang.org/x/text v0.3.2 // indirect +) diff --git a/engines/bleve-0.8.0-scorch/go.sum b/engines/bleve-0.8.0-scorch/go.sum new file mode 100644 index 00000000000..e04e94d718b --- /dev/null +++ b/engines/bleve-0.8.0-scorch/go.sum @@ -0,0 +1,114 @@ +github.com/RoaringBitmap/roaring v0.4.20 h1:PKmAFTkw47a5khFKgTdu64iObahLTBwTJnVOCN9dg3M= +github.com/RoaringBitmap/roaring v0.4.20/go.mod h1:D3qVegWTmfCaX4Bl5CrBE9hfrSrrXIr8KVNvRsDi1NI= +github.com/blevesearch/bleve v0.8.0 h1:DCoCrxscCXrlzVWK92k7Vq4d28lTAFuigVmcgIX0VCo= +github.com/blevesearch/bleve v0.8.0/go.mod h1:Y2lmIkzV6mcNfAnAdOd+ZxHkHchhBfU/xroGIp61wfw= +github.com/blevesearch/blevex v0.0.0-20190916190636-152f0fe5c040 h1:SjYVcfJVZoCfBlg+fkaq2eoZHTf5HaJfaTeTkOtyfHQ= +github.com/blevesearch/blevex v0.0.0-20190916190636-152f0fe5c040/go.mod h1:WH+MU2F4T0VmSdaPX+Wu5GYoZBrYWdOZWSjzvYcDmqQ= +github.com/blevesearch/cld2 v0.0.0-20150916130542-10f17c049ec9 h1:ZPImXwzC+ICkkSYlPP9mMVgQlZH24+56rIEUjVxfFnY= +github.com/blevesearch/cld2 v0.0.0-20150916130542-10f17c049ec9/go.mod h1:PN0QNTLs9+j1bKy3d/GB/59wsNBFC4sWLWG3k69lWbc= +github.com/blevesearch/go-porterstemmer v1.0.2 h1:qe7n69gBd1OLY5sHKnxQHIbzn0LNJA4hpAf+5XDxV2I= +github.com/blevesearch/go-porterstemmer v1.0.2/go.mod h1:haWQqFT3RdOGz7PJuM3or/pWNJS1pKkoZJWCkWu0DVA= +github.com/blevesearch/segment v0.0.0-20160915185041-762005e7a34f h1:kqbi9lqXLLs+zfWlgo1PIiRQ86n33K1JKotjj4rSYOg= +github.com/blevesearch/segment v0.0.0-20160915185041-762005e7a34f/go.mod h1:IInt5XRvpiGE09KOk9mmCMLjHhydIhNPKPPFLFBB7L8= +github.com/blevesearch/snowballstem v0.0.0-20180110192139-26b06a2c243d h1:iPCfLXcTYDotqO1atEOQyoRDwlGaZVuMI4wSaKQlI2I= +github.com/blevesearch/snowballstem v0.0.0-20180110192139-26b06a2c243d/go.mod h1:cdytUvf6FKWA9NpXJihYdZq8TN2AiQ5HOS0UZUz0C9g= +github.com/couchbase/ghistogram v0.0.0-20170308220240-d910dd063dd6 h1:T7Qykid5GIoDEVTZL0NcbimcT2qmzjo5mNGhe8i0/5M= +github.com/couchbase/ghistogram v0.0.0-20170308220240-d910dd063dd6/go.mod h1:s1Jhy76zqfEecpNWJfWUiKZookAFaiGOEoyzgHt9i7k= +github.com/couchbase/moss v0.0.0-20190322010551-a0cae174c498 h1:b8rnI4JWbakUNfpmYDxGobTY/jTuF5zHLw0ID75yzuM= +github.com/couchbase/moss v0.0.0-20190322010551-a0cae174c498/go.mod h1:mGI1GcdgmlL3Imff7Z+OjkkQ8qSKr443BuZ+qFgWbPQ= +github.com/couchbase/vellum v0.0.0-20190823171024-95128b2d4edb h1:KGkbXeg7OEi/415VIYCnpXW9KdZBXzZCsw9jbC6xAAo= +github.com/couchbase/vellum v0.0.0-20190823171024-95128b2d4edb/go.mod h1:prYTC8EgTu3gwbqJihkud9zRXISvyulAplQ6exdCo1g= +github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d h1:SwD98825d6bdB+pEuTxWOXiSjBrHdOl/UVp75eI7JT8= +github.com/cznic/b v0.0.0-20181122101859-a26611c4d92d/go.mod h1:URriBxXwVq5ijiJ12C7iIZqlA69nTlI+LgI6/pwftG8= +github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 h1:iwZdTE0PVqJCos1vaoKsclOGD3ADKpshg3SRtYBbwso= +github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548/go.mod h1:e6NPNENfs9mPDVNRekM7lKScauxd5kXTr1Mfyig6TDM= +github.com/cznic/strutil v0.0.0-20181122101858-275e90344537 h1:MZRmHqDBd0vxNwenEbKSQqRVT24d3C05ft8kduSwlqM= +github.com/cznic/strutil v0.0.0-20181122101858-275e90344537/go.mod h1:AHHPPPXTw0h6pVabbcbyGRK1DckRn7r/STdZEeIDzZc= +github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8= +github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/edsrzf/mmap-go v1.0.0 h1:CEBF7HpRnUCSJgGUb5h1Gm7e3VkmVDrR8lvWVLtrOFw= +github.com/edsrzf/mmap-go v1.0.0/go.mod h1:YO35OhQPt3KJa3ryjFM5Bs14WD66h8eGKpfaBNrHW5M= +github.com/etcd-io/bbolt v1.3.3 h1:gSJmxrs37LgTqR/oyJBWok6k6SvXEUerFTbltIhXkBM= +github.com/etcd-io/bbolt v1.3.3/go.mod h1:ZF2nL25h33cCyBtcyWeZ2/I3HQOfTP+0PIEvHjkjCrw= +github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51 h1:0JZ+dUmQeA8IIVUMzysrX4/AKuQwWhV2dYQuPZdvdSQ= +github.com/facebookgo/ensure v0.0.0-20160127193407-b4ab57deab51/go.mod h1:Yg+htXGokKKdzcwhuNDwVvN+uBxDGXJ7G/VN1d8fa64= +github.com/facebookgo/stack v0.0.0-20160209184415-751773369052 h1:JWuenKqqX8nojtoVVWjGfOF9635RETekkoH6Cc9SX0A= +github.com/facebookgo/stack v0.0.0-20160209184415-751773369052/go.mod h1:UbMTZqLaRiH3MsBH8va0n7s1pQYcu3uTb8G4tygF4Zg= +github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870 h1:E2s37DuLxFhQDg5gKsWoLBOB0n+ZW8s599zru8FJ2/Y= +github.com/facebookgo/subset v0.0.0-20150612182917-8dac2c3c4870/go.mod h1:5tD+neXqOorC30/tWg0LCSkrqj/AR6gu8yY8/fpw1q0= +github.com/fsnotify/fsnotify v1.4.7 h1:IXs+QLmnXW2CcXuY+8Mzv/fWEsPGWxqefPtCP5CnV9I= +github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo= +github.com/glycerine/go-unsnap-stream v0.0.0-20181221182339-f9677308dec2 h1:Ujru1hufTHVb++eG6OuNDKMxZnGIvF6o/u8q/8h2+I4= +github.com/glycerine/go-unsnap-stream v0.0.0-20181221182339-f9677308dec2/go.mod h1:/20jfyN9Y5QPEAprSgKAUr+glWDY39ZiUEAYOEv5dsE= +github.com/glycerine/goconvey v0.0.0-20180728074245-46e3a41ad493 h1:OTanQnFt0bi5iLFSdbEVA/idR6Q2WhCm+deb7ir2CcM= +github.com/glycerine/goconvey v0.0.0-20180728074245-46e3a41ad493/go.mod h1:Ogl1Tioa0aV7gstGFO7KhffUsb9M4ydbEbbxpcEDc24= +github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/protobuf v1.3.2 h1:6nsPYzhq5kReh6QImI3k5qWzO4PEbvbIW2cwSfR/6xs= +github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U= +github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db h1:woRePGFeVFfLKN/pOkfl+p/TAqKOfFu+7KPlMVpok/w= +github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/golang/snappy v0.0.1 h1:Qgr9rKW7uDUkrbSmQeiDsGa8SjGyCOGtuasMWwvp2P4= +github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q= +github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1 h1:EGx4pi6eqNxGaHF6qqu48+N2wcFQ5qg5FXgOdqsJ5d8= +github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= +github.com/hpcloud/tail v1.0.0 h1:nfCOvKYfkgYP8hkirhJocXT2+zOD8yUNjXaWfTlyFKI= +github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU= +github.com/ikawaha/kagome.ipadic v1.1.0 h1:9hzwhcklEL4Cmp+lM9HQfmDg2nhB43Fe1n9UUY6mifY= +github.com/ikawaha/kagome.ipadic v1.1.0/go.mod h1:DPSBbU0czaJhAb/5uKQZHMc9MTVRpDugJfX+HddPHHg= +github.com/jmhodges/levigo v1.0.0 h1:q5EC36kV79HWeTBWsod3mG11EgStG3qArTKcvlksN1U= +github.com/jmhodges/levigo v1.0.0/go.mod h1:Q6Qx+uH3RAqyK4rFQroq9RL7mdkABMcfhEI+nNuzMJQ= +github.com/jtolds/gls v4.20.0+incompatible h1:xdiiI2gbIgH/gLH7ADydsJ1uDOEzR8yvV7C0MuV77Wo= +github.com/jtolds/gls v4.20.0+incompatible/go.mod h1:QJZ7F/aHp+rZTRtaJ1ow/lLfFfVYBRgL+9YlvaHOwJU= +github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae h1:VeRdUYdCw49yizlSbMEn2SZ+gT+3IUKx8BqxyQdz+BY= +github.com/mschoch/smat v0.0.0-20160514031455-90eadee771ae/go.mod h1:qAyveg+e4CE+eKJXWVjKXM4ck2QobLqTDytGJbLLhJg= +github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/ginkgo v1.7.0 h1:WSHQ+IS43OoUrWtD1/bbclrwK8TTH5hzp+umCiuxHgs= +github.com/onsi/ginkgo v1.7.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE= +github.com/onsi/gomega v1.4.3 h1:RE1xgDvH7imwFD45h+u2SgIfERHlS2yNG4DObb5BSKU= +github.com/onsi/gomega v1.4.3/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY= +github.com/philhofer/fwd v1.0.0 h1:UbZqGr5Y38ApvM/V/jEljVxwocdweyH+vmYvRPBnbqQ= +github.com/philhofer/fwd v1.0.0/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/remyoudompheng/bigfft v0.0.0-20190728182440-6a916e37a237 h1:HQagqIiBmr8YXawX/le3+O26N+vPPC1PtjaF3mwnook= +github.com/remyoudompheng/bigfft v0.0.0-20190728182440-6a916e37a237/go.mod h1:qqbHyh8v60DhA7CoWK5oRCqLrMHRGoxYCSS9EjAz6Eo= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d h1:zE9ykElWQ6/NYmHa3jpm/yHnI4xSofP+UP6SpjHcSeM= +github.com/smartystreets/assertions v0.0.0-20180927180507-b2de0cb4f26d/go.mod h1:OnSkiWE9lh6wB0YB77sQom3nweQdgAjqCqsofrRNTgc= +github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff h1:86HlEv0yBCry9syNuylzqznKXDK11p6D0DT596yNMys= +github.com/smartystreets/goconvey v0.0.0-20190306220146-200a235640ff/go.mod h1:KSQcGKpxUMHk3nbYzs/tIBAM2iDooCn0BmttHOJEbLs= +github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2 h1:JNEGSiWg6D3lcBCMCBqN3ELniXujt+0QNHLhNnO0w3s= +github.com/steveyen/gtreap v0.0.0-20150807155958-0abe01ef9be2/go.mod h1:mjqs7N0Q6m5HpR7QfXVBZXZWSqTjQLeTujjA/xUp2uw= +github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME= +github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q= +github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI= +github.com/syndtr/goleveldb v1.0.0 h1:fBdIW9lB4Iz0n9khmH8w27SJ3QEJ7+IgjPEwGSZiFdE= +github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ= +github.com/tebeka/snowball v0.3.0 h1:/vP76OjIhZrXtcmBmQgQ986B/WM95MB4tdLEuWdDgZk= +github.com/tebeka/snowball v0.3.0/go.mod h1:4IfL14h1lvwZcp1sfXuuc7/7yCsvVffTWxWxCLfFpYg= +github.com/tecbot/gorocksdb v0.0.0-20190705090504-162552197222 h1:FLimlAjzuhq8loeLX7lLhKKeUgpA/4slynlNVB/Qaks= +github.com/tecbot/gorocksdb v0.0.0-20190705090504-162552197222/go.mod h1:ahpPrc7HpcfEWDQRZEmnXMzHY03mLDYMCxeDzy46i+8= +github.com/tinylib/msgp v1.1.0 h1:9fQd+ICuRIu/ue4vxJZu6/LzxN0HwMds2nq/0cFvxHU= +github.com/tinylib/msgp v1.1.0/go.mod h1:+d+yLhGm8mzTaHzB+wgMYrodPfmZrzkirds8fDWklFE= +github.com/willf/bitset v1.1.10 h1:NotGKqX0KwQ72NUzqrjZq5ipPNDQex9lo3WpaS8L2sc= +github.com/willf/bitset v1.1.10/go.mod h1:RjeCKbqT1RxIR/KWY6phxZiaY1IyutSBfGjNPySAYV4= +go.etcd.io/bbolt v1.3.3 h1:MUGmc65QhB3pIlaQ5bB4LwqSj6GIonVJXpZiaKNyaKk= +go.etcd.io/bbolt v1.3.3/go.mod h1:IbVyRI1SCnLcuJnV2u8VeU0CEYM7e686BmAb1XKL+uU= +golang.org/x/net v0.0.0-20180906233101-161cd47e91fd h1:nTDtHvHSdCn1m6ITfMRqtOd/9+7a3s8RBNOZ3eYZzJA= +golang.org/x/net v0.0.0-20180906233101-161cd47e91fd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4= +golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= +golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e h1:o3PsSEY8E4eXWkXrIP9YJALUkVZqzHJT5DOasTyn8Vs= +golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= +golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3 h1:7TYNF4UdlohbFwpNH04CoPMp1cHUZgO1Ebq5r2hIjfo= +golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs= +golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= +golang.org/x/text v0.3.2 h1:tW2bmiBqwgJj/UpqtC8EpXEZVYOwU0yG4iWbprSVAcs= +golang.org/x/text v0.3.2/go.mod h1:bEr9sfX3Q8Zfm5fL9x+3itogRgK3+ptLWKqgva+5dAk= +golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM= +gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0= +gopkg.in/fsnotify.v1 v1.4.7 h1:xOHLXZwVvI9hhs+cLKq5+I5onOuwQLhQwiu63xxlHs4= +gopkg.in/fsnotify.v1 v1.4.7/go.mod h1:Tz8NjZHkW78fSQdbUxIjBTcgA1z1m8ZHf0WmKUhAMys= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 h1:uRGJdciOHaEIrze2W8Q3AKkepLTh2hOroT7a+7czfdQ= +gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7/go.mod h1:dt/ZhP58zS4L8KSrWDmTeBkI65Dw0HsyUHuEVlX15mw= +gopkg.in/yaml.v2 v2.2.1 h1:mUhvW9EsL+naU5Q3cakzfE91YhliOondGd6ZrsDBHQE= +gopkg.in/yaml.v2 v2.2.1/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= diff --git a/engines/lucene-7.2.1/Makefile b/engines/lucene-7.2.1/Makefile new file mode 100644 index 00000000000..7d4b98e376c --- /dev/null +++ b/engines/lucene-7.2.1/Makefile @@ -0,0 +1,19 @@ +clean: + @echo "--- Cleaning Lucene 7.2.1 ---" + @rm -fr idx + @rm -fr build + +compile: build + +serve: + @java -cp build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar DoQuery idx + +index: idx + +build: + @echo "--- Building Lucene 7.2.1 ---" + @gradle clean shadowJar + +idx: build + @echo "--- Indexing Lucene 7.2.1 ---" + java -server -cp build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar BuildIndex idx < $(CORPUS) diff --git a/lucene/build.gradle b/engines/lucene-7.2.1/build.gradle similarity index 88% rename from lucene/build.gradle rename to engines/lucene-7.2.1/build.gradle index 0aef4f8d35a..dc0f0c4e646 100644 --- a/lucene/build.gradle +++ b/engines/lucene-7.2.1/build.gradle @@ -1,5 +1,5 @@ plugins { - id 'com.github.johnrengelman.shadow' version '2.0.2' + id 'com.github.johnrengelman.shadow' version '5.1.0' id 'java' } diff --git a/engines/lucene-7.2.1/gradle/wrapper/gradle-wrapper.jar b/engines/lucene-7.2.1/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 00000000000..bd735b52d07 Binary files /dev/null and b/engines/lucene-7.2.1/gradle/wrapper/gradle-wrapper.jar differ diff --git a/engines/lucene-7.2.1/gradle/wrapper/gradle-wrapper.properties b/engines/lucene-7.2.1/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000000..149c82fe4a0 --- /dev/null +++ b/engines/lucene-7.2.1/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Sun Feb 18 13:18:03 JST 2018 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-bin.zip diff --git a/engines/lucene-7.2.1/gradlew b/engines/lucene-7.2.1/gradlew new file mode 100755 index 00000000000..cccdd3d517f --- /dev/null +++ b/engines/lucene-7.2.1/gradlew @@ -0,0 +1,172 @@ +#!/usr/bin/env sh + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS="" + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=$(save "$@") + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong +if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then + cd "$(dirname "$0")" +fi + +exec "$JAVACMD" "$@" diff --git a/engines/lucene-7.2.1/gradlew.bat b/engines/lucene-7.2.1/gradlew.bat new file mode 100644 index 00000000000..e95643d6a2c --- /dev/null +++ b/engines/lucene-7.2.1/gradlew.bat @@ -0,0 +1,84 @@ +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windows variants + +if not "%OS%" == "Windows_NT" goto win9xME_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/engines/lucene-7.2.1/query b/engines/lucene-7.2.1/query new file mode 100755 index 00000000000..cb4d24f47a2 --- /dev/null +++ b/engines/lucene-7.2.1/query @@ -0,0 +1,4 @@ +#!/bin/bash + +SCRIPT_PATH=${0%/*} +cd $SCRIPT_PATH && java -cp ${SCRIPT_PATH}/build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar DoQuery index diff --git a/engines/lucene-7.2.1/query.sh b/engines/lucene-7.2.1/query.sh new file mode 100755 index 00000000000..cb4d24f47a2 --- /dev/null +++ b/engines/lucene-7.2.1/query.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +SCRIPT_PATH=${0%/*} +cd $SCRIPT_PATH && java -cp ${SCRIPT_PATH}/build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar DoQuery index diff --git a/lucene/settings.gradle b/engines/lucene-7.2.1/settings.gradle similarity index 100% rename from lucene/settings.gradle rename to engines/lucene-7.2.1/settings.gradle diff --git a/lucene/src/main/java/BuildIndex.java b/engines/lucene-7.2.1/src/main/java/BuildIndex.java similarity index 52% rename from lucene/src/main/java/BuildIndex.java rename to engines/lucene-7.2.1/src/main/java/BuildIndex.java index 6be5e65939b..c4e45b59854 100644 --- a/lucene/src/main/java/BuildIndex.java +++ b/engines/lucene-7.2.1/src/main/java/BuildIndex.java @@ -19,47 +19,38 @@ public static void main(String[] args) throws IOException { final StandardAnalyzer standardAnalyzer = new StandardAnalyzer(CharArraySet.EMPTY_SET); final IndexWriterConfig config = new IndexWriterConfig(standardAnalyzer); + config.setRAMBufferSizeMB(1000); try (IndexWriter writer = new IndexWriter(FSDirectory.open(outputPath), config)) { try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in))) { final Document document = new Document(); - LongPoint idPoint = new LongPoint("id", 0L); - StoredField idField = new StoredField("id", 0L); - TextField titleField = new TextField("title", "", Field.Store.YES); - TextField allField = new TextField("all", "", Field.Store.NO); - document.add(idPoint); + StoredField idField = new StoredField("id", ""); + IntPoint idNumField = new IntPoint("id_num", 0); + TextField textField = new TextField("text", "", Field.Store.NO); + document.add(idField); - document.add(titleField); - document.add(allField); + document.add(idNumField); + document.add(textField); String line; while ((line = bufferedReader.readLine()) != null) { if (line.trim().isEmpty()) { continue; } - final JsonObject parsed_doc = Json.parse(line).asObject(); - final String url = parsed_doc.get("url").asString(); - - final String urlPrefix = "https://en.wikipedia.org/wiki?curid="; - if (url.startsWith(urlPrefix)) { - try { - final long doc_id = Long.parseLong(url.substring(urlPrefix.length())); - idPoint.setLongValue(doc_id); - idField.setLongValue(doc_id); - final String title = parsed_doc.get("title").asString(); - titleField.setStringValue(title); - final String body = parsed_doc.get("body").asString(); - allField.setStringValue(title + "\n" + body); - writer.addDocument(document); - } catch (NumberFormatException e) { - continue; - } - } + final String id = parsed_doc.get("id").asString(); + final int id_num = parsed_doc.get("id_num").asInt(); + final String text = parsed_doc.get("text").asString(); + idField.setStringValue(id); + idNumField.setIntValue(id_num); + textField.setStringValue(text); + writer.addDocument(document); } } writer.commit(); + System.out.println("Merging"); + writer.forceMerge(1, true); } } } diff --git a/engines/lucene-7.2.1/src/main/java/DoQuery.java b/engines/lucene-7.2.1/src/main/java/DoQuery.java new file mode 100644 index 00000000000..2840a98508f --- /dev/null +++ b/engines/lucene-7.2.1/src/main/java/DoQuery.java @@ -0,0 +1,62 @@ +import org.apache.lucene.analysis.CharArraySet; +import org.apache.lucene.analysis.standard.StandardAnalyzer; +import org.apache.lucene.index.DirectoryReader; +import org.apache.lucene.index.IndexReader; +import org.apache.lucene.queryparser.classic.ParseException; +import org.apache.lucene.queryparser.classic.QueryParser; +import org.apache.lucene.search.*; +import org.apache.lucene.store.FSDirectory; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; +import java.nio.file.Path; +import java.nio.file.Paths; + +public class DoQuery { + public static void main(String[] args) throws IOException, ParseException { + final Path indexDir = Paths.get(args[0]); + try (IndexReader reader = DirectoryReader.open(FSDirectory.open(indexDir))) { + final IndexSearcher searcher = new IndexSearcher(reader); + searcher.setQueryCache(null); + try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in))) { + final QueryParser queryParser = new QueryParser("text", new StandardAnalyzer(CharArraySet.EMPTY_SET)); + String line; + while ((line = bufferedReader.readLine()) != null) { + final String[] fields = line.trim().split("\t"); + assert fields.length == 2; + final String command = fields[0]; + final String query_str = fields[1]; + Query query = queryParser + .parse(query_str) + .rewrite(reader); + final int count; + final TotalHitCountCollector countCollector = new TotalHitCountCollector(); + switch (command) { + case "COUNT": + count = searcher.count(query); + break; + case "TOP_10": + { + final TopScoreDocCollector topScoreDocCollector = TopScoreDocCollector.create(10); + searcher.search(query, topScoreDocCollector); + count = 1; + } + break; + case "TOP_10_COUNT": + { + final TopDocs topDocs = searcher.search(query, 10); + count = (int)topDocs.totalHits; + } + break; + default: + System.out.println("UNSUPPORTED"); + count = 0; + break; + } + System.out.println(count); + } + } + } + } +} diff --git a/engines/lucene-8.0.0/Makefile b/engines/lucene-8.0.0/Makefile new file mode 100644 index 00000000000..7e0c56f4e38 --- /dev/null +++ b/engines/lucene-8.0.0/Makefile @@ -0,0 +1,19 @@ +clean: + @echo "--- Cleaning Lucene 8.0.0 ---" + @rm -fr idx + @rm -fr build + +compile: build + +serve: + @java -cp build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar DoQuery idx + +index: idx + +build: + @echo "--- Building Lucene 8.0.0 ---" + @gradle clean shadowJar + +idx: build + @echo "--- Indexing Lucene 8.0.0 ---" + java -server -cp build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar BuildIndex idx < $(CORPUS) diff --git a/engines/lucene-8.0.0/build.gradle b/engines/lucene-8.0.0/build.gradle new file mode 100644 index 00000000000..231248437e7 --- /dev/null +++ b/engines/lucene-8.0.0/build.gradle @@ -0,0 +1,22 @@ +plugins { + id 'com.github.johnrengelman.shadow' version '5.1.0' + id 'java' +} + +version '1.0-SNAPSHOT' + +sourceCompatibility = 1.8 + +repositories { + mavenCentral() +} + +dependencies { + compile 'org.apache.lucene:lucene-core:8.0.0' + compile 'org.apache.lucene:lucene-analyzers-common:8.0.0' + compile 'org.apache.lucene:lucene-queryparser:8.0.0' + + compile group: 'com.eclipsesource.minimal-json', name: 'minimal-json', version: '0.9.5' + + testCompile group: 'junit', name: 'junit', version: '4.12' +} \ No newline at end of file diff --git a/engines/lucene-8.0.0/gradle/wrapper/gradle-wrapper.jar b/engines/lucene-8.0.0/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 00000000000..bd735b52d07 Binary files /dev/null and b/engines/lucene-8.0.0/gradle/wrapper/gradle-wrapper.jar differ diff --git a/engines/lucene-8.0.0/gradle/wrapper/gradle-wrapper.properties b/engines/lucene-8.0.0/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000000..149c82fe4a0 --- /dev/null +++ b/engines/lucene-8.0.0/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Sun Feb 18 13:18:03 JST 2018 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-bin.zip diff --git a/engines/lucene-8.0.0/query.sh b/engines/lucene-8.0.0/query.sh new file mode 100755 index 00000000000..cb4d24f47a2 --- /dev/null +++ b/engines/lucene-8.0.0/query.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +SCRIPT_PATH=${0%/*} +cd $SCRIPT_PATH && java -cp ${SCRIPT_PATH}/build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar DoQuery index diff --git a/engines/lucene-8.0.0/settings.gradle b/engines/lucene-8.0.0/settings.gradle new file mode 100644 index 00000000000..c353c9181e9 --- /dev/null +++ b/engines/lucene-8.0.0/settings.gradle @@ -0,0 +1,2 @@ +rootProject.name = 'search-index-benchmark-game-lucene' + diff --git a/engines/lucene-8.0.0/src/main/java/BuildIndex.java b/engines/lucene-8.0.0/src/main/java/BuildIndex.java new file mode 100644 index 00000000000..c4e45b59854 --- /dev/null +++ b/engines/lucene-8.0.0/src/main/java/BuildIndex.java @@ -0,0 +1,56 @@ +import com.eclipsesource.json.Json; +import com.eclipsesource.json.JsonObject; +import org.apache.lucene.analysis.CharArraySet; +import org.apache.lucene.analysis.standard.StandardAnalyzer; +import org.apache.lucene.document.*; +import org.apache.lucene.index.IndexWriter; +import org.apache.lucene.index.IndexWriterConfig; +import org.apache.lucene.store.FSDirectory; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; +import java.nio.file.Path; +import java.nio.file.Paths; + +public class BuildIndex { + public static void main(String[] args) throws IOException { + final Path outputPath = Paths.get(args[0]); + + final StandardAnalyzer standardAnalyzer = new StandardAnalyzer(CharArraySet.EMPTY_SET); + final IndexWriterConfig config = new IndexWriterConfig(standardAnalyzer); + config.setRAMBufferSizeMB(1000); + try (IndexWriter writer = new IndexWriter(FSDirectory.open(outputPath), config)) { + try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in))) { + final Document document = new Document(); + + StoredField idField = new StoredField("id", ""); + IntPoint idNumField = new IntPoint("id_num", 0); + TextField textField = new TextField("text", "", Field.Store.NO); + + document.add(idField); + document.add(idNumField); + document.add(textField); + + String line; + while ((line = bufferedReader.readLine()) != null) { + if (line.trim().isEmpty()) { + continue; + } + final JsonObject parsed_doc = Json.parse(line).asObject(); + final String id = parsed_doc.get("id").asString(); + final int id_num = parsed_doc.get("id_num").asInt(); + final String text = parsed_doc.get("text").asString(); + idField.setStringValue(id); + idNumField.setIntValue(id_num); + textField.setStringValue(text); + writer.addDocument(document); + } + } + + writer.commit(); + System.out.println("Merging"); + writer.forceMerge(1, true); + } + } +} diff --git a/engines/lucene-8.0.0/src/main/java/DoQuery.java b/engines/lucene-8.0.0/src/main/java/DoQuery.java new file mode 100644 index 00000000000..3af2935a9f8 --- /dev/null +++ b/engines/lucene-8.0.0/src/main/java/DoQuery.java @@ -0,0 +1,63 @@ +import org.apache.lucene.analysis.CharArraySet; +import org.apache.lucene.analysis.standard.StandardAnalyzer; +import org.apache.lucene.index.DirectoryReader; +import org.apache.lucene.index.IndexReader; +import org.apache.lucene.queryparser.classic.ParseException; +import org.apache.lucene.queryparser.classic.QueryParser; +import org.apache.lucene.search.*; +import org.apache.lucene.store.FSDirectory; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; +import java.nio.file.Path; +import java.nio.file.Paths; + +public class DoQuery { + public static void main(String[] args) throws IOException, ParseException { + final Path indexDir = Paths.get(args[0]); + try (IndexReader reader = DirectoryReader.open(FSDirectory.open(indexDir))) { + final IndexSearcher searcher = new IndexSearcher(reader); + searcher.setQueryCache(null); + try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in))) { + final QueryParser queryParser = new QueryParser("text", new StandardAnalyzer(CharArraySet.EMPTY_SET)); + String line; + while ((line = bufferedReader.readLine()) != null) { + final String[] fields = line.trim().split("\t"); + assert fields.length == 2; + final String command = fields[0]; + final String query_str = fields[1]; + Query query = queryParser + .parse(query_str) + .rewrite(reader); + final int count; + final TotalHitCountCollector countCollector = new TotalHitCountCollector(); + switch (command) { + case "COUNT": + count = searcher.count(query); + break; + case "TOP_10": + { + + final TopDocs topDocs = searcher.search(query, 10); + count = 1; + } + break; + case "TOP_10_COUNT": + { + final TopScoreDocCollector topScoreDocCollector = TopScoreDocCollector.create(10, Integer.MAX_VALUE); + searcher.search(query, topScoreDocCollector); + count = topScoreDocCollector.getTotalHits(); + } + break; + default: + System.out.println("UNSUPPORTED"); + count = 0; + break; + } + System.out.println(count); + } + } + } + } +} diff --git a/engines/lucene-8.10.1/Makefile b/engines/lucene-8.10.1/Makefile new file mode 100644 index 00000000000..4e7d1e338f3 --- /dev/null +++ b/engines/lucene-8.10.1/Makefile @@ -0,0 +1,19 @@ +clean: + @echo "--- Cleaning Lucene 8.4.0 ---" + @rm -fr idx + @rm -fr build + +compile: build + +serve: + @java -cp build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar DoQuery idx + +index: idx + +build: + @echo "--- Building Lucene 8.4.0 ---" + @gradle clean shadowJar + +idx: build + @echo "--- Indexing Lucene 8.4.0 ---" + java -server -cp build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar BuildIndex idx < $(CORPUS) diff --git a/engines/lucene-8.10.1/build.gradle b/engines/lucene-8.10.1/build.gradle new file mode 100644 index 00000000000..16d575acd8f --- /dev/null +++ b/engines/lucene-8.10.1/build.gradle @@ -0,0 +1,19 @@ +plugins { + id 'com.github.johnrengelman.shadow' version '5.1.0' + id 'java' +} + +version '1.0-SNAPSHOT' + +sourceCompatibility = 1.8 + +repositories { + mavenCentral() +} + +dependencies { + implementation group: 'org.apache.lucene', name: 'lucene-core', version: '8.10.1' + implementation group: 'org.apache.lucene', name: 'lucene-analyzers-common', version: '8.10.1' + implementation group: 'org.apache.lucene', name: 'lucene-queryparser', version: '8.10.1' + implementation group: 'com.eclipsesource.minimal-json', name: 'minimal-json', version: '0.9.5' +} diff --git a/engines/lucene-8.10.1/gradle/wrapper/gradle-wrapper.jar b/engines/lucene-8.10.1/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 00000000000..bd735b52d07 Binary files /dev/null and b/engines/lucene-8.10.1/gradle/wrapper/gradle-wrapper.jar differ diff --git a/engines/lucene-8.10.1/gradle/wrapper/gradle-wrapper.properties b/engines/lucene-8.10.1/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 00000000000..149c82fe4a0 --- /dev/null +++ b/engines/lucene-8.10.1/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Sun Feb 18 13:18:03 JST 2018 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-4.0-bin.zip diff --git a/engines/lucene-8.10.1/query.sh b/engines/lucene-8.10.1/query.sh new file mode 100755 index 00000000000..cb4d24f47a2 --- /dev/null +++ b/engines/lucene-8.10.1/query.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +SCRIPT_PATH=${0%/*} +cd $SCRIPT_PATH && java -cp ${SCRIPT_PATH}/build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar DoQuery index diff --git a/engines/lucene-8.10.1/settings.gradle b/engines/lucene-8.10.1/settings.gradle new file mode 100644 index 00000000000..c353c9181e9 --- /dev/null +++ b/engines/lucene-8.10.1/settings.gradle @@ -0,0 +1,2 @@ +rootProject.name = 'search-index-benchmark-game-lucene' + diff --git a/engines/lucene-8.10.1/src/main/java/BuildIndex.java b/engines/lucene-8.10.1/src/main/java/BuildIndex.java new file mode 100644 index 00000000000..c4e45b59854 --- /dev/null +++ b/engines/lucene-8.10.1/src/main/java/BuildIndex.java @@ -0,0 +1,56 @@ +import com.eclipsesource.json.Json; +import com.eclipsesource.json.JsonObject; +import org.apache.lucene.analysis.CharArraySet; +import org.apache.lucene.analysis.standard.StandardAnalyzer; +import org.apache.lucene.document.*; +import org.apache.lucene.index.IndexWriter; +import org.apache.lucene.index.IndexWriterConfig; +import org.apache.lucene.store.FSDirectory; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; +import java.nio.file.Path; +import java.nio.file.Paths; + +public class BuildIndex { + public static void main(String[] args) throws IOException { + final Path outputPath = Paths.get(args[0]); + + final StandardAnalyzer standardAnalyzer = new StandardAnalyzer(CharArraySet.EMPTY_SET); + final IndexWriterConfig config = new IndexWriterConfig(standardAnalyzer); + config.setRAMBufferSizeMB(1000); + try (IndexWriter writer = new IndexWriter(FSDirectory.open(outputPath), config)) { + try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in))) { + final Document document = new Document(); + + StoredField idField = new StoredField("id", ""); + IntPoint idNumField = new IntPoint("id_num", 0); + TextField textField = new TextField("text", "", Field.Store.NO); + + document.add(idField); + document.add(idNumField); + document.add(textField); + + String line; + while ((line = bufferedReader.readLine()) != null) { + if (line.trim().isEmpty()) { + continue; + } + final JsonObject parsed_doc = Json.parse(line).asObject(); + final String id = parsed_doc.get("id").asString(); + final int id_num = parsed_doc.get("id_num").asInt(); + final String text = parsed_doc.get("text").asString(); + idField.setStringValue(id); + idNumField.setIntValue(id_num); + textField.setStringValue(text); + writer.addDocument(document); + } + } + + writer.commit(); + System.out.println("Merging"); + writer.forceMerge(1, true); + } + } +} diff --git a/engines/lucene-8.10.1/src/main/java/DoQuery.java b/engines/lucene-8.10.1/src/main/java/DoQuery.java new file mode 100644 index 00000000000..3af2935a9f8 --- /dev/null +++ b/engines/lucene-8.10.1/src/main/java/DoQuery.java @@ -0,0 +1,63 @@ +import org.apache.lucene.analysis.CharArraySet; +import org.apache.lucene.analysis.standard.StandardAnalyzer; +import org.apache.lucene.index.DirectoryReader; +import org.apache.lucene.index.IndexReader; +import org.apache.lucene.queryparser.classic.ParseException; +import org.apache.lucene.queryparser.classic.QueryParser; +import org.apache.lucene.search.*; +import org.apache.lucene.store.FSDirectory; + +import java.io.BufferedReader; +import java.io.IOException; +import java.io.InputStreamReader; +import java.nio.file.Path; +import java.nio.file.Paths; + +public class DoQuery { + public static void main(String[] args) throws IOException, ParseException { + final Path indexDir = Paths.get(args[0]); + try (IndexReader reader = DirectoryReader.open(FSDirectory.open(indexDir))) { + final IndexSearcher searcher = new IndexSearcher(reader); + searcher.setQueryCache(null); + try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in))) { + final QueryParser queryParser = new QueryParser("text", new StandardAnalyzer(CharArraySet.EMPTY_SET)); + String line; + while ((line = bufferedReader.readLine()) != null) { + final String[] fields = line.trim().split("\t"); + assert fields.length == 2; + final String command = fields[0]; + final String query_str = fields[1]; + Query query = queryParser + .parse(query_str) + .rewrite(reader); + final int count; + final TotalHitCountCollector countCollector = new TotalHitCountCollector(); + switch (command) { + case "COUNT": + count = searcher.count(query); + break; + case "TOP_10": + { + + final TopDocs topDocs = searcher.search(query, 10); + count = 1; + } + break; + case "TOP_10_COUNT": + { + final TopScoreDocCollector topScoreDocCollector = TopScoreDocCollector.create(10, Integer.MAX_VALUE); + searcher.search(query, topScoreDocCollector); + count = topScoreDocCollector.getTotalHits(); + } + break; + default: + System.out.println("UNSUPPORTED"); + count = 0; + break; + } + System.out.println(count); + } + } + } + } +} diff --git a/engines/pisa-0.8.2/.clang-format b/engines/pisa-0.8.2/.clang-format new file mode 100644 index 00000000000..06738d38d4c --- /dev/null +++ b/engines/pisa-0.8.2/.clang-format @@ -0,0 +1,77 @@ +--- +AccessModifierOffset: '-2' +AlignAfterOpenBracket: AlwaysBreak +AlignConsecutiveAssignments: 'false' +AlignConsecutiveDeclarations: 'false' +AlignEscapedNewlines: Left +AlignOperands: 'false' +AlignTrailingComments: 'false' +AllowAllArgumentsOnNextLine: 'true' +AllowAllConstructorInitializersOnNextLine: 'true' +AllowAllParametersOfDeclarationOnNextLine: 'true' +AllowShortBlocksOnASingleLine: 'false' +AllowShortCaseLabelsOnASingleLine: 'true' +AllowShortFunctionsOnASingleLine: Inline +AllowShortIfStatementsOnASingleLine: Never +AllowShortLambdasOnASingleLine: All +AllowShortLoopsOnASingleLine: 'false' +AlwaysBreakAfterReturnType: None +AlwaysBreakBeforeMultilineStrings: 'true' +AlwaysBreakTemplateDeclarations: 'Yes' +BinPackArguments: 'false' +BinPackParameters: 'false' +BreakBeforeBinaryOperators: NonAssignment +BreakBeforeBraces: Custom +BreakBeforeTernaryOperators: 'true' +BreakConstructorInitializers: BeforeColon +BreakInheritanceList: BeforeColon +BraceWrapping: + AfterFunction: true + SplitEmptyFunction: false +ColumnLimit: '100' +CompactNamespaces: 'true' +ConstructorInitializerAllOnOneLineOrOnePerLine: 'true' +ConstructorInitializerIndentWidth: '4' +ContinuationIndentWidth: '4' +Cpp11BracedListStyle: 'true' +DerivePointerAlignment: 'false' +DisableFormat: 'false' +ExperimentalAutoDetectBinPacking: 'false' +FixNamespaceComments: 'true' +IncludeBlocks: Preserve +IndentCaseLabels: 'false' +IndentPPDirectives: BeforeHash +IndentWidth: '4' +IndentWrappedFunctionNames: 'false' +KeepEmptyLinesAtTheStartOfBlocks: 'false' +Language: Cpp +MaxEmptyLinesToKeep: '1' +NamespaceIndentation: Inner +PenaltyBreakAssignment: '1' +PenaltyBreakBeforeFirstCallParameter: '0' +PenaltyBreakComment: '0' +PenaltyBreakFirstLessLess: '1' +PenaltyBreakString: '2' +PenaltyExcessCharacter: '10' +PointerAlignment: Left +ReflowComments: 'true' +SortIncludes: 'true' +SortUsingDeclarations: 'true' +SpaceAfterLogicalNot: 'false' +SpaceAfterTemplateKeyword: 'true' +SpaceBeforeAssignmentOperators: 'true' +SpaceBeforeCpp11BracedList: 'false' +SpaceBeforeCtorInitializerColon: 'true' +SpaceBeforeInheritanceColon: 'false' +SpaceBeforeParens: ControlStatements +SpaceBeforeRangeBasedForLoopColon: 'false' +SpaceInEmptyParentheses: 'false' +SpacesBeforeTrailingComments: '2' +SpacesInAngles: 'false' +SpacesInCStyleCastParentheses: 'false' +SpacesInContainerLiterals: 'false' +SpacesInParentheses: 'false' +SpacesInSquareBrackets: 'false' +Standard: Cpp11 +UseTab: Never +... diff --git a/engines/pisa-0.8.2/.clang-tidy b/engines/pisa-0.8.2/.clang-tidy new file mode 100644 index 00000000000..e3b06eacc93 --- /dev/null +++ b/engines/pisa-0.8.2/.clang-tidy @@ -0,0 +1,26 @@ +--- +HeaderFilterRegex: '*.cpp' +FormatStyle: none +Checks: | + -*, + hicpp-use-auto, + hicpp-move-const-arg, + hicpp-deprecated-headers, + hicpp-explicit-conversions, + readability-braces-around-statements, + readability-else-after-return, + readability-implicit-bool-conversion, + readability-uppercase-literal-suffix, + readability-container-size-empty, + modernize-loop-convert, + modernize-use-equals-default, + modernize-use-using, + cppcoreguidelines-special-member-functions, + cppcoreguidelines-pro-type-member-init, + -hicpp-signed-bitwise, + -modernize-use-trailing-return-type, + -fuchsia-overloaded-operator, + -fuchsia-default-arguments-calls, + -fuchsia-trailing-return, + -llvm-header-guard, + -google-runtime-references diff --git a/engines/pisa-0.8.2/CMakeLists.txt b/engines/pisa-0.8.2/CMakeLists.txt new file mode 100644 index 00000000000..097a8f5cd04 --- /dev/null +++ b/engines/pisa-0.8.2/CMakeLists.txt @@ -0,0 +1,50 @@ +cmake_minimum_required(VERSION 3.0) + +project(PISA CXX C) + +set(CMAKE_CXX_STANDARD 17) +set(CMAKE_CXX_STANDARD_REQUIRED ON) +set(CMAKE_CXX_EXTENSIONS OFF) + +if(NOT CMAKE_BUILD_TYPE) + set(CMAKE_BUILD_TYPE "Release") +endif() +MESSAGE( STATUS "CMAKE_BUILD_TYPE: " ${CMAKE_BUILD_TYPE} ) + +set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin) + +if (UNIX) + # For hardware popcount and other special instructions + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -march=native") + # Extensive warnings + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wno-missing-braces") +endif() + +find_package(OpenMP) +if(OPENMP_FOUND) + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}") +endif() +set(THREADS_PREFER_PTHREAD_FLAG ON) +find_package(Threads REQUIRED) + +EXECUTE_PROCESS(COMMAND git submodule update --init + WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}/.. + OUTPUT_QUIET + ) + +# Add PISA +set(PISA_BUILD_TOOLS OFF CACHE BOOL "skip building") +set(PISA_ENABLE_TESTING OFF CACHE BOOL "skip testing") +set(PISA_ENABLE_BENCHMARKING OFF CACHE BOOL "skip benchmarking") +add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/pisa EXCLUDE_FROM_ALL) + +add_executable(build_index tools/build_index.cpp) +target_link_libraries(build_index + pisa + nlohmann_json +) + +add_executable(do_query tools/do_query.cpp) +target_link_libraries(do_query + pisa +) diff --git a/engines/pisa-0.8.2/Dockerfile b/engines/pisa-0.8.2/Dockerfile new file mode 100644 index 00000000000..2787f7d6944 --- /dev/null +++ b/engines/pisa-0.8.2/Dockerfile @@ -0,0 +1,21 @@ +FROM ubuntu:20.04 AS builder + +ENV DEBIAN_FRONTEND 'noninteractive' +RUN apt-get -y -y -o Dpkg::Options::='--force-confdef' -o Dpkg::Options::='--force-confold' update +RUN apt-get -y install cmake build-essential wget libssl-dev g++ + +WORKDIR /home/pisa + +RUN wget https://github.com/Kitware/CMake/releases/download/v3.21.3/cmake-3.21.3.tar.gz +RUN tar xf cmake-3.21.3.tar.gz +RUN cd cmake-3.21.3 && ./configure && make + +ENV PATH /home/pisa/cmake-3.21.3/bin:$PATH + +WORKDIR /home/pisa/src + +RUN apt-get -y install libtool m4 automake + + +ENTRYPOINT ["make", "compile-within-container"] + diff --git a/engines/pisa-0.8.2/Makefile b/engines/pisa-0.8.2/Makefile new file mode 100644 index 00000000000..2133611a12e --- /dev/null +++ b/engines/pisa-0.8.2/Makefile @@ -0,0 +1,33 @@ +help: + @grep '^[^#[:space:]].*:' Makefile + +clean: + @echo "--- Cleaning PISA 0.8.2 ---" + @rm -fr idx + @rm -fr build + @rm -fr CMakeCache.txt + @rm -fr CMakeFiles + + +compile-within-container: build/bin/build_index build/bin/do_query + echo "compiling" + +compile: + docker build -t pisa-builder . + docker run --rm -it -v "$(shell pwd)":/home/pisa/src/ pisa-builder + +index: idx + +serve: build/bin/do_query + @./build/bin/do_query idx + +build/bin/%: + @echo "--- Building PISA 0.8.2 ---" + @mkdir -p build + @cmake -B build/ . + @make -C build/ + +idx: build/bin/build_index + @echo "--- Indexing PISA 0.8.2 ---" + @mkdir -p idx + @./build/bin/build_index < ${CORPUS} diff --git a/engines/pisa-0.8.2/pisa b/engines/pisa-0.8.2/pisa new file mode 160000 index 00000000000..a45fcc4a04e --- /dev/null +++ b/engines/pisa-0.8.2/pisa @@ -0,0 +1 @@ +Subproject commit a45fcc4a04ec73343205b6ee51729914778d5dad diff --git a/engines/pisa-0.8.2/tools/build_index.cpp b/engines/pisa-0.8.2/tools/build_index.cpp new file mode 100644 index 00000000000..3b208ed0e52 --- /dev/null +++ b/engines/pisa-0.8.2/tools/build_index.cpp @@ -0,0 +1,177 @@ +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include + +static std::size_t const THREADS = 2; +static std::size_t const BATCH_SIZE = 10'000; +static std::string const IDX_DIR = "idx"; +static std::string const FWD = "fwd"; +static std::string const INV = "inv"; +static pisa::BlockSize const BLOCK_SIZE = pisa::FixedBlock(40); + +using pisa::BlockSize; +using pisa::Document_Record; +using pisa::Forward_Index_Builder; + +using Wand = pisa::wand_data; + +void parse() +{ + pisa::Forward_Index_Builder fwd_builder; + fwd_builder.build( + std::cin, + fmt::format("{}/{}", IDX_DIR, FWD), + [](std::istream& in) -> std::optional { + std::string line; + if (std::getline(in, line) && not line.empty()) { + auto record = nlohmann::basic_json<>::parse(line); + return std::make_optional( + record["id"].get(), record["text"].get(), ""); + } + return std::nullopt; + }, + [](std::string&& term) -> std::string { + boost::algorithm::to_lower(term); + return std::move(term); + }, + pisa::parse_plaintext_content, + BATCH_SIZE, + THREADS); +} + +void invert() +{ + auto term_lexicon_file = fmt::format("{}/{}.termlex", IDX_DIR, FWD); + mio::mmap_source mfile(term_lexicon_file.c_str()); + auto lexicon = pisa::Payload_Vector<>::from(mfile); + pisa::invert::invert_forward_index( + fmt::format("{}/{}", IDX_DIR, FWD), + fmt::format("{}/{}", IDX_DIR, INV), + lexicon.size(), + BATCH_SIZE, + THREADS); +} + +void bmw(pisa::binary_collection const& sizes, pisa::binary_freq_collection const& coll) +{ + Wand wdata(sizes.begin()->begin(), coll.num_docs(), coll, "bm25", BLOCK_SIZE, true, {}); + pisa::mapper::freeze(wdata, fmt::format("{}/{}.bm25.bmw", IDX_DIR, INV).c_str()); +} + +void compress() +{ + pisa::binary_collection sizes((fmt::format("{}/{}.bp.sizes", IDX_DIR, INV).c_str())); + pisa::binary_freq_collection coll(fmt::format("{}/{}.bp", IDX_DIR, INV).c_str()); + bmw(sizes, coll); + pisa::compress_index( + coll, + pisa::global_parameters{}, + fmt::format("{}/{}.simdbp", IDX_DIR, INV), + false, + "block_simdbp", + fmt::format("{}/{}.bm25.bmw", IDX_DIR, INV), + "bm25", + true); +} + +void reorder() +{ + pisa::forward_index fwd = + pisa::forward_index::from_inverted_index(fmt::format("{}/{}", IDX_DIR, INV), 0, false); + std::vector documents(fwd.size()); + std::iota(documents.begin(), documents.end(), 0U); + std::vector gains(fwd.size(), 0.0); + using iterator_type = std::vector::iterator; + using range_type = pisa::document_range; + range_type initial_range(documents.begin(), documents.end(), fwd, gains); + auto depth = static_cast(std::log2(fwd.size()) - 5); + pisa::progress bp_progress("Graph bisection", initial_range.size() * depth); + bp_progress.update(0); + pisa::recursive_graph_bisection(initial_range, depth, depth - 6, bp_progress); + auto mapping = pisa::get_mapping(documents); + fwd.clear(); + documents.clear(); + pisa::reorder_inverted_index( + fmt::format("{}/{}", IDX_DIR, INV), fmt::format("{}/{}.bp", IDX_DIR, INV), mapping); +} + +void compute_thresholds() +{ + using namespace pisa; + size_t k = 10; + + using wand_uniform_index_quantized = wand_data; + wand_uniform_index_quantized wdata; + mio::mmap_source md; + std::error_code error; + md.map(fmt::format("{}/{}.bm25.bmw", IDX_DIR, INV), error); + if (error) { + std::cerr << "error mapping file: " << error.message() << ", exiting..." << std::endl; + throw std::runtime_error("Error opening file"); + } + mapper::map(wdata, md, mapper::map_flags::warmup); + + using IndexType = block_simdbp_index; + + IndexType index; + mio::mmap_source m(fmt::format("{}/{}.simdbp", IDX_DIR, INV).c_str()); + mapper::map(index, m); + + auto scorer = scorer::from_name("quantized", wdata); + + auto term_lexicon_file = fmt::format("{}/{}.termlex", IDX_DIR, FWD); + mio::mmap_source mfile(term_lexicon_file.c_str()); + auto lexicon_size = pisa::Payload_Vector<>::from(mfile).size(); + + std::ofstream thresholds_file(fmt::format("{}/{}.thresholds", IDX_DIR, FWD)); + + for (size_t term = 0; term < lexicon_size; ++term) { + Query query; + query.terms.push_back(term); + topk_queue topk(k); + ranked_and_query ranked_and_q(topk); + ranked_and_q(make_scored_cursors(index, *scorer, query), index.num_docs()); + topk.finalize(); + auto results = topk.topk(); + topk.clear(); + float threshold = 0.0; + if (results.size() == k) { + threshold = results.back().first; + } + thresholds_file << threshold << '\n'; + } +} + +int main(int argc, char const* argv[]) +{ + spdlog::drop(""); + spdlog::set_default_logger(spdlog::stderr_color_mt("")); + tbb::task_scheduler_init init(THREADS); + parse(); + invert(); + reorder(); + compress(); + compute_thresholds(); +} diff --git a/engines/pisa-0.8.2/tools/do_query.cpp b/engines/pisa-0.8.2/tools/do_query.cpp new file mode 100644 index 00000000000..3e9e70455cb --- /dev/null +++ b/engines/pisa-0.8.2/tools/do_query.cpp @@ -0,0 +1,126 @@ +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +static std::string const IDX_DIR = "idx"; +static std::string const FWD = "fwd"; +static std::string const INV = "inv"; + +int main(int argc, char const* argv[]) +{ + using namespace pisa; + spdlog::drop(""); + spdlog::set_default_logger(spdlog::stderr_color_mt("")); + + std::string terms_file = fmt::format("{}/{}.termlex", IDX_DIR, FWD); + std::string wand_data_filename = fmt::format("{}/{}.bm25.bmw", IDX_DIR, INV); + std::string index_filename = fmt::format("{}/{}.simdbp", IDX_DIR, INV); + + std::string scorer_name = "quantized"; + size_t k = 10; + + auto term_processor = TermProcessor(terms_file, std::nullopt, std::nullopt); + using wand_uniform_index_quantized = wand_data; + wand_uniform_index_quantized wdata; + + mio::mmap_source md; + std::error_code error; + md.map(wand_data_filename, error); + if (error) { + std::cerr << "error mapping file: " << error.message() << ", exiting..." << std::endl; + throw std::runtime_error("Error opening file"); + } + mapper::map(wdata, md, mapper::map_flags::warmup); + + using IndexType = block_simdbp_index; + + IndexType index; + spdlog::info("Loading index from {}", index_filename); + mio::mmap_source m(index_filename.c_str()); + mapper::map(index, m); + + auto scorer = scorer::from_name(scorer_name, wdata); + + + std::vector thresholds; + std::ifstream tin(fmt::format("{}/{}.thresholds", IDX_DIR, FWD)); + std::string t; + while (std::getline(tin, t)) { + thresholds.push_back(std::stof(t)); + } + + + std::string line; + while (std::getline(std::cin, line)) { + bool intersection = false; + size_t count = 0; + std::vector tokens; + boost::split(tokens, line, boost::is_any_of("\t")); + if (boost::contains(tokens[1], "\"")) { + std::cout << "UNSUPPORTED\n"; + continue; + } else if (boost::starts_with(tokens[1], "+")) { + intersection = true; + boost::replace_all(tokens[1], "+", ""); + } + + + Query query = parse_query_terms(tokens[1], term_processor); + if (tokens[0] == "COUNT") { + if(query.terms.size() == 1) + count = index[query.terms[0]].size(); + else if (intersection) { + and_query and_q; + count = and_q(make_cursors(index, query), index.num_docs()).size(); + } else { + or_query or_q; + count = or_q(make_cursors(index, query), index.num_docs()); + } + } else if (tokens[0] == "TOP_10") { + topk_queue topk(k); + if (intersection or query.terms.size() == 1) { + ranked_and_query ranked_and_q(topk); + ranked_and_q(make_scored_cursors(index, *scorer, query), index.num_docs()); + topk.finalize(); + count = 1; + } else { + float threshold = 0; + for (auto &&term : query.terms){ + threshold = std::max(threshold, thresholds[term]); + } + topk.set_threshold(threshold); + block_max_wand_query block_max_wand_q(topk); + block_max_wand_q( + make_block_max_scored_cursors(index, wdata, *scorer, query), index.num_docs()); + topk.finalize(); + count = 1; + } + } else if (tokens[0] == "TOP_10_COUNT") { + if (intersection or query.terms.size() == 1) { + scored_and_query and_q; + count = and_q(make_scored_cursors(index, *scorer, query), index.num_docs()).size(); + } else { + or_query or_q; + count = or_q(make_cursors(index, query), index.num_docs()); + } + } else { + std::cout << "UNSUPPORTED\n"; + } + std::cout << count << "\n"; + } +} diff --git a/engines/rucene-0.1/.cargo/config b/engines/rucene-0.1/.cargo/config new file mode 100644 index 00000000000..958d7fcaf3d --- /dev/null +++ b/engines/rucene-0.1/.cargo/config @@ -0,0 +1,3 @@ +[build] +rustflags = ["-C", "target-cpu=native"] + diff --git a/engines/rucene-0.1/.gitignore b/engines/rucene-0.1/.gitignore new file mode 100644 index 00000000000..b0007830d5d --- /dev/null +++ b/engines/rucene-0.1/.gitignore @@ -0,0 +1,2 @@ +idx +target diff --git a/engines/rucene-0.1/Cargo.lock b/engines/rucene-0.1/Cargo.lock new file mode 100644 index 00000000000..ea61e1e5808 --- /dev/null +++ b/engines/rucene-0.1/Cargo.lock @@ -0,0 +1,711 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "addr2line" +version = "0.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7a2e47a1fbe209ee101dd6d61285226744c6c8d3c21c8dc878ba6cb9f467f3a" +dependencies = [ + "gimli", +] + +[[package]] +name = "adler" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" + +[[package]] +name = "aho-corasick" +version = "0.6.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5" +dependencies = [ + "memchr", +] + +[[package]] +name = "autocfg" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" + +[[package]] +name = "backtrace" +version = "0.3.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7815ea54e4d821e791162e078acbebfd6d8c8939cd559c9335dceb1c8ca7282" +dependencies = [ + "addr2line", + "cc", + "cfg-if 1.0.0", + "libc", + "miniz_oxide", + "object", + "rustc-demangle", +] + +[[package]] +name = "bit-set" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9bf6104718e80d7b26a68fdbacff3481cfc05df670821affc7e9cbc1884400c" +dependencies = [ + "bit-vec", +] + +[[package]] +name = "bit-vec" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02b4ff8b16e6076c3e14220b39fbc1fabb6737522281a388998046859400895f" + +[[package]] +name = "bitflags" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" + +[[package]] +name = "build_const" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ae4235e6dac0694637c763029ecea1a2ec9e4e06ec2729bd21ba4d9c863eb7" + +[[package]] +name = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" + +[[package]] +name = "bytes" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "206fdffcfa2df7cbe15601ef46c813fce0965eb3286db6b56c583b814b51c81c" +dependencies = [ + "byteorder", + "iovec", +] + +[[package]] +name = "cc" +version = "1.0.68" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787" + +[[package]] +name = "cfg-if" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "chan" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d14956a3dae065ffaa0d92ece848ab4ced88d32361e7fdfbfd653a5c454a1ed8" +dependencies = [ + "rand 0.3.23", +] + +[[package]] +name = "chan-signal" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5b829e3f5432da0cc46577d89fc88c937e78052e6735fb47ce0213b0db120b01" +dependencies = [ + "bit-set", + "chan", + "lazy_static 0.2.11", + "libc", +] + +[[package]] +name = "cloudabi" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" +dependencies = [ + "bitflags", +] + +[[package]] +name = "crc" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d663548de7f5cca343f1e0a48d14dcfb0e9eb4e079ec58883b7251539fa10aeb" +dependencies = [ + "build_const", +] + +[[package]] +name = "crc32fast" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a" +dependencies = [ + "cfg-if 1.0.0", +] + +[[package]] +name = "crossbeam" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69323bff1fb41c635347b8ead484a5ca6c3f11914d784170b158d8449ab07f8e" +dependencies = [ + "cfg-if 0.1.10", + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-epoch", + "crossbeam-queue", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-channel" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b153fe7cbef478c567df0f972e02e6d736db11affe43dfc9c56a9374d1adfb87" +dependencies = [ + "crossbeam-utils", + "maybe-uninit", +] + +[[package]] +name = "crossbeam-deque" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f02af974daeee82218205558e51ec8768b48cf524bd01d550abe5573a608285" +dependencies = [ + "crossbeam-epoch", + "crossbeam-utils", + "maybe-uninit", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "058ed274caafc1f60c4997b5fc07bf7dc7cca454af7c6e81edffe5f33f70dace" +dependencies = [ + "autocfg", + "cfg-if 0.1.10", + "crossbeam-utils", + "lazy_static 1.4.0", + "maybe-uninit", + "memoffset", + "scopeguard", +] + +[[package]] +name = "crossbeam-queue" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "774ba60a54c213d409d5353bda12d49cd68d14e45036a285234c8d6f91f92570" +dependencies = [ + "cfg-if 0.1.10", + "crossbeam-utils", + "maybe-uninit", +] + +[[package]] +name = "crossbeam-utils" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3c7c73a2d1e9fc0886a08b93e98eb643461230d5f1925e4036204d5f2e261a8" +dependencies = [ + "autocfg", + "cfg-if 0.1.10", + "lazy_static 1.4.0", +] + +[[package]] +name = "crunchy" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" + +[[package]] +name = "either" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" + +[[package]] +name = "error-chain" +version = "0.12.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc" +dependencies = [ + "backtrace", + "version_check", +] + +[[package]] +name = "fasthash" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce56b715df3559085323d0a6724eccfd52994ac5abac9e9ffc6093853163f3bb" +dependencies = [ + "fasthash-sys", + "seahash", + "xoroshiro128", +] + +[[package]] +name = "fasthash-sys" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6de941abfe2e715cdd34009d90546f850597eb69ca628ddfbf616e53dda28f8" +dependencies = [ + "gcc", +] + +[[package]] +name = "flate2" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd3aec53de10fe96d7d8c565eb17f2c687bb5518a2ec453b5b1252964526abe0" +dependencies = [ + "cfg-if 1.0.0", + "crc32fast", + "libc", + "miniz_oxide", +] + +[[package]] +name = "fuchsia-cprng" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" + +[[package]] +name = "gcc" +version = "0.3.55" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f5f3913fa0bfe7ee1fd8248b6b9f42a5af4b9d65ec2dd2c3c26132b950ecfc2" + +[[package]] +name = "gimli" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0e4075386626662786ddb0ec9081e7c7eeb1ba31951f447ca780ef9f5d568189" + +[[package]] +name = "hermit-abi" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "322f4de77956e22ed0e5032c359a0f1273f1f7f0d79bfa3b8ffbc730d7fbcc5c" +dependencies = [ + "libc", +] + +[[package]] +name = "iovec" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" +dependencies = [ + "libc", +] + +[[package]] +name = "itoa" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd25036021b0de88a0aff6b850051563c6516d0bf53f8638938edbb9de732736" + +[[package]] +name = "lazy_static" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "libc" +version = "0.2.97" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12b8adadd720df158f4d70dfe7ccc6adb0472d7c55ca83445f6a5ab3e36f8fb6" + +[[package]] +name = "log" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" +dependencies = [ + "cfg-if 1.0.0", +] + +[[package]] +name = "maybe-uninit" +version = "2.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "60302e4db3a61da70c0cb7991976248362f30319e88850c487b9b95bbf059e00" + +[[package]] +name = "memchr" +version = "2.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b16bd47d9e329435e309c58469fe0791c2d0d1ba96ec0954152a5ae2b04387dc" + +[[package]] +name = "memmap" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2ffa2c986de11a9df78620c01eeaaf27d94d3ff02bf81bfcca953102dd0c6ff" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "memoffset" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa" +dependencies = [ + "autocfg", +] + +[[package]] +name = "miniz_oxide" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a92518e98c078586bc6c934028adcca4c92a53d6a958196de835170a01d84e4b" +dependencies = [ + "adler", + "autocfg", +] + +[[package]] +name = "num-traits" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_cpus" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "object" +version = "0.25.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a38f2be3697a57b4060074ff41b44c16870d916ad7877c17696e063257482bc7" +dependencies = [ + "memchr", +] + +[[package]] +name = "proc-macro2" +version = "1.0.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0d8caf72986c1a598726adc988bb5984792ef84f5ee5aa50209145ee8077038" +dependencies = [ + "unicode-xid", +] + +[[package]] +name = "quote" +version = "1.0.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3d0b9745dc2debf507c8422de05d7226cc1f0644216dfdfead988f9b1ab32a7" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.3.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" +dependencies = [ + "libc", + "rand 0.4.6", +] + +[[package]] +name = "rand" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" +dependencies = [ + "fuchsia-cprng", + "libc", + "rand_core 0.3.1", + "rdrand", + "winapi", +] + +[[package]] +name = "rand" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" +dependencies = [ + "cloudabi", + "fuchsia-cprng", + "libc", + "rand_core 0.3.1", + "winapi", +] + +[[package]] +name = "rand_core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" +dependencies = [ + "rand_core 0.4.2", +] + +[[package]] +name = "rand_core" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" + +[[package]] +name = "rdrand" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" +dependencies = [ + "rand_core 0.3.1", +] + +[[package]] +name = "regex" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9329abc99e39129fcceabd24cf5d85b4671ef7c29c50e972bc5afe32438ec384" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", + "thread_local", + "utf8-ranges", +] + +[[package]] +name = "regex-syntax" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7d707a4fa2637f2dca2ef9fd02225ec7661fe01a53623c1e6515b6916511f7a7" +dependencies = [ + "ucd-util", +] + +[[package]] +name = "rucene" +version = "0.1.1" +source = "git+https://github.com/zhihu/rucene?rev=5b55f842#5b55f842c2bb03beb96898d520e880c180c91adf" +dependencies = [ + "byteorder", + "bytes", + "chan", + "chan-signal", + "crc", + "crossbeam", + "crunchy", + "either", + "error-chain", + "fasthash", + "flate2", + "lazy_static 1.4.0", + "log", + "memmap", + "num-traits", + "num_cpus", + "rand 0.5.6", + "regex", + "serde", + "serde_derive", + "serde_json", + "smallvec", + "thread_local", + "unicode_reader", +] + +[[package]] +name = "rucene-searchbenchmark" +version = "0.1.0" +dependencies = [ + "rucene", + "serde", + "serde_derive", + "serde_json", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "410f7acf3cb3a44527c5d9546bad4bf4e6c460915d5f9f2fc524498bfe8f70ce" + +[[package]] +name = "ryu" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" + +[[package]] +name = "scopeguard" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" + +[[package]] +name = "seahash" +version = "3.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58f57ca1d128a43733fd71d583e837b1f22239a37ebea09cde11d8d9a9080f47" + +[[package]] +name = "serde" +version = "1.0.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec7505abeacaec74ae4778d9d9328fe5a5d04253220a85c4ee022239fc996d03" + +[[package]] +name = "serde_derive" +version = "1.0.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "963a7dbc9895aeac7ac90e74f34a5d5261828f79df35cbed41e10189d3804d43" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "799e97dc9fdae36a5c8b8f2cae9ce2ee9fdce2058c57a93e6099d919fd982f79" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "smallvec" +version = "0.6.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b97fcaeba89edba30f044a10c6a3cc39df9c3f17d7cd829dd1446cab35f890e0" +dependencies = [ + "maybe-uninit", +] + +[[package]] +name = "syn" +version = "1.0.73" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f71489ff30030d2ae598524f61326b902466f72a0fb1a8564c001cc63425bcc7" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + +[[package]] +name = "thread_local" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" +dependencies = [ + "lazy_static 1.4.0", +] + +[[package]] +name = "ucd-util" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c85f514e095d348c279b1e5cd76795082cf15bd59b93207832abe0b1d8fed236" + +[[package]] +name = "unicode-segmentation" +version = "1.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0d2e7be6ae3a5fa87eed5fb451aff96f2573d2694942e40543ae0bbe19c796" + +[[package]] +name = "unicode-xid" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" + +[[package]] +name = "unicode_reader" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "001b27e8f5e9da465b3584051a3a3d2ebefee4f8595c49e96cc1deec9667e4cc" +dependencies = [ + "unicode-segmentation", +] + +[[package]] +name = "utf8-ranges" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ae116fef2b7fea257ed6440d3cfcff7f190865f170cdad00bb6465bf18ecba" + +[[package]] +name = "version_check" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "xoroshiro128" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0eeda34baec49c4f1eb2c04d59b761582fd6330010f9330ca696ca1a355dfcd" +dependencies = [ + "rand 0.4.6", +] diff --git a/engines/rucene-0.1/Cargo.toml b/engines/rucene-0.1/Cargo.toml new file mode 100644 index 00000000000..52e5c37f06b --- /dev/null +++ b/engines/rucene-0.1/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "rucene-searchbenchmark" +version = "0.1.0" +authors = ["Paul Masurel "] +edition = "2018" + +[dependencies] +rucene = { git = "https://github.com/zhihu/rucene", rev="5b55f842" } +serde = "1.0" +serde_json = "1.0" +serde_derive = "1.0" + +[profile.release] +lto = true +opt-level = 3 +overflow-checks = false diff --git a/engines/rucene-0.1/Makefile b/engines/rucene-0.1/Makefile new file mode 100644 index 00000000000..4024b30ff35 --- /dev/null +++ b/engines/rucene-0.1/Makefile @@ -0,0 +1,19 @@ +clean: + rm -fr idx + rm -fr target + +compile: target/release/build_index target/release/do_query + +index: idx + +serve: target/release/do_query + @target/release/do_query idx + +target/release/%: + @echo "\n\n\n--- Building rucene's binary ---" + @cargo build --release --bin $(notdir $@) + +idx: target/release/build_index + @echo "\n\n\n---- Indexing rucene ----" + @mkdir -p idx + export RUST_LOG=info && export RUST_BACKTRACE=1 && target/release/build_index "$@" < ${CORPUS} diff --git a/engines/rucene-0.1/rust-toolchain b/engines/rucene-0.1/rust-toolchain new file mode 100644 index 00000000000..7b70b332219 --- /dev/null +++ b/engines/rucene-0.1/rust-toolchain @@ -0,0 +1 @@ +nightly-2020-03-12 diff --git a/engines/rucene-0.1/src/bin/build_index.rs b/engines/rucene-0.1/src/bin/build_index.rs new file mode 100644 index 00000000000..c1355356785 --- /dev/null +++ b/engines/rucene-0.1/src/bin/build_index.rs @@ -0,0 +1,114 @@ +use rucene; +use std::env; +use std::io::{self, BufRead}; +use std::path::Path; +use rucene::core::index::writer::{IndexWriter, IndexWriterConfig}; +use rucene::core::doc::{Fieldable, Field, FieldType, IndexOptions}; +use rucene::core::util::VariantValue; +use rucene::core::analysis::WhitespaceTokenizer; +use std::sync::Arc; +use rucene::core::store::directory::FSDirectory; +use serde_derive::Deserialize; + +fn indexed_text_field_type() -> FieldType { + let mut field_type = FieldType::default(); + field_type.index_options = IndexOptions::DocsAndFreqsAndPositions; + field_type.store_term_vectors = false; + field_type.store_term_vector_offsets = false; + field_type.store_term_vector_positions = false; + field_type +} + + +struct StringReader { + text: String, + index: usize, +} + +impl StringReader { + fn new(text: String) -> Self { + StringReader { text, index: 0 } + } +} + +impl io::Read for StringReader { + fn read(&mut self, buf: &mut [u8]) -> io::Result { + let remain = buf.len().min(self.text.len() - self.index); + if remain > 0 { + buf[..remain].copy_from_slice(&self.text.as_bytes()[self.index..self.index + remain]); + self.index += remain; + } + Ok(remain) + } +} + +fn new_index_text_field(field_name: String, text: String) -> Field { + let token_stream = WhitespaceTokenizer::new(Box::new(StringReader::new(text))); + Field::new( + field_name, + indexed_text_field_type(), + None, + Some(Box::new(token_stream)), + ) +} + +fn new_stored_text_field(field_name: String, text: String) -> Field { + let mut field_type = FieldType::default(); + field_type.stored = true; + Field::new( + field_name, + field_type, + Some(VariantValue::VString(text)), + None, + ) +} + +#[derive(Deserialize)] +struct Doc { + id: String, + text: String +} + +impl Doc { + pub fn rucene_doc(&self) -> Vec> { + vec![ + Box::new(new_stored_text_field("id".to_string(), self.id.clone())), + Box::new(new_index_text_field("text".to_string(), self.text.to_ascii_lowercase())) + ] + } +} + + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap(); +} + + +fn main_inner(output_dir: &Path) -> rucene::error::Result<()> { + let config = Arc::new(IndexWriterConfig::default()); + let directory = Arc::new(FSDirectory::with_path(&output_dir)?); + + let writer = IndexWriter::new(directory, config)?; + let stdin = std::io::stdin(); + let mut i = 0; + for line in stdin.lock().lines() { + let line = line?; + if line.trim().is_empty() { + continue; + } + if i % 10_000 == 0 { + println!("doc {}", i) + } + // crash if we don't commit from time to time + if i % 1_100_000 == 0 { + writer.commit()?; + } + i += 1; + let doc_obj: Doc = serde_json::from_str(&line)?; + writer.add_document(doc_obj.rucene_doc())?; + } + writer.commit()?; + writer.force_merge(1, true)?; + Ok(()) +} diff --git a/engines/rucene-0.1/src/bin/do_query.rs b/engines/rucene-0.1/src/bin/do_query.rs new file mode 100644 index 00000000000..93b3cb4f14d --- /dev/null +++ b/engines/rucene-0.1/src/bin/do_query.rs @@ -0,0 +1,186 @@ +use std::{env, mem}; +use std::io::BufRead; +use std::path::Path; +use std::sync::Arc; +use rucene::core::search::collector::{SearchCollector, TopDocsCollector, Collector, ParallelLeafCollector, ChainedCollector}; +use rucene::core::search::{DefaultIndexSearcher, IndexSearcher}; +use rucene::core::store::directory::FSDirectory; +use rucene::core::index::reader::{StandardDirectoryReader, LeafReaderContext}; +use rucene::core::codec::{CodecEnum, Codec}; +use rucene::core::index::merge::{SerialMergeScheduler, TieredMergePolicy}; +use rucene::core::search::query::{TermQuery, BooleanQuery, Query}; +use rucene::core::doc::Term; +use rucene::core::search::scorer::Scorer; +use rucene::core::util::DocId; + +#[derive(Default)] +struct Count { + count: usize +} + +impl ParallelLeafCollector for Count { + fn finish_leaf(&mut self) -> rucene::error::Result<()> { + Ok(()) + } +} + +impl SearchCollector for Count { + type LC = Count; + + fn set_next_reader(&mut self, _reader: &LeafReaderContext<'_, C>) -> rucene::error::Result<()> { + Ok(()) + } + + fn support_parallel(&self) -> bool { + false + } + + fn leaf_collector(&self, _reader: &LeafReaderContext<'_, C>) -> rucene::error::Result { + Ok(Count::default()) + } + + fn finish_parallel(&mut self) -> rucene::error::Result<()> { + unimplemented!() + } +} + +impl Collector for Count { + fn needs_scores(&self) -> bool { + false + } + + fn collect(&mut self, _doc: DocId, _scorer: &mut S) -> rucene::error::Result<()> { + self.count += 1; + Ok(()) + } + +} + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap() +} + +enum QueryType { + Phrase, + And, + Or +} + +fn parse_query(query_str: &str) -> Option>> { + let query_type; + let terms: Vec; + if query_str.starts_with("\"") || query_str.starts_with("+\"") { + query_type = QueryType::Phrase; + let l = query_str.len() -1; + terms = query_str[1..l-1].split_whitespace() + .map(|term| term.to_string()) + .collect(); + } else if query_str.starts_with("+") { + query_type = QueryType::And; + terms = query_str.split_whitespace() + .map(|term| term[1..].to_string()) + .collect(); + } else { + query_type = QueryType::Or; + terms = query_str.split_whitespace() + .map(|term| term.to_string()) + .collect(); + } + let terms: Vec = terms.into_iter() + .map(|term| Term::new("text".into(), term.as_bytes().to_vec())) + .collect(); + if terms.len() == 1 { + return Some(Box::new(TermQuery::new( + terms[0].clone(), + 1.0, + None, + ))); + } + match query_type { + QueryType::And => { + return BooleanQuery::build( + terms.iter() + .map(|term| { + let term_query: Box> = Box::new(TermQuery::new(term.clone(), 1.0, None)); + term_query + }) + .collect(), + vec![], + vec![], + vec![], + 0i32 + ).ok(); + } + QueryType::Or => { + return BooleanQuery::build( + vec![], + terms.iter() + .map(|term| { + let term_query: Box> = Box::new(TermQuery::new(term.clone(), 1.0, None)); + term_query + }) + .collect(), + vec![], + vec![], + 0i32, + ).ok(); + } + QueryType::Phrase => { + // Disabling because it is not working. + // let positions = (0i32..terms.len() as i32).collect(); + // return Ok(Box::new(PhraseQuery::new(terms, positions, 0, None, None)?)) + return None; + } + } +} + +fn main_inner(index_dir: &Path) -> rucene::error::Result<()> { + // create index writer + let directory = Arc::new(FSDirectory::with_path(&index_dir)?); + let reader: StandardDirectoryReader = StandardDirectoryReader::open(directory)?; + let searcher = DefaultIndexSearcher::new(Arc::new(reader), None); + + let stdin = std::io::stdin(); + for line_res in stdin.lock().lines() { + let line = line_res?; + let fields: Vec<&str> = line.split("\t").collect(); + assert_eq!(fields.len(), 2, "Expected a line in the format query."); + let command = fields[0]; + let query_str = fields[1].to_ascii_lowercase(); + let query_opt: Option>> = parse_query(&query_str); + if query_opt.is_none() { + println!("UNSUPPORTED"); + continue; + } + let query = query_opt.unwrap(); + let count; + match command { + "COUNT" => { + let mut count_collector = Count::default(); + searcher.search(query.as_ref(), &mut count_collector)?; + count = count_collector.count; + } + "TOP_10" => { + let mut top_collector = TopDocsCollector::new(10); + searcher.search(query.as_ref(), &mut top_collector)?; + let _ = top_collector.top_docs(); + count = 1; + } + "TOP_10_COUNT" => { + let mut count_collector = Count::default(); + let top_collector = TopDocsCollector::new(10); + let mut chain = ChainedCollector::new(&mut count_collector, top_collector); + searcher.search(query.as_ref(), &mut chain)?; + mem::drop(chain); + count = count_collector.count; + } + _ => { + println!("UNSUPPORTED"); + continue; + } + } + println!("{}", count); + } + Ok(()) +} diff --git a/engines/tantivy-0.10/Cargo.lock b/engines/tantivy-0.10/Cargo.lock new file mode 100644 index 00000000000..56499203eda --- /dev/null +++ b/engines/tantivy-0.10/Cargo.lock @@ -0,0 +1,1455 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "aho-corasick" +version = "0.6.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "arrayvec" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ascii" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "atomicwrites" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "atty" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "autocfg" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "backtrace" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "backtrace-sys" +version = "0.1.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "base64" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bit-set" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bit-vec" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitflags" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitflags" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitpacking" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "byteorder" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cc" +version = "1.0.31" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "census" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cfg-if" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "chrono" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cloudabi" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "combine" +version = "3.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ascii 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "crossbeam" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-channel" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-deque" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-utils" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crunchy" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "downcast-rs" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "either" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "env_logger" +version = "0.5.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fail" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure_derive" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "filetime" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fnv" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "fs2" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fsevent" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fsevent-sys 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fsevent-sys" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fst" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fuchsia-cprng" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "fuchsia-zircon" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fuchsia-zircon-sys" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures" +version = "0.1.25" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures-cpupool" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "htmlescape" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "humantime" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "inotify" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "inotify-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "inotify-sys" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "iovec" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "itertools" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "itoa" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "kernel32-sys" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "lazy_static" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lazy_static" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lazycell" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "levenshtein_automata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fst 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libc" +version = "0.2.50" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lock_api" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "lock_api" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "log" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "log" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "memchr" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "memmap" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "memoffset" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "mio" +version = "0.6.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "mio-extras" +version = "2.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "miow" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "murmurhash32" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "net2" +version = "0.2.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "nix" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "nodrop" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "notify" +version = "4.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "fsevent 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)", + "fsevent-sys 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "inotify 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-integer" +version = "0.1.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-traits" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "num_cpus" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "once_cell" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lock_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "owned-read" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rental 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "owning_ref" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lock_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot_core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot_core" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "proc-macro2" +version = "0.4.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "quick-error" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "quote" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.3.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_chacha" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_core" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rand_hc" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_isaac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_jitter" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_os" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_pcg" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_xorshift" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rdrand" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "redox_syscall" +version = "0.1.51" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "redox_termios" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex-syntax" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "regex-syntax" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "remove_dir_all" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rental" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rental-impl 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rental-impl" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rust-stemmers" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rustc_version" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ryu" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "same-file" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "scoped-pool" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "variance 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "scopeguard" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "scopeguard" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "scopeguard" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "semver" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "semver-parser" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde" +version = "1.0.89" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde_derive" +version = "1.0.89" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "serde_json" +version = "1.0.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "slab" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "smallvec" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "snap" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "stable_deref_trait" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "syn" +version = "0.15.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "synstructure" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "atomicwrites 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bit-set 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitpacking 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "census 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "combine 3.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "downcast-rs 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fail 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "htmlescape 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "murmurhash32 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "notify 4.0.10 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "once_cell 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "owned-read 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rust-stemmers 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "scoped-pool 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", + "snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tantivy-fst 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy-bench" +version = "0.1.0" +dependencies = [ + "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", + "tantivy 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy-fst" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tempdir" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tempfile" +version = "3.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "termcolor" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "termion" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "thread_local" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "time" +version = "0.1.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ucd-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unicode-xid" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unreachable" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "utf8-ranges" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "uuid" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "variance" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "void" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "walkdir" +version = "2.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi-build" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi-util" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "wincolor" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ws2_32-sys" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[metadata] +"checksum aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5" +"checksum arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71" +"checksum ascii 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a5fc969a8ce2c9c0c4b0429bb8431544f6658283c8326ba5ff8c762b75369335" +"checksum atomicwrites 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a3420b33cdefd3feb223dddc23739fc05cc034eb0f2be792c763e3d89e1eb6e3" +"checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" +"checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799" +"checksum backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "cd5a90e2b463010cd0e0ce9a11d4a9d5d58d9f41d4a6ba3dcaf9e68b466e88b4" +"checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6" +"checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" +"checksum bit-set 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6f1efcc46c18245a69c38fcc5cc650f16d3a59d034f3106e9ed63748f695730a" +"checksum bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4440d5cb623bb7390ae27fec0bb6c61111969860f8e3ae198bfa0663645e67cf" +"checksum bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d" +"checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" +"checksum bitpacking 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6918388afd31f1254c408956fca4d36383a1c89c66697eb55d6bacbbcf50e10a" +"checksum byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb" +"checksum cc 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)" = "c9ce8bb087aacff865633f0bd5aeaed910fe2fe55b55f4739527f2e023a2e53d" +"checksum census 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "641317709904ba3c1ad137cb5d88ec9d8c03c07de087b2cff5e84ec565c7e299" +"checksum cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4" +"checksum chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878" +"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" +"checksum combine 3.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680" +"checksum crossbeam 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "bd66663db5a988098a89599d4857919b3acf7f61402e61365acfd3919857b9be" +"checksum crossbeam 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d1c92ff2d7a202d592f5a412d75cf421495c913817781c1cb383bf12a77e185f" +"checksum crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f0ed1a4de2235cabda8558ff5840bffb97fcb64c97827f354a451307df5f72b" +"checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13" +"checksum crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2449aaa4ec7ef96e5fb24db16024b935df718e9ae1cec0a1e68feeca2efca7b8" +"checksum crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "04c9e3102cc2d69cd681412141b390abd55a362afc1540965dad0ad4d34280b4" +"checksum crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f8306fcef4a7b563b76b7dd949ca48f52bc1141aa067d2ea09565f3e2652aa5c" +"checksum crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" +"checksum downcast-rs 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "18df8ce4470c189d18aa926022da57544f31e154631eb4cfe796aea97051fe6c" +"checksum either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c67353c641dc847124ea1902d69bd753dee9bb3beff9aa3662ecf86c971d1fac" +"checksum env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)" = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38" +"checksum fail 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4eca5f0f9a67b3e504f3a0ab0bc22efb19b241c0313be5b897ee7e8d85a1805a" +"checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" +"checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" +"checksum filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a2df5c1a8c4be27e7707789dc42ae65976e60b394afd293d1419ab915833e646" +"checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" +"checksum fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" +"checksum fsevent 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "c4bbbf71584aeed076100b5665ac14e3d85eeb31fdbb45fbd41ef9a682b5ec05" +"checksum fsevent-sys 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "1a772d36c338d07a032d5375a36f15f9a7043bf0cb8ce7cee658e037c6032874" +"checksum fst 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "db72126ca7dff566cdbbdd54af44668c544897d9d3862b198141f176f1238bdf" +"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" +"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" +"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" +"checksum futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)" = "49e7653e374fe0d0c12de4250f0bdb60680b8c80eed558c5c7538eec9c89e21b" +"checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" +"checksum htmlescape 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" +"checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114" +"checksum inotify 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "40b54539f3910d6f84fbf9a643efd6e3aa6e4f001426c0329576128255994718" +"checksum inotify-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0" +"checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" +"checksum itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358" +"checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" +"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" +"checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" +"checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14" +"checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" +"checksum levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73a004f877f468548d8d0ac4977456a249d8fabbdb8416c36db163dfc8f2e8ca" +"checksum libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "aab692d7759f5cd8c859e169db98ae5b52c924add2af5fbbca11d12fefb567c1" +"checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" +"checksum lock_api 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ed946d4529956a20f2d63ebe1b69996d5a2137c91913fe3ebbeff957f5bca7ff" +"checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" +"checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" +"checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39" +"checksum memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b" +"checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" +"checksum mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)" = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432" +"checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" +"checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" +"checksum murmurhash32 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d736ff882f0e85fe9689fb23db229616c4c00aee2b3ac282f666d8f20eb25d4a" +"checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" +"checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" +"checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" +"checksum notify 4.0.10 (registry+https://github.com/rust-lang/crates.io-index)" = "abb1581693e44d8a0ec347ef12289625063f52a1dddc3f3c9befd5fc59e88943" +"checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea" +"checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1" +"checksum num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba" +"checksum once_cell 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6959fb95e7164b7707aa016c65652f9f5a29a9210aa1800e64f51c6ac9988d51" +"checksum owned-read 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05d57fab18d627fc4dffbd78d4a25a5b5b5211fda724231f001bee4cef1b2d3b" +"checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" +"checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" +"checksum parking_lot 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fa7767817701cce701d5585b9c4db3cdd02086398322c1d7e8bf5094a96a2ce7" +"checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" +"checksum parking_lot_core 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "cb88cb1cb3790baa6776844f968fea3be44956cf184fa1be5a03341f5491278c" +"checksum proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915" +"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" +"checksum quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "cdd8e04bd9c52e0342b406469d494fcb033be4bdbe5c606016defbb1681411e1" +"checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" +"checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" +"checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" +"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" +"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" +"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" +"checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0" +"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" +"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" +"checksum rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832" +"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" +"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" +"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" +"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" +"checksum redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)" = "423e376fffca3dfa06c9e9790a9ccd282fafb3cc6e6397d01dbf64f9bacc6b85" +"checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" +"checksum regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "53ee8cfdddb2e0291adfb9f13d31d3bbe0a03c9a402c01b1e24188d86c35b24f" +"checksum regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8e931c58b93d86f080c734bfd2bce7dd0079ae2331235818133c8be7f422e20e" +"checksum regex-syntax 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8c2f35eedad5295fdf00a63d7d4b238135723f92b434ec06774dad15c7ab0861" +"checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" +"checksum rental 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d57522f275b02e67391947c98f99d55f297fefcb6699bb000340696e63620194" +"checksum rental-impl 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a269533a9b93bbaa4848260e51b64564cc445d46185979f31974ec703374803a" +"checksum rust-stemmers 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05928c187b85b38f6b98db43057a24f0245163635a5ce6325a4f77a833d646aa" +"checksum rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "adacaae16d02b6ec37fdc7acfcddf365978de76d1983d3ee22afc260e1ca9619" +"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" +"checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7" +"checksum same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8f20c4be53a8a1ff4c1f1b2bd14570d2f634628709752f0702ecdd2b3f9a5267" +"checksum scoped-pool 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "817a3a15e704545ce59ed2b5c60a5d32bda4d7869befb8b36667b658a6c00b43" +"checksum scopeguard 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "59a076157c1e2dc561d8de585151ee6965d910dd4dcb5dabb7ae3e83981a6c57" +"checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" +"checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" +"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" +"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" +"checksum serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "92514fb95f900c9b5126e32d020f5c6d40564c27a5ea6d1d7d9f157a96623560" +"checksum serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6eabf4b5914e88e24eea240bb7c9f9a2cbc1bbbe8d961d381975ec3c6b806c" +"checksum serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)" = "5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d" +"checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" +"checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be" +"checksum snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "95d697d63d44ad8b78b8d235bf85b34022a78af292c8918527c5f0cffdde7f43" +"checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" +"checksum syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1825685f977249735d510a242a6727b46efe914bb67e38d30c071b1b72b1d5c2" +"checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" +"checksum tantivy 0.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2ad771e12c6ce0cc544ef2f16d9e3a748582be87abd3f5e895c26993ff987b6e" +"checksum tantivy-fst 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "16b22af5ff09b8897093287642a5aaee6f30eb496526ef83a8dd0f4c636ac367" +"checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" +"checksum tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b86c784c88d98c801132806dadd3819ed29d8600836c4088e855cdf3e178ed8a" +"checksum termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4096add70612622289f2fdcdbd5086dc81c1e2675e6ae58d6c4f62a16c6d7f2f" +"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" +"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" +"checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" +"checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" +"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" +"checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" +"checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737" +"checksum uuid 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0238db0c5b605dd1cf51de0f21766f97fba2645897024461d6a00c036819a768" +"checksum variance 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3abfc2be1fb59663871379ea884fd81de80c496f2274e021c01d6fe56cd77b05" +"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" +"checksum walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "9d9d7ed3431229a144296213105a390676cc49c9b6a72bd19f3176c98e129fa1" +"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" +"checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0" +"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" +"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" +"checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" +"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +"checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba" +"checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" diff --git a/engines/tantivy-0.10/Cargo.toml b/engines/tantivy-0.10/Cargo.toml new file mode 100644 index 00000000000..d8e974ba16d --- /dev/null +++ b/engines/tantivy-0.10/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "tantivy-bench" +version = "0.1.0" +authors = ["Jason Wolfe"] + +[dependencies] +serde = "1.0" +serde_derive = "1.0" +serde_json = "1.0" +tantivy = "0.10" +env_logger = "0.5" +futures = "*" + +[profile.release] +lto = true +opt-level = 3 +overflow-checks = false +# debug-assertions = false diff --git a/engines/tantivy-0.10/Makefile b/engines/tantivy-0.10/Makefile new file mode 100644 index 00000000000..320f9497ec6 --- /dev/null +++ b/engines/tantivy-0.10/Makefile @@ -0,0 +1,19 @@ +clean: + rm -fr idx + rm -fr target + +compile: target/release/build_index target/release/do_query + +index: idx + +serve: target/release/do_query + @target/release/do_query idx + +target/release/%: + @echo "\n\n\n--- Building tantivy's binary ---" + @cargo build --release --bin $(notdir $@) + +idx: target/release/build_index + @echo "\n\n\n---- Indexing tantivy ----" + @mkdir -p idx + export RUST_LOG=info && target/release/build_index "$@" < ${CORPUS} diff --git a/engines/tantivy-0.10/src/bin/build_index.rs b/engines/tantivy-0.10/src/bin/build_index.rs new file mode 100644 index 00000000000..18977f9b0e7 --- /dev/null +++ b/engines/tantivy-0.10/src/bin/build_index.rs @@ -0,0 +1,54 @@ +extern crate tantivy; +extern crate core; +extern crate env_logger; +extern crate futures; + +use futures::future::Future; +use tantivy::schema::{Schema, TEXT, STORED}; +use tantivy::Index; +use std::env; +use std::io::BufRead; +use std::path::Path; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap(); +} + +fn create_schema() -> Schema { + let mut schema_builder = Schema::builder(); + schema_builder.add_text_field("id", STORED); + schema_builder.add_text_field("text", TEXT); + schema_builder.build() +} + +fn main_inner(output_dir: &Path) -> tantivy::Result<()> { + env_logger::init(); + + let schema = create_schema(); + let index = Index::create_in_dir(output_dir, schema.clone()).expect("failed to create index"); + + { + let mut index_writer = index.writer(1_500_000_000).expect("failed to create index writer"); + let stdin = std::io::stdin(); + + for line in stdin.lock().lines() { + let line = line?; + if line.trim().is_empty() { + continue; + } + let doc = schema.parse_document(&line)?; + index_writer.add_document(doc); + } + + index_writer.commit()?; + index_writer.wait_merging_threads()?; + } + { + let segment_ids = index.searchable_segment_ids()?; + let mut index_writer = index.writer(1_500_000_000).expect("failed to create index writer"); + index_writer.merge(&segment_ids)?.wait().unwrap(); + index_writer.garbage_collect_files()?; + } + Ok(()) +} diff --git a/engines/tantivy-0.10/src/bin/do_query.rs b/engines/tantivy-0.10/src/bin/do_query.rs new file mode 100644 index 00000000000..60418f9898b --- /dev/null +++ b/engines/tantivy-0.10/src/bin/do_query.rs @@ -0,0 +1,57 @@ +#![macro_use] +extern crate tantivy; + +use tantivy::Index; +use tantivy::query::QueryParser; +use tantivy::tokenizer::TokenizerManager; +use tantivy::collector::{Count, TopDocs}; + +use std::env; +use std::io::BufRead; +use std::path::Path; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap() +} + +fn main_inner(index_dir: &Path) -> tantivy::Result<()> { + let index = Index::open_in_dir(index_dir).expect("failed to open index"); + let text_field = index.schema().get_field("text").expect("no all field?!"); + let query_parser = QueryParser::new( + index.schema(), + vec![text_field], + TokenizerManager::default()); + let reader = index.reader()?; + let searcher = reader.searcher(); + + let stdin = std::io::stdin(); + for line_res in stdin.lock().lines() { + let line = line_res?; + let fields: Vec<&str> = line.split("\t").collect(); + assert_eq!(fields.len(), 2, "Expected a line in the format query."); + let command = fields[0]; + let query = query_parser.parse_query(fields[1])?; + let count; + match command { + "COUNT" => { + count = query.count(&searcher)?; + } + "TOP_10" => { + let _top_k = searcher.search(&query, &TopDocs::with_limit(10))?; + count = 1; + } + "TOP_10_COUNT" => { + let (_top_k, count_) = searcher.search(&query, &(TopDocs::with_limit(10), Count))?; + count = count_; + } + _ => { + println!("UNSUPPORTED"); + continue; + } + } + println!("{}", count); + } + + Ok(()) +} diff --git a/engines/tantivy-0.11/Cargo.lock b/engines/tantivy-0.11/Cargo.lock new file mode 100644 index 00000000000..a4562832897 --- /dev/null +++ b/engines/tantivy-0.11/Cargo.lock @@ -0,0 +1,1462 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "aho-corasick" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ascii" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "atomicwrites" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "atty" +version = "0.2.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "autocfg" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "backtrace" +version = "0.3.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "backtrace-sys" +version = "0.1.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "base64" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitflags" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitpacking" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "byteorder" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "c2-chacha" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cc" +version = "1.0.47" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "census" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cfg-if" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "chrono" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cloudabi" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "combine" +version = "3.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ascii 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crc32fast" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-queue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-channel" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-deque" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-queue" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-utils" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crunchy" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "downcast-rs" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "either" +version = "1.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "env_logger" +version = "0.5.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)", + "humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fail" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure_derive" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "filetime" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fnv" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "fs2" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fsevent" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fsevent-sys 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fsevent-sys" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fst" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fuchsia-cprng" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "fuchsia-zircon" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fuchsia-zircon-sys" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-channel 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-executor 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "futures-channel" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "futures-core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures-executor" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "futures-io" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures-macro" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "futures-sink" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures-task" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures-util" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures-channel 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-macro 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "getrandom" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "hermit-abi" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "htmlescape" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "humantime" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "inotify" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "inotify-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "inotify-sys" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "iovec" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "itertools" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "itoa" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "kernel32-sys" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lazycell" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "levenshtein_automata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fst 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libc" +version = "0.2.65" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "log" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "memchr" +version = "2.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "memmap" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "memoffset" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "mio" +version = "0.6.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "mio-extras" +version = "2.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "miow" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "murmurhash32" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "net2" +version = "0.2.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "nix" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "notify" +version = "4.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "filetime 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "fsevent 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fsevent-sys 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "inotify 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)", + "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-integer" +version = "0.1.41" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-traits" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num_cpus" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "once_cell" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "owned-read" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rental 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "owning_ref" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "pin-utils" +version = "0.1.0-alpha.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "ppv-lite86" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "proc-macro-hack" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "proc-macro-nested" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "proc-macro2" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "quick-error" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "quote" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_chacha" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_chacha" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_core" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rand_core" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_hc" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_hc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_isaac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_jitter" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_os" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_pcg" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_xorshift" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rayon" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon-core 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rayon-core" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-queue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rdrand" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "redox_syscall" +version = "0.1.56" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "regex" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)", + "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex-syntax" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "regex-syntax" +version = "0.6.12" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "remove_dir_all" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rental" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rental-impl 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rental-impl" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rust-stemmers" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rustc_version" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ryu" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "same-file" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "scopeguard" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "semver" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "semver-parser" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde" +version = "1.0.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "serde_derive" +version = "1.0.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "serde_json" +version = "1.0.41" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)", + "ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "slab" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "smallvec" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "snap" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "stable_deref_trait" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "syn" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "synstructure" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "atomicwrites 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitpacking 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "census 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", + "crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)", + "downcast-rs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fail 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "htmlescape 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", + "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "murmurhash32 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "notify 4.0.14 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)", + "once_cell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "owned-read 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rayon 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rust-stemmers 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tantivy-fst 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tantivy-query-grammar 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy-bench" +version = "0.1.0" +dependencies = [ + "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)", + "tantivy 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy-fst" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)", + "levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "utf8-ranges 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy-query-grammar" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "combine 3.8.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tempdir" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tempfile" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "termcolor" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "thread_local" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "time" +version = "0.1.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "unicode-xid" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unreachable" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "utf8-ranges" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "uuid" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "void" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "walkdir" +version = "2.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "same-file 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "wasi" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi-build" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi-util" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "wincolor" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ws2_32-sys" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[metadata] +"checksum aho-corasick 0.7.6 (registry+https://github.com/rust-lang/crates.io-index)" = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d" +"checksum ascii 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)" = "eab1c04a571841102f5345a8fc0f6bb3d31c315dec879b5c6e42e40ce7ffa34e" +"checksum atomicwrites 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6a2baf2feb820299c53c7ad1cc4f5914a220a1cb76d7ce321d2522a94b54651f" +"checksum atty 0.2.13 (registry+https://github.com/rust-lang/crates.io-index)" = "1803c647a3ec87095e7ae7acfca019e98de5ec9a7d01343f611cf3152ed71a90" +"checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2" +"checksum backtrace 0.3.40 (registry+https://github.com/rust-lang/crates.io-index)" = "924c76597f0d9ca25d762c25a4d369d51267536465dc5064bdf0eb073ed477ea" +"checksum backtrace-sys 0.1.32 (registry+https://github.com/rust-lang/crates.io-index)" = "5d6575f128516de27e3ce99689419835fce9643a9b215a14d2b5b685be018491" +"checksum base64 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b41b7ea54a0c9d92199de89e20e58d49f02f8e699814ef3fdf266f6f748d15c7" +"checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693" +"checksum bitpacking 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6f94e996feb537aab4f2cc05fbf5fb572df6c9830fa11df7dc61e3793ccdc405" +"checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5" +"checksum c2-chacha 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "214238caa1bf3a496ec3392968969cab8549f96ff30652c9e56885329315f6bb" +"checksum cc 1.0.47 (registry+https://github.com/rust-lang/crates.io-index)" = "aa87058dce70a3ff5621797f1506cb837edd02ac4c0ae642b4542dce802908b8" +"checksum census 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5927edd8345aef08578bcbb4aea7314f340d80c7f4931f99fbeb40b99d8f5060" +"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" +"checksum chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e8493056968583b0193c1bb04d6f7684586f3726992d6c573261941a895dbd68" +"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" +"checksum combine 3.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680" +"checksum crc32fast 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1" +"checksum crossbeam 0.7.3 (registry+https://github.com/rust-lang/crates.io-index)" = "69323bff1fb41c635347b8ead484a5ca6c3f11914d784170b158d8449ab07f8e" +"checksum crossbeam-channel 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "acec9a3b0b3559f15aee4f90746c4e5e293b701c0f7d3925d24e01645267b68c" +"checksum crossbeam-deque 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c3aa945d63861bfe624b55d153a39684da1e8c0bc8fba932f7ee3a3c16cea3ca" +"checksum crossbeam-epoch 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5064ebdbf05ce3cb95e45c8b086f72263f4166b29b97f6baff7ef7fe047b55ac" +"checksum crossbeam-queue 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dfd6515864a82d2f877b42813d4553292c6659498c9a2aa31bab5a15243c2700" +"checksum crossbeam-utils 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ce446db02cdc3165b94ae73111e570793400d0794e46125cc4056c81cbb039f4" +"checksum crunchy 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" +"checksum downcast-rs 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "52ba6eb47c2131e784a38b726eb54c1e1484904f013e576a25354d0124161af6" +"checksum either 1.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "bb1f6b1ce1c140482ea30ddd3335fc0024ac7ee112895426e0a629a6c20adfe3" +"checksum env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)" = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38" +"checksum fail 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "f63eec71a3013ee912a0ecb339ff0c5fa5ed9660df04bfefa10c250b885d018c" +"checksum failure 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f8273f13c977665c5db7eb2b99ae520952fe5ac831ae4cd09d80c4c7042b5ed9" +"checksum failure_derive 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0bc225b78e0391e4b8683440bf2e63c2deeeb2ce5189eab46e2b68c6d3725d08" +"checksum filetime 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1ff6d4dab0aa0c8e6346d46052e93b13a16cf847b54ed357087c35011048cc7d" +"checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" +"checksum fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" +"checksum fsevent 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5ab7d1bd1bd33cc98b0889831b72da23c0aa4df9cec7e0702f46ecea04b35db6" +"checksum fsevent-sys 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f41b048a94555da0f42f1d632e2e19510084fb8e303b0daa2816e733fb3644a0" +"checksum fst 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "927fb434ff9f0115b215dc0efd2e4fbdd7448522a92a1aa37c77d6a2f8f1ebd6" +"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" +"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" +"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" +"checksum futures 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b6f16056ecbb57525ff698bb955162d0cd03bee84e6241c27ff75c08d8ca5987" +"checksum futures-channel 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fcae98ca17d102fd8a3603727b9259fcf7fa4239b603d2142926189bc8999b86" +"checksum futures-core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "79564c427afefab1dfb3298535b21eda083ef7935b4f0ecbfcb121f0aec10866" +"checksum futures-executor 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "1e274736563f686a837a0568b478bdabfeaec2dca794b5649b04e2fe1627c231" +"checksum futures-io 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e676577d229e70952ab25f3945795ba5b16d63ca794ca9d2c860e5595d20b5ff" +"checksum futures-macro 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "52e7c56c15537adb4f76d0b7a76ad131cb4d2f4f32d3b0bcabcbe1c7c5e87764" +"checksum futures-sink 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "171be33efae63c2d59e6dbba34186fe0d6394fb378069a76dfd80fdcffd43c16" +"checksum futures-task 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0bae52d6b29cf440e298856fec3965ee6fa71b06aa7495178615953fd669e5f9" +"checksum futures-util 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c0d66274fb76985d3c62c886d1da7ac4c0903a8c9f754e8fe0f35a6a6cc39e76" +"checksum getrandom 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "e7db7ca94ed4cd01190ceee0d8a8052f08a247aa1b469a7f68c6a3b71afcf407" +"checksum hermit-abi 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "307c3c9f937f38e3534b1d6447ecf090cafcc9744e4a6360e8b037b2cf5af120" +"checksum htmlescape 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" +"checksum humantime 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" +"checksum inotify 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "40b54539f3910d6f84fbf9a643efd6e3aa6e4f001426c0329576128255994718" +"checksum inotify-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0" +"checksum iovec 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b2b3ea6ff95e175473f8ffe6a7eb7c00d054240321b84c57051175fe3c1e075e" +"checksum itertools 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "87fa75c9dea7b07be3138c49abbb83fd4bea199b5cdc76f9804458edc5da0d6e" +"checksum itoa 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "501266b7edd0174f8530248f87f99c88fbe60ca4ef3dd486835b8d8d53136f7f" +"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" +"checksum lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" +"checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" +"checksum levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73a004f877f468548d8d0ac4977456a249d8fabbdb8416c36db163dfc8f2e8ca" +"checksum libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)" = "1a31a0627fdf1f6a39ec0dd577e101440b7db22672c0901fe00a9a6fbb5c24e8" +"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7" +"checksum memchr 2.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e" +"checksum memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b" +"checksum memoffset 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "75189eb85871ea5c2e2c15abbdd541185f63b408415e5051f5cac122d8c774b9" +"checksum mio 0.6.19 (registry+https://github.com/rust-lang/crates.io-index)" = "83f51996a3ed004ef184e16818edc51fadffe8e7ca68be67f9dee67d84d0ff23" +"checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" +"checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" +"checksum murmurhash32 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d736ff882f0e85fe9689fb23db229616c4c00aee2b3ac282f666d8f20eb25d4a" +"checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" +"checksum nix 0.14.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce" +"checksum notify 4.0.14 (registry+https://github.com/rust-lang/crates.io-index)" = "199628fc33b21bc767baa057490b00b382ecbae030803a7b36292422d15b778b" +"checksum num-integer 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)" = "b85e541ef8255f6cf42bbfe4ef361305c6c135d10919ecc26126c4e5ae94bc09" +"checksum num-traits 0.2.9 (registry+https://github.com/rust-lang/crates.io-index)" = "443c53b3c3531dfcbfa499d8893944db78474ad7a1d87fa2d94d1a2231693ac6" +"checksum num_cpus 1.11.1 (registry+https://github.com/rust-lang/crates.io-index)" = "76dac5ed2a876980778b8b85f75a71b6cbf0db0b1232ee12f826bccb00d09d72" +"checksum once_cell 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "891f486f630e5c5a4916c7e16c4b24a53e78c860b646e9f8e005e4f16847bfed" +"checksum owned-read 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05d57fab18d627fc4dffbd78d4a25a5b5b5211fda724231f001bee4cef1b2d3b" +"checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" +"checksum pin-utils 0.1.0-alpha.4 (registry+https://github.com/rust-lang/crates.io-index)" = "5894c618ce612a3fa23881b152b608bafb8c56cfc22f434a3ba3120b40f7b587" +"checksum ppv-lite86 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "74490b50b9fbe561ac330df47c08f3f33073d2d00c150f719147d7c54522fa1b" +"checksum proc-macro-hack 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = "ecd45702f76d6d3c75a80564378ae228a85f0b59d2f3ed43c91b4a69eb2ebfc5" +"checksum proc-macro-nested 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "369a6ed065f249a159e06c45752c780bda2fb53c995718f9e484d08daa9eb42e" +"checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27" +"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" +"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe" +"checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" +"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" +"checksum rand 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae1b169243eaf61759b8475a998f0a385e42042370f3a7dbaf35246eacc8412" +"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" +"checksum rand_chacha 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "03a2a90da8c7523f554344f921aa97283eadf6ac484a6d2a7d0212fa7f8d6853" +"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" +"checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc" +"checksum rand_core 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" +"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" +"checksum rand_hc 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" +"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" +"checksum rand_jitter 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "1166d5c91dc97b88d1decc3285bb0a99ed84b05cfd0bc2341bdf2d43fc41e39b" +"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" +"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" +"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" +"checksum rayon 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "43739f8831493b276363637423d3622d4bd6394ab6f0a9c4a552e208aeb7fddd" +"checksum rayon-core 1.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f8bf17de6f23b05473c437eb958b9c850bfc8af0961fe17b4cc92d5a627b4791" +"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" +"checksum redox_syscall 0.1.56 (registry+https://github.com/rust-lang/crates.io-index)" = "2439c63f3f6139d1b57529d16bc3b8bb855230c8efcc5d3a896c8bea7c3b1e84" +"checksum regex 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd" +"checksum regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8e931c58b93d86f080c734bfd2bce7dd0079ae2331235818133c8be7f422e20e" +"checksum regex-syntax 0.6.12 (registry+https://github.com/rust-lang/crates.io-index)" = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716" +"checksum remove_dir_all 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "4a83fa3702a688b9359eccba92d153ac33fd2e8462f9e0e3fdf155239ea7792e" +"checksum rental 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8545debe98b2b139fb04cad8618b530e9b07c152d99a5de83c860b877d67847f" +"checksum rental-impl 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "475e68978dc5b743f2f40d8e0a8fdc83f1c5e78cbf4b8fa5e74e73beebc340de" +"checksum rust-stemmers 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54" +"checksum rustc-demangle 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "4c691c0e608126e00913e33f0ccf3727d5fc84573623b8d65b2df340b5201783" +"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" +"checksum ryu 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "bfa8506c1de11c9c4e4c38863ccbe02a305c8188e85a05a784c9e11e1c3910c8" +"checksum same-file 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "585e8ddcedc187886a30fa705c47985c3fa88d06624095856b36ca0b82ff4421" +"checksum scopeguard 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b42e15e59b18a828bbf5c58ea01debb36b9b096346de35d941dcb89009f24a0d" +"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" +"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" +"checksum serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4b39bd9b0b087684013a792c59e3e07a46a01d2322518d8a1104641a0b1be0" +"checksum serde_derive 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "ca13fc1a832f793322228923fbb3aba9f3f44444898f835d31ad1b74fa0a2bf8" +"checksum serde_json 1.0.41 (registry+https://github.com/rust-lang/crates.io-index)" = "2f72eb2a68a7dc3f9a691bfda9305a1c017a6215e5a4545c258500d2099a37c2" +"checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" +"checksum smallvec 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4ecf3b85f68e8abaa7555aa5abdb1153079387e60b718283d732f03897fcfc86" +"checksum snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "95d697d63d44ad8b78b8d235bf85b34022a78af292c8918527c5f0cffdde7f43" +"checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" +"checksum syn 1.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "661641ea2aa15845cddeb97dad000d22070bb5c1fb456b96c1cba883ec691e92" +"checksum synstructure 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "67656ea1dc1b41b1451851562ea232ec2e5a80242139f7e679ceccfb5d61f545" +"checksum tantivy 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c90faa34809a6a13c92e7b078bc623973e4023f6a2b08acb3ccad70b0fc5ad62" +"checksum tantivy-fst 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "16b22af5ff09b8897093287642a5aaee6f30eb496526ef83a8dd0f4c636ac367" +"checksum tantivy-query-grammar 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "13c33707d9d9c6e439e41bf88dc2036a5062341bb8221dbc1827079ae4bbb5ad" +"checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" +"checksum tempfile 3.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9" +"checksum termcolor 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "96d6098003bde162e4277c70665bd87c326f5a0c3f3fbfb285787fa482d54e6e" +"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" +"checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" +"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c" +"checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" +"checksum utf8-ranges 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b4ae116fef2b7fea257ed6440d3cfcff7f190865f170cdad00bb6465bf18ecba" +"checksum uuid 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "9fde2f6a4bea1d6e007c4ad38c6839fa71cbb63b6dbf5b595aa38dc9b1093c11" +"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" +"checksum walkdir 2.2.9 (registry+https://github.com/rust-lang/crates.io-index)" = "9658c94fa8b940eab2250bd5a457f9c48b748420d71293b165c8cdbe2f55f71e" +"checksum wasi 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b89c3ce4ce14bdc6fb6beaf9ec7928ca331de5df7e5ea278375642a2f478570d" +"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" +"checksum winapi 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6" +"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" +"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" +"checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" +"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +"checksum wincolor 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "96f5016b18804d24db43cebf3c77269e7569b8954a8464501c216cc5e070eaa9" +"checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" diff --git a/engines/tantivy-0.11/Cargo.toml b/engines/tantivy-0.11/Cargo.toml new file mode 100644 index 00000000000..19c292bb8cf --- /dev/null +++ b/engines/tantivy-0.11/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "tantivy-bench" +version = "0.1.0" +authors = ["Jason Wolfe"] +edition = "2018" + +[dependencies] +serde = "1.0" +serde_derive = "1.0" +serde_json = "1.0" +tantivy = "0.11" +env_logger = "0.5" +futures = "*" + +[profile.release] +lto = true +opt-level = 3 +overflow-checks = false +# debug-assertions = false diff --git a/engines/tantivy-0.11/Makefile b/engines/tantivy-0.11/Makefile new file mode 100644 index 00000000000..320f9497ec6 --- /dev/null +++ b/engines/tantivy-0.11/Makefile @@ -0,0 +1,19 @@ +clean: + rm -fr idx + rm -fr target + +compile: target/release/build_index target/release/do_query + +index: idx + +serve: target/release/do_query + @target/release/do_query idx + +target/release/%: + @echo "\n\n\n--- Building tantivy's binary ---" + @cargo build --release --bin $(notdir $@) + +idx: target/release/build_index + @echo "\n\n\n---- Indexing tantivy ----" + @mkdir -p idx + export RUST_LOG=info && target/release/build_index "$@" < ${CORPUS} diff --git a/engines/tantivy-0.11/src/bin/build_index.rs b/engines/tantivy-0.11/src/bin/build_index.rs new file mode 100644 index 00000000000..e43ede33486 --- /dev/null +++ b/engines/tantivy-0.11/src/bin/build_index.rs @@ -0,0 +1,50 @@ +use tantivy::schema::{Schema, TEXT, STORED}; +use tantivy::Index; +use std::env; +use std::io::BufRead; +use std::path::Path; +use futures::executor::block_on; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap(); +} + +fn create_schema() -> Schema { + let mut schema_builder = Schema::builder(); + schema_builder.add_text_field("id", STORED); + schema_builder.add_text_field("text", TEXT); + schema_builder.build() +} + +fn main_inner(output_dir: &Path) -> tantivy::Result<()> { + env_logger::init(); + + + let schema = create_schema(); + let index = Index::create_in_dir(output_dir, schema.clone()).expect("failed to create index"); + + { + let mut index_writer = index.writer_with_num_threads(3, 2_000_000_000).expect("failed to create index writer"); + let stdin = std::io::stdin(); + + for line in stdin.lock().lines() { + let line = line?; + if line.trim().is_empty() { + continue; + } + let doc = schema.parse_document(&line)?; + index_writer.add_document(doc); + } + + index_writer.commit()?; + index_writer.wait_merging_threads()?; + } + { + let segment_ids = index.searchable_segment_ids()?; + let mut index_writer = index.writer(1_500_000_000).expect("failed to create index writer"); + block_on(index_writer.merge(&segment_ids))?; + block_on(index_writer.garbage_collect_files())?; + } + Ok(()) +} diff --git a/engines/tantivy-0.11/src/bin/do_query.rs b/engines/tantivy-0.11/src/bin/do_query.rs new file mode 100644 index 00000000000..60418f9898b --- /dev/null +++ b/engines/tantivy-0.11/src/bin/do_query.rs @@ -0,0 +1,57 @@ +#![macro_use] +extern crate tantivy; + +use tantivy::Index; +use tantivy::query::QueryParser; +use tantivy::tokenizer::TokenizerManager; +use tantivy::collector::{Count, TopDocs}; + +use std::env; +use std::io::BufRead; +use std::path::Path; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap() +} + +fn main_inner(index_dir: &Path) -> tantivy::Result<()> { + let index = Index::open_in_dir(index_dir).expect("failed to open index"); + let text_field = index.schema().get_field("text").expect("no all field?!"); + let query_parser = QueryParser::new( + index.schema(), + vec![text_field], + TokenizerManager::default()); + let reader = index.reader()?; + let searcher = reader.searcher(); + + let stdin = std::io::stdin(); + for line_res in stdin.lock().lines() { + let line = line_res?; + let fields: Vec<&str> = line.split("\t").collect(); + assert_eq!(fields.len(), 2, "Expected a line in the format query."); + let command = fields[0]; + let query = query_parser.parse_query(fields[1])?; + let count; + match command { + "COUNT" => { + count = query.count(&searcher)?; + } + "TOP_10" => { + let _top_k = searcher.search(&query, &TopDocs::with_limit(10))?; + count = 1; + } + "TOP_10_COUNT" => { + let (_top_k, count_) = searcher.search(&query, &(TopDocs::with_limit(10), Count))?; + count = count_; + } + _ => { + println!("UNSUPPORTED"); + continue; + } + } + println!("{}", count); + } + + Ok(()) +} diff --git a/engines/tantivy-0.13/Cargo.toml b/engines/tantivy-0.13/Cargo.toml new file mode 100644 index 00000000000..dcac88fd4bf --- /dev/null +++ b/engines/tantivy-0.13/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "tantivy-bench" +version = "0.1.0" +authors = ["Jason Wolfe"] +edition = "2018" + +[dependencies] +serde = "1.0" +serde_derive = "1.0" +serde_json = "1.0" +tantivy = "0.13" +env_logger = "0.5" +futures = "*" + +[profile.release] +lto = true +opt-level = 3 +overflow-checks = false +# debug-assertions = false diff --git a/engines/tantivy-0.13/Makefile b/engines/tantivy-0.13/Makefile new file mode 100644 index 00000000000..320f9497ec6 --- /dev/null +++ b/engines/tantivy-0.13/Makefile @@ -0,0 +1,19 @@ +clean: + rm -fr idx + rm -fr target + +compile: target/release/build_index target/release/do_query + +index: idx + +serve: target/release/do_query + @target/release/do_query idx + +target/release/%: + @echo "\n\n\n--- Building tantivy's binary ---" + @cargo build --release --bin $(notdir $@) + +idx: target/release/build_index + @echo "\n\n\n---- Indexing tantivy ----" + @mkdir -p idx + export RUST_LOG=info && target/release/build_index "$@" < ${CORPUS} diff --git a/engines/tantivy-0.13/src/bin/build_index.rs b/engines/tantivy-0.13/src/bin/build_index.rs new file mode 100644 index 00000000000..fa0996bfc8e --- /dev/null +++ b/engines/tantivy-0.13/src/bin/build_index.rs @@ -0,0 +1,57 @@ +use futures::executor::block_on; +use std::env; +use std::io::BufRead; +use std::path::Path; +use tantivy::schema::{Schema, STORED, TEXT}; +use tantivy::Index; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap(); +} + +fn create_schema() -> Schema { + let mut schema_builder = Schema::builder(); + schema_builder.add_text_field("id", STORED); + schema_builder.add_u64_field("id_num", FAST | INDEXED); + schema_builder.add_text_field("text", TEXT); + schema_builder.build() +} + +fn main_inner(output_dir: &Path) -> tantivy::Result<()> { + env_logger::init(); + + let schema = create_schema(); + let index = Index::create_in_dir(output_dir, schema.clone()).expect("failed to create index"); + + let mut i = 0; + { + let mut index_writer = index + .writer_with_num_threads(4, 2_000_000_000) + .expect("failed to create index writer"); + let stdin = std::io::stdin(); + + for line in stdin.lock().lines() { + let line = line?; + if line.trim().is_empty() { + continue; + } + i += 1; + if i % 100_000 == 0 { + println!("{}", i); + } + let doc = schema.parse_document(&line)?; + index_writer.add_document(doc); + } + + index_writer.commit()?; + index_writer.wait_merging_threads()?; + } + let segment_ids = index.searchable_segment_ids()?; + let mut index_writer = index + .writer(1_500_000_000) + .expect("failed to create index writer"); + block_on(index_writer.merge(&segment_ids))?; + block_on(index_writer.garbage_collect_files())?; + Ok(()) +} diff --git a/engines/tantivy-0.13/src/bin/do_query.rs b/engines/tantivy-0.13/src/bin/do_query.rs new file mode 100644 index 00000000000..3619d31ad7a --- /dev/null +++ b/engines/tantivy-0.13/src/bin/do_query.rs @@ -0,0 +1,140 @@ +#![macro_use] +extern crate tantivy; + +use tantivy::{Index, SegmentReader, Score, DocId, TERMINATED}; +use tantivy::query::{QueryParser, Weight}; +use tantivy::tokenizer::TokenizerManager; +use tantivy::collector::{Count, TopDocs}; + +use std::env; +use std::io::BufRead; +use std::path::Path; +use std::collections::BinaryHeap; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap() +} + +struct Float(Score); + +use std::cmp::Ordering; + + +impl Eq for Float { +} + +impl PartialEq for Float { + fn eq(&self, other: &Self) -> bool { + self.cmp(&other) == Ordering::Equal + } +} + +impl PartialOrd for Float { + fn partial_cmp(&self, other: &Self) -> Option { + Some(self.cmp(other)) + } +} + +impl Ord for Float { + fn cmp(&self, other: &Self) -> Ordering { + other.0.partial_cmp(&self.0).unwrap_or(Ordering::Equal) + } +} + +fn checkpoints_pruning(weight: &dyn Weight, reader: &SegmentReader, n: usize) -> tantivy::Result> { + let mut heap: BinaryHeap = BinaryHeap::with_capacity(n); + let mut checkpoints: Vec<(DocId, Score, Score)> = Vec::new(); + let mut limit: Score = 0.0; + weight.for_each_pruning(Score::MIN, reader, &mut |doc, score| { + checkpoints.push((doc,score, score)); + // println!("pruning doc={} score={} limit={}", doc, score, limit); + heap.push(Float(score)); + if heap.len() > n { + heap.pop().unwrap(); + } + limit = heap.peek().unwrap().0; + return limit; + })?; + Ok(checkpoints) +} + +fn checkpoints_no_pruning(weight: &dyn Weight, reader: &SegmentReader, n: usize) -> tantivy::Result> { + let mut heap: BinaryHeap = BinaryHeap::with_capacity(n); + let mut checkpoints: Vec<(DocId, Score, Score)> = Vec::new(); + let mut scorer = weight.scorer(reader, 1.0)?; + let mut limit = Score::MIN; + loop { + if scorer.doc() == TERMINATED { + break; + } + let doc = scorer.doc(); + let score = scorer.score(); + if score > limit { + // println!("nopruning doc={} score={} limit={}", doc, score, limit); + checkpoints.push((doc, limit, score)); + heap.push(Float(score)); + if heap.len() > n { + heap.pop().unwrap(); + } + limit = heap.peek().unwrap().0; + } + scorer.advance(); + } + Ok(checkpoints) +} + +fn assert_nearly_equals(left: Score, right: Score) -> bool { + (left - right).abs() * 2.0 / (left + right).abs() < 0.000001 +} + +fn main_inner(index_dir: &Path) -> tantivy::Result<()> { + let index = Index::open_in_dir(index_dir).expect("failed to open index"); + let text_field = index.schema().get_field("text").expect("no all field?!"); + let query_parser = QueryParser::new( + index.schema(), + vec![text_field], + TokenizerManager::default()); + let reader = index.reader()?; + let searcher = reader.searcher(); + + let stdin = std::io::stdin(); + for line_res in stdin.lock().lines() { + let line = line_res?; + let fields: Vec<&str> = line.split("\t").collect(); + assert_eq!(fields.len(), 2, "Expected a line in the format query."); + let command = fields[0]; + let query = query_parser.parse_query(fields[1])?; + let count; + match command { + "COUNT" => { + count = query.count(&searcher)?; + } + "TOP_10" => { + let _top_k = searcher.search(&query, &TopDocs::with_limit(10))?; + count = 1; + } + "TOP_10_COUNT" => { + let (_top_k, count_) = searcher.search(&query, &(TopDocs::with_limit(10), Count))?; + count = count_; + } + "DEBUG_TOP_10" => { + let weight = query.weight(&searcher, true)?; + for reader in searcher.segment_readers() { + let checkpoints_left = + checkpoints_no_pruning(&*weight, reader, 10)?; + let checkpoints_right = + checkpoints_pruning(&*weight, reader, 10)?; + } + count = 0; + } + _ => { + println!("UNSUPPORTED"); + continue; + } + } + println!("{}", count); + } + + Ok(()) +} diff --git a/engines/tantivy-0.13/src/bin/reproduce.rs b/engines/tantivy-0.13/src/bin/reproduce.rs new file mode 100644 index 00000000000..2f989fc6d15 --- /dev/null +++ b/engines/tantivy-0.13/src/bin/reproduce.rs @@ -0,0 +1,84 @@ +use tantivy; +use tantivy::query::{Query, TermQuery, QueryParser}; +use tantivy::{Term, TERMINATED, Searcher, DocSet, SegmentId, DocId, Score}; +use tantivy::schema::IndexRecordOption; +use tantivy::query::Scorer; +use futures::executor::block_on; + +// fn test_block_wand_aux(term_query: &TermQuery, searcher: &Searcher) -> tantivy::Result<()> { +// let term_weight = term_query.specialized_weight(&searcher, true); +// for (i, reader) in searcher.segment_readers().iter().enumerate() { +// println!("-------- #{}", i); +// let mut block_max_scores = vec![]; +// let mut block_max_scores_b = vec![]; +// let mut docs = vec![]; +// { +// let mut term_scorer = term_weight.specialized_scorer(reader, 1.0f32)?; +// let num_docs = (0u32..term_scorer.doc_freq() as u32).collect::>(); +// for _ in 0..128 { +// let mut score = 0.0f32; +// docs.push(term_scorer.doc()); +// for i in 0..128 { +// score = score.max(term_scorer.score()); +// term_scorer.advance(); +// } +// block_max_scores.push(score); +// } +// } +// dbg!(&docs); +// { +// for d in docs { +// let mut term_scorer = term_weight.specialized_scorer(reader, 1.0f32)?; +// +// { +// let skip_reader = &term_scorer.postings.block_cursor.skip_reader; +// dbg!((skip_reader.last_doc_in_previous_block, skip_reader.last_doc_in_block)); +// } +// term_scorer.shallow_seek(d); +// block_max_scores_b.push(term_scorer.block_max_score()); +// } +// } +// +// for (l, r) in block_max_scores.iter().cloned().zip(block_max_scores_b.iter().cloned()) { +// dbg!((l, r)); +// assert!(2f32 * (l - r).abs() / (l.abs() + r.abs()) < 0.00001, "{} {}", l, r); +// } +// } +// Ok(()) +// } + +fn score(query: &dyn Query, searcher: &Searcher, doc: DocId) -> tantivy::Result { + let weight = query.weight(&searcher, true)?; + let mut scorer = weight.scorer(searcher.segment_reader(0), 1.0f32)?; + assert_eq!(scorer.seek(537_388), 537_388); + Ok(scorer.score()) +} + +fn main() -> tantivy::Result<()> { + let index = tantivy::Index::open_in_dir("idx")?; + let field = index.schema().get_field("text").unwrap(); + let query_parser = QueryParser::for_index(&index, vec![field]); + + let central_query = TermQuery::new(Term::from_field_text(field, "central"), IndexRecordOption::WithFreqs); + let community_query = TermQuery::new(Term::from_field_text(field, "community"), IndexRecordOption::WithFreqs); + let college = TermQuery::new(Term::from_field_text(field, "college"), IndexRecordOption::WithFreqs); + + + let mut query = query_parser.parse_query("central community college")?; + let reader = index.reader()?; + reader.reload()?; + let searcher = reader.searcher(); + + let doc = 537_388; + let central_score = score(¢ral_query, &searcher, doc)? as f64; + let community_score = score(&community_query, &searcher, doc)? as f64; + let college_score = score(&college, &searcher, doc)? as f64; + + dbg!(central_score); + dbg!(community_score); + dbg!(college_score); + + dbg!(central_score + community_score + college_score); + dbg!(community_score + college_score + central_score ); + Ok(()) +} diff --git a/engines/tantivy-0.16/Cargo.lock b/engines/tantivy-0.16/Cargo.lock new file mode 100644 index 00000000000..9e1d6c0739f --- /dev/null +++ b/engines/tantivy-0.16/Cargo.lock @@ -0,0 +1,1073 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "ahash" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" +dependencies = [ + "getrandom 0.2.3", + "once_cell", + "version_check", +] + +[[package]] +name = "aho-corasick" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" +dependencies = [ + "memchr", +] + +[[package]] +name = "atty" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" +dependencies = [ + "hermit-abi", + "libc", + "winapi", +] + +[[package]] +name = "autocfg" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" + +[[package]] +name = "base64" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitpacking" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8c7d2ac73c167c06af4a5f37e6e59d84148d57ccbe4480b76f0273eefea82d7" +dependencies = [ + "crunchy", +] + +[[package]] +name = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" + +[[package]] +name = "census" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5927edd8345aef08578bcbb4aea7314f340d80c7f4931f99fbeb40b99d8f5060" + +[[package]] +name = "cfg-if" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "chrono" +version = "0.4.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" +dependencies = [ + "libc", + "num-integer", + "num-traits", + "time", + "winapi", +] + +[[package]] +name = "combine" +version = "4.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a909e4d93292cd8e9c42e189f61681eff9d67b6541f96b8a1a737f23737bd001" +dependencies = [ + "memchr", +] + +[[package]] +name = "crc32fast" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a" +dependencies = [ + "cfg-if 1.0.0", +] + +[[package]] +name = "crossbeam" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ae5588f6b3c3cb05239e90bd110f257254aecd01e4635400391aeae07497845" +dependencies = [ + "cfg-if 1.0.0", + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-epoch", + "crossbeam-queue", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4" +dependencies = [ + "cfg-if 1.0.0", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e" +dependencies = [ + "cfg-if 1.0.0", + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd" +dependencies = [ + "cfg-if 1.0.0", + "crossbeam-utils", + "lazy_static", + "memoffset", + "scopeguard", +] + +[[package]] +name = "crossbeam-queue" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b10ddc024425c88c2ad148c1b0fd53f4c6d38db9697c9f1588381212fa657c9" +dependencies = [ + "cfg-if 1.0.0", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" +dependencies = [ + "cfg-if 1.0.0", + "lazy_static", +] + +[[package]] +name = "crunchy" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" + +[[package]] +name = "downcast-rs" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" + +[[package]] +name = "either" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" + +[[package]] +name = "env_logger" +version = "0.5.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38" +dependencies = [ + "atty", + "humantime", + "log", + "regex", + "termcolor", +] + +[[package]] +name = "fail" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3be3c61c59fdc91f5dbc3ea31ee8623122ce80057058be560654c5d410d181a6" +dependencies = [ + "lazy_static", + "log", + "rand 0.7.3", +] + +[[package]] +name = "fastdivide" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4a99a2d53cf90642500986ad22e5083b09e42d44c408f5f112e2a4a0925a643c" + +[[package]] +name = "fastfield_codecs" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0e8bfa31546b4ace05092c9db8d251d7bbc298a384875a08c945a473de4f1f" +dependencies = [ + "tantivy-bitpacker", + "tantivy-common", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "fs2" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "futures" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a12aa0eb539080d55c3f2d45a67c3b58b6b0773c1a3ca2dfec66d58c97fd66ca" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d" + +[[package]] +name = "futures-executor" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45025be030969d763025784f7f355043dc6bc74093e4ecc5000ca4dc50d8745c" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", + "num_cpus", +] + +[[package]] +name = "futures-io" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "522de2a0fe3e380f1bc577ba0474108faf3f6b18321dbf60b3b9c39a75073377" + +[[package]] +name = "futures-macro" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18e4a4b95cea4b4ccbcf1c5675ca7c4ee4e9e75eb79944d07defde18068f79bb" +dependencies = [ + "autocfg", + "proc-macro-hack", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "futures-sink" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36ea153c13024fe480590b3e3d4cad89a0cfacecc24577b68f86c6ced9c2bc11" + +[[package]] +name = "futures-task" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99" + +[[package]] +name = "futures-util" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481" +dependencies = [ + "autocfg", + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "proc-macro-hack", + "proc-macro-nested", + "slab", +] + +[[package]] +name = "getrandom" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "wasi 0.9.0+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "wasi 0.10.2+wasi-snapshot-preview1", +] + +[[package]] +name = "hashbrown" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" +dependencies = [ + "ahash", +] + +[[package]] +name = "hermit-abi" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" +dependencies = [ + "libc", +] + +[[package]] +name = "htmlescape" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" + +[[package]] +name = "humantime" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" +dependencies = [ + "quick-error", +] + +[[package]] +name = "itertools" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "levenshtein_automata" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25" + +[[package]] +name = "libc" +version = "0.2.105" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "869d572136620d55835903746bcb5cdc54cb2851fd0aeec53220b4bb65ef3013" + +[[package]] +name = "log" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" +dependencies = [ + "cfg-if 1.0.0", +] + +[[package]] +name = "lru" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ea2d928b485416e8908cff2d97d621db22b27f7b3b6729e438bcf42c671ba91" +dependencies = [ + "hashbrown", +] + +[[package]] +name = "lz4_flex" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5827b976d911b5d2e42b2ccfc7c0d2461a1414e8280436885218762fc529b3f8" +dependencies = [ + "twox-hash", +] + +[[package]] +name = "measure_time" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c68c8a1703dd54ab3307c03401e8b6c42121b67501dd6c6deb5077914ccb8085" +dependencies = [ + "log", +] + +[[package]] +name = "memchr" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" + +[[package]] +name = "memmap2" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "00b6c2ebff6180198788f5db08d7ce3bc1d0b617176678831a7510825973e357" +dependencies = [ + "libc", +] + +[[package]] +name = "memoffset" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9" +dependencies = [ + "autocfg", +] + +[[package]] +name = "murmurhash32" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d736ff882f0e85fe9689fb23db229616c4c00aee2b3ac282f666d8f20eb25d4a" +dependencies = [ + "byteorder", +] + +[[package]] +name = "num-integer" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" +dependencies = [ + "autocfg", + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_cpus" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "once_cell" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "692fcb63b64b1758029e0a96ee63e049ce8c5948587f2f7208df04625e5f6b56" + +[[package]] +name = "ownedbytes" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc63b0786f6b95cba13bd1d6aea49ad1f595dc4d859305ac123de251575219ed" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "ppv-lite86" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3ca011bd0129ff4ae15cd04c4eef202cadf6c51c21e47aba319b4e0501db741" + +[[package]] +name = "proc-macro-hack" +version = "0.5.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" + +[[package]] +name = "proc-macro-nested" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" + +[[package]] +name = "proc-macro2" +version = "1.0.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edc3358ebc67bc8b7fa0c007f945b0b18226f78437d61bec735a9eb96b61ee70" +dependencies = [ + "unicode-xid", +] + +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quote" +version = "1.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" +dependencies = [ + "getrandom 0.1.16", + "libc", + "rand_chacha 0.2.2", + "rand_core 0.5.1", + "rand_hc 0.2.0", +] + +[[package]] +name = "rand" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" +dependencies = [ + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.3", + "rand_hc 0.3.1", +] + +[[package]] +name = "rand_chacha" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" +dependencies = [ + "ppv-lite86", + "rand_core 0.5.1", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.3", +] + +[[package]] +name = "rand_core" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" +dependencies = [ + "getrandom 0.1.16", +] + +[[package]] +name = "rand_core" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" +dependencies = [ + "getrandom 0.2.3", +] + +[[package]] +name = "rand_hc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" +dependencies = [ + "rand_core 0.5.1", +] + +[[package]] +name = "rand_hc" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" +dependencies = [ + "rand_core 0.6.3", +] + +[[package]] +name = "rayon" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90" +dependencies = [ + "autocfg", + "crossbeam-deque", + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e" +dependencies = [ + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-utils", + "lazy_static", + "num_cpus", +] + +[[package]] +name = "redox_syscall" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff" +dependencies = [ + "bitflags", +] + +[[package]] +name = "regex" +version = "1.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax 0.6.25", +] + +[[package]] +name = "regex-syntax" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e931c58b93d86f080c734bfd2bce7dd0079ae2331235818133c8be7f422e20e" + +[[package]] +name = "regex-syntax" +version = "0.6.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" + +[[package]] +name = "remove_dir_all" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" +dependencies = [ + "winapi", +] + +[[package]] +name = "rust-stemmers" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54" +dependencies = [ + "serde", + "serde_derive", +] + +[[package]] +name = "ryu" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" + +[[package]] +name = "scopeguard" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" + +[[package]] +name = "serde" +version = "1.0.130" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.130" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.68" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f690853975602e1bfe1ccbf50504d67174e3bcf340f23b5ea9992e0587a52d8" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "slab" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5" + +[[package]] +name = "smallvec" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309" + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "syn" +version = "1.0.80" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d010a1623fbd906d51d650a9916aaefc05ffa0e4053ff7fe601167f3e715d194" +dependencies = [ + "proc-macro2", + "quote", + "unicode-xid", +] + +[[package]] +name = "tantivy" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25e733d58e88c51fb0ed76305885ce617a49731e3476514cf7ad4394668dfbc7" +dependencies = [ + "base64", + "bitpacking", + "byteorder", + "census", + "chrono", + "crc32fast", + "crossbeam", + "downcast-rs", + "fail", + "fastdivide", + "fastfield_codecs", + "fnv", + "fs2", + "futures", + "htmlescape", + "itertools", + "levenshtein_automata", + "log", + "lru", + "lz4_flex", + "measure_time", + "memmap2", + "murmurhash32", + "num_cpus", + "once_cell", + "ownedbytes", + "rayon", + "regex", + "rust-stemmers", + "serde", + "serde_json", + "smallvec", + "stable_deref_trait", + "tantivy-bitpacker", + "tantivy-common", + "tantivy-fst", + "tantivy-query-grammar", + "tempfile", + "thiserror", + "uuid", + "winapi", +] + +[[package]] +name = "tantivy-bench" +version = "0.1.0" +dependencies = [ + "env_logger", + "futures", + "serde", + "serde_derive", + "serde_json", + "tantivy", +] + +[[package]] +name = "tantivy-bitpacker" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66d10a5ed75437a4f6bbbba67601cd5adab8d71f5188b677055381f0f36064f2" + +[[package]] +name = "tantivy-common" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "760e44073e328f4ea3f38660da9ba2598a19ad5ad4149cfb89ad89b4d5ee88d9" +dependencies = [ + "byteorder", +] + +[[package]] +name = "tantivy-fst" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb20cdc0d83e9184560bdde9cd60142dbb4af2e0f770e88fce45770495224205" +dependencies = [ + "byteorder", + "regex-syntax 0.4.2", + "utf8-ranges", +] + +[[package]] +name = "tantivy-query-grammar" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "466e0218472a9b276a73e38b2571ac02f9a1b270b4481c9cd8cc23a63d1307e9" +dependencies = [ + "combine", +] + +[[package]] +name = "tempfile" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22" +dependencies = [ + "cfg-if 1.0.0", + "libc", + "rand 0.8.4", + "redox_syscall", + "remove_dir_all", + "winapi", +] + +[[package]] +name = "termcolor" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "thiserror" +version = "1.0.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "time" +version = "0.1.43" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "twox-hash" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f559b464de2e2bdabcac6a210d12e9b5a5973c251e102c44c585c71d51bd78e" +dependencies = [ + "cfg-if 0.1.10", + "static_assertions", +] + +[[package]] +name = "unicode-xid" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3" + +[[package]] +name = "utf8-ranges" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ae116fef2b7fea257ed6440d3cfcff7f190865f170cdad00bb6465bf18ecba" + +[[package]] +name = "uuid" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" +dependencies = [ + "getrandom 0.2.3", + "serde", +] + +[[package]] +name = "version_check" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" + +[[package]] +name = "wasi" +version = "0.9.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + +[[package]] +name = "wasi" +version = "0.10.2+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" +dependencies = [ + "winapi", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" diff --git a/engines/tantivy-0.16/Cargo.toml b/engines/tantivy-0.16/Cargo.toml new file mode 100644 index 00000000000..1a80f7a7fb5 --- /dev/null +++ b/engines/tantivy-0.16/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "tantivy-bench" +version = "0.1.0" +authors = ["Jason Wolfe"] +edition = "2018" + +[dependencies] +serde = "1.0" +serde_derive = "1.0" +serde_json = "1.0" +tantivy = "0.16" +env_logger = "0.5" +futures = "*" + +[profile.release] +lto = true +opt-level = 3 +overflow-checks = false +# debug-assertions = false diff --git a/engines/tantivy-0.16/Makefile b/engines/tantivy-0.16/Makefile new file mode 100644 index 00000000000..320f9497ec6 --- /dev/null +++ b/engines/tantivy-0.16/Makefile @@ -0,0 +1,19 @@ +clean: + rm -fr idx + rm -fr target + +compile: target/release/build_index target/release/do_query + +index: idx + +serve: target/release/do_query + @target/release/do_query idx + +target/release/%: + @echo "\n\n\n--- Building tantivy's binary ---" + @cargo build --release --bin $(notdir $@) + +idx: target/release/build_index + @echo "\n\n\n---- Indexing tantivy ----" + @mkdir -p idx + export RUST_LOG=info && target/release/build_index "$@" < ${CORPUS} diff --git a/engines/tantivy-0.16/src/bin/build_index.rs b/engines/tantivy-0.16/src/bin/build_index.rs new file mode 100644 index 00000000000..fa0996bfc8e --- /dev/null +++ b/engines/tantivy-0.16/src/bin/build_index.rs @@ -0,0 +1,57 @@ +use futures::executor::block_on; +use std::env; +use std::io::BufRead; +use std::path::Path; +use tantivy::schema::{Schema, STORED, TEXT}; +use tantivy::Index; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap(); +} + +fn create_schema() -> Schema { + let mut schema_builder = Schema::builder(); + schema_builder.add_text_field("id", STORED); + schema_builder.add_u64_field("id_num", FAST | INDEXED); + schema_builder.add_text_field("text", TEXT); + schema_builder.build() +} + +fn main_inner(output_dir: &Path) -> tantivy::Result<()> { + env_logger::init(); + + let schema = create_schema(); + let index = Index::create_in_dir(output_dir, schema.clone()).expect("failed to create index"); + + let mut i = 0; + { + let mut index_writer = index + .writer_with_num_threads(4, 2_000_000_000) + .expect("failed to create index writer"); + let stdin = std::io::stdin(); + + for line in stdin.lock().lines() { + let line = line?; + if line.trim().is_empty() { + continue; + } + i += 1; + if i % 100_000 == 0 { + println!("{}", i); + } + let doc = schema.parse_document(&line)?; + index_writer.add_document(doc); + } + + index_writer.commit()?; + index_writer.wait_merging_threads()?; + } + let segment_ids = index.searchable_segment_ids()?; + let mut index_writer = index + .writer(1_500_000_000) + .expect("failed to create index writer"); + block_on(index_writer.merge(&segment_ids))?; + block_on(index_writer.garbage_collect_files())?; + Ok(()) +} diff --git a/engines/tantivy-0.16/src/bin/do_query.rs b/engines/tantivy-0.16/src/bin/do_query.rs new file mode 100644 index 00000000000..3619d31ad7a --- /dev/null +++ b/engines/tantivy-0.16/src/bin/do_query.rs @@ -0,0 +1,140 @@ +#![macro_use] +extern crate tantivy; + +use tantivy::{Index, SegmentReader, Score, DocId, TERMINATED}; +use tantivy::query::{QueryParser, Weight}; +use tantivy::tokenizer::TokenizerManager; +use tantivy::collector::{Count, TopDocs}; + +use std::env; +use std::io::BufRead; +use std::path::Path; +use std::collections::BinaryHeap; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap() +} + +struct Float(Score); + +use std::cmp::Ordering; + + +impl Eq for Float { +} + +impl PartialEq for Float { + fn eq(&self, other: &Self) -> bool { + self.cmp(&other) == Ordering::Equal + } +} + +impl PartialOrd for Float { + fn partial_cmp(&self, other: &Self) -> Option { + Some(self.cmp(other)) + } +} + +impl Ord for Float { + fn cmp(&self, other: &Self) -> Ordering { + other.0.partial_cmp(&self.0).unwrap_or(Ordering::Equal) + } +} + +fn checkpoints_pruning(weight: &dyn Weight, reader: &SegmentReader, n: usize) -> tantivy::Result> { + let mut heap: BinaryHeap = BinaryHeap::with_capacity(n); + let mut checkpoints: Vec<(DocId, Score, Score)> = Vec::new(); + let mut limit: Score = 0.0; + weight.for_each_pruning(Score::MIN, reader, &mut |doc, score| { + checkpoints.push((doc,score, score)); + // println!("pruning doc={} score={} limit={}", doc, score, limit); + heap.push(Float(score)); + if heap.len() > n { + heap.pop().unwrap(); + } + limit = heap.peek().unwrap().0; + return limit; + })?; + Ok(checkpoints) +} + +fn checkpoints_no_pruning(weight: &dyn Weight, reader: &SegmentReader, n: usize) -> tantivy::Result> { + let mut heap: BinaryHeap = BinaryHeap::with_capacity(n); + let mut checkpoints: Vec<(DocId, Score, Score)> = Vec::new(); + let mut scorer = weight.scorer(reader, 1.0)?; + let mut limit = Score::MIN; + loop { + if scorer.doc() == TERMINATED { + break; + } + let doc = scorer.doc(); + let score = scorer.score(); + if score > limit { + // println!("nopruning doc={} score={} limit={}", doc, score, limit); + checkpoints.push((doc, limit, score)); + heap.push(Float(score)); + if heap.len() > n { + heap.pop().unwrap(); + } + limit = heap.peek().unwrap().0; + } + scorer.advance(); + } + Ok(checkpoints) +} + +fn assert_nearly_equals(left: Score, right: Score) -> bool { + (left - right).abs() * 2.0 / (left + right).abs() < 0.000001 +} + +fn main_inner(index_dir: &Path) -> tantivy::Result<()> { + let index = Index::open_in_dir(index_dir).expect("failed to open index"); + let text_field = index.schema().get_field("text").expect("no all field?!"); + let query_parser = QueryParser::new( + index.schema(), + vec![text_field], + TokenizerManager::default()); + let reader = index.reader()?; + let searcher = reader.searcher(); + + let stdin = std::io::stdin(); + for line_res in stdin.lock().lines() { + let line = line_res?; + let fields: Vec<&str> = line.split("\t").collect(); + assert_eq!(fields.len(), 2, "Expected a line in the format query."); + let command = fields[0]; + let query = query_parser.parse_query(fields[1])?; + let count; + match command { + "COUNT" => { + count = query.count(&searcher)?; + } + "TOP_10" => { + let _top_k = searcher.search(&query, &TopDocs::with_limit(10))?; + count = 1; + } + "TOP_10_COUNT" => { + let (_top_k, count_) = searcher.search(&query, &(TopDocs::with_limit(10), Count))?; + count = count_; + } + "DEBUG_TOP_10" => { + let weight = query.weight(&searcher, true)?; + for reader in searcher.segment_readers() { + let checkpoints_left = + checkpoints_no_pruning(&*weight, reader, 10)?; + let checkpoints_right = + checkpoints_pruning(&*weight, reader, 10)?; + } + count = 0; + } + _ => { + println!("UNSUPPORTED"); + continue; + } + } + println!("{}", count); + } + + Ok(()) +} diff --git a/engines/tantivy-0.16/src/bin/reproduce.rs b/engines/tantivy-0.16/src/bin/reproduce.rs new file mode 100644 index 00000000000..2f989fc6d15 --- /dev/null +++ b/engines/tantivy-0.16/src/bin/reproduce.rs @@ -0,0 +1,84 @@ +use tantivy; +use tantivy::query::{Query, TermQuery, QueryParser}; +use tantivy::{Term, TERMINATED, Searcher, DocSet, SegmentId, DocId, Score}; +use tantivy::schema::IndexRecordOption; +use tantivy::query::Scorer; +use futures::executor::block_on; + +// fn test_block_wand_aux(term_query: &TermQuery, searcher: &Searcher) -> tantivy::Result<()> { +// let term_weight = term_query.specialized_weight(&searcher, true); +// for (i, reader) in searcher.segment_readers().iter().enumerate() { +// println!("-------- #{}", i); +// let mut block_max_scores = vec![]; +// let mut block_max_scores_b = vec![]; +// let mut docs = vec![]; +// { +// let mut term_scorer = term_weight.specialized_scorer(reader, 1.0f32)?; +// let num_docs = (0u32..term_scorer.doc_freq() as u32).collect::>(); +// for _ in 0..128 { +// let mut score = 0.0f32; +// docs.push(term_scorer.doc()); +// for i in 0..128 { +// score = score.max(term_scorer.score()); +// term_scorer.advance(); +// } +// block_max_scores.push(score); +// } +// } +// dbg!(&docs); +// { +// for d in docs { +// let mut term_scorer = term_weight.specialized_scorer(reader, 1.0f32)?; +// +// { +// let skip_reader = &term_scorer.postings.block_cursor.skip_reader; +// dbg!((skip_reader.last_doc_in_previous_block, skip_reader.last_doc_in_block)); +// } +// term_scorer.shallow_seek(d); +// block_max_scores_b.push(term_scorer.block_max_score()); +// } +// } +// +// for (l, r) in block_max_scores.iter().cloned().zip(block_max_scores_b.iter().cloned()) { +// dbg!((l, r)); +// assert!(2f32 * (l - r).abs() / (l.abs() + r.abs()) < 0.00001, "{} {}", l, r); +// } +// } +// Ok(()) +// } + +fn score(query: &dyn Query, searcher: &Searcher, doc: DocId) -> tantivy::Result { + let weight = query.weight(&searcher, true)?; + let mut scorer = weight.scorer(searcher.segment_reader(0), 1.0f32)?; + assert_eq!(scorer.seek(537_388), 537_388); + Ok(scorer.score()) +} + +fn main() -> tantivy::Result<()> { + let index = tantivy::Index::open_in_dir("idx")?; + let field = index.schema().get_field("text").unwrap(); + let query_parser = QueryParser::for_index(&index, vec![field]); + + let central_query = TermQuery::new(Term::from_field_text(field, "central"), IndexRecordOption::WithFreqs); + let community_query = TermQuery::new(Term::from_field_text(field, "community"), IndexRecordOption::WithFreqs); + let college = TermQuery::new(Term::from_field_text(field, "college"), IndexRecordOption::WithFreqs); + + + let mut query = query_parser.parse_query("central community college")?; + let reader = index.reader()?; + reader.reload()?; + let searcher = reader.searcher(); + + let doc = 537_388; + let central_score = score(¢ral_query, &searcher, doc)? as f64; + let community_score = score(&community_query, &searcher, doc)? as f64; + let college_score = score(&college, &searcher, doc)? as f64; + + dbg!(central_score); + dbg!(community_score); + dbg!(college_score); + + dbg!(central_score + community_score + college_score); + dbg!(community_score + college_score + central_score ); + Ok(()) +} diff --git a/engines/tantivy-0.17/Cargo.lock b/engines/tantivy-0.17/Cargo.lock new file mode 100644 index 00000000000..e5d4c6efbc5 --- /dev/null +++ b/engines/tantivy-0.17/Cargo.lock @@ -0,0 +1,1167 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "ahash" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" +dependencies = [ + "getrandom", + "once_cell", + "version_check", +] + +[[package]] +name = "aho-corasick" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" +dependencies = [ + "memchr", +] + +[[package]] +name = "async-trait" +version = "0.1.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d1d8ab452a3936018a687b20e6f7cf5363d713b732b8884001317b0e48aa3" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "atty" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" +dependencies = [ + "hermit-abi", + "libc", + "winapi", +] + +[[package]] +name = "autocfg" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" + +[[package]] +name = "base64" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitpacking" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8c7d2ac73c167c06af4a5f37e6e59d84148d57ccbe4480b76f0273eefea82d7" +dependencies = [ + "crunchy", +] + +[[package]] +name = "bumpalo" +version = "3.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" + +[[package]] +name = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" + +[[package]] +name = "census" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5927edd8345aef08578bcbb4aea7314f340d80c7f4931f99fbeb40b99d8f5060" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "chrono" +version = "0.4.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73" +dependencies = [ + "libc", + "num-integer", + "num-traits", + "time", + "winapi", +] + +[[package]] +name = "combine" +version = "4.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a909e4d93292cd8e9c42e189f61681eff9d67b6541f96b8a1a737f23737bd001" +dependencies = [ + "memchr", +] + +[[package]] +name = "crc32fast" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "81156fece84ab6a9f2afdb109ce3ae577e42b1228441eded99bd77f627953b1a" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ae5588f6b3c3cb05239e90bd110f257254aecd01e4635400391aeae07497845" +dependencies = [ + "cfg-if", + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-epoch", + "crossbeam-queue", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4" +dependencies = [ + "cfg-if", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e" +dependencies = [ + "cfg-if", + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd" +dependencies = [ + "cfg-if", + "crossbeam-utils", + "lazy_static", + "memoffset", + "scopeguard", +] + +[[package]] +name = "crossbeam-queue" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b10ddc024425c88c2ad148c1b0fd53f4c6d38db9697c9f1588381212fa657c9" +dependencies = [ + "cfg-if", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" +dependencies = [ + "cfg-if", + "lazy_static", +] + +[[package]] +name = "crunchy" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" + +[[package]] +name = "ctor" +version = "0.1.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" +dependencies = [ + "quote", + "syn", +] + +[[package]] +name = "diff" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" + +[[package]] +name = "downcast-rs" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" + +[[package]] +name = "either" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" + +[[package]] +name = "env_logger" +version = "0.5.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38" +dependencies = [ + "atty", + "humantime", + "log", + "regex", + "termcolor", +] + +[[package]] +name = "fail" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe5e43d0f78a42ad591453aedb1d7ae631ce7ee445c7643691055a9ed8d3b01c" +dependencies = [ + "log", + "once_cell", + "rand", +] + +[[package]] +name = "fastdivide" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25c7df09945d65ea8d70b3321547ed414bbc540aad5bac6883d021b970f35b04" + +[[package]] +name = "fastfield_codecs" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0e8bfa31546b4ace05092c9db8d251d7bbc298a384875a08c945a473de4f1f" +dependencies = [ + "tantivy-bitpacker", + "tantivy-common 0.1.0", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "fs2" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "futures" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a12aa0eb539080d55c3f2d45a67c3b58b6b0773c1a3ca2dfec66d58c97fd66ca" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d" + +[[package]] +name = "futures-executor" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45025be030969d763025784f7f355043dc6bc74093e4ecc5000ca4dc50d8745c" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", + "num_cpus", +] + +[[package]] +name = "futures-io" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "522de2a0fe3e380f1bc577ba0474108faf3f6b18321dbf60b3b9c39a75073377" + +[[package]] +name = "futures-macro" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18e4a4b95cea4b4ccbcf1c5675ca7c4ee4e9e75eb79944d07defde18068f79bb" +dependencies = [ + "autocfg", + "proc-macro-hack", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "futures-sink" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36ea153c13024fe480590b3e3d4cad89a0cfacecc24577b68f86c6ced9c2bc11" + +[[package]] +name = "futures-task" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99" + +[[package]] +name = "futures-util" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481" +dependencies = [ + "autocfg", + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "proc-macro-hack", + "proc-macro-nested", + "slab", +] + +[[package]] +name = "getrandom" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "hashbrown" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e" +dependencies = [ + "ahash", +] + +[[package]] +name = "hermit-abi" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" +dependencies = [ + "libc", +] + +[[package]] +name = "htmlescape" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" + +[[package]] +name = "humantime" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" +dependencies = [ + "quick-error", +] + +[[package]] +name = "instant" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "itertools" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69ddb889f9d0d08a67338271fa9b62996bc788c7796a5c18cf057420aaed5eaf" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4" + +[[package]] +name = "js-sys" +version = "0.3.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "levenshtein_automata" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25" + +[[package]] +name = "libc" +version = "0.2.105" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "869d572136620d55835903746bcb5cdc54cb2851fd0aeec53220b4bb65ef3013" + +[[package]] +name = "log" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "lru" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c748cfe47cb8da225c37595b3108bea1c198c84aaae8ea0ba76d01dda9fc803" +dependencies = [ + "hashbrown", +] + +[[package]] +name = "lz4_flex" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "177c079243f6867429aca5af5053747f57e329d44f0c58bebca078cd14873ec2" +dependencies = [ + "twox-hash", +] + +[[package]] +name = "measure_time" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56220900f1a0923789ecd6bf25fbae8af3b2f1ff3e9e297fc9b6b8674dd4d852" +dependencies = [ + "instant", + "log", +] + +[[package]] +name = "memchr" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" + +[[package]] +name = "memmap2" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4647a11b578fead29cdbb34d4adef8dd3dc35b876c9c6d5240d83f205abfe96e" +dependencies = [ + "libc", +] + +[[package]] +name = "memoffset" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9" +dependencies = [ + "autocfg", +] + +[[package]] +name = "murmurhash32" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d736ff882f0e85fe9689fb23db229616c4c00aee2b3ac282f666d8f20eb25d4a" +dependencies = [ + "byteorder", +] + +[[package]] +name = "num-integer" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db" +dependencies = [ + "autocfg", + "num-traits", +] + +[[package]] +name = "num-traits" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_cpus" +version = "1.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3" +dependencies = [ + "hermit-abi", + "libc", +] + +[[package]] +name = "once_cell" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" + +[[package]] +name = "output_vt100" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" +dependencies = [ + "winapi", +] + +[[package]] +name = "ownedbytes" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bfa208b217a39411d78b85427792e4c1bc40508acbcefd2836e765f44a5c99e" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "ppv-lite86" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3ca011bd0129ff4ae15cd04c4eef202cadf6c51c21e47aba319b4e0501db741" + +[[package]] +name = "pretty_assertions" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" +dependencies = [ + "ctor", + "diff", + "output_vt100", + "yansi", +] + +[[package]] +name = "proc-macro-hack" +version = "0.5.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" + +[[package]] +name = "proc-macro-nested" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" + +[[package]] +name = "proc-macro2" +version = "1.0.49" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quote" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", + "rand_hc", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" +dependencies = [ + "getrandom", +] + +[[package]] +name = "rand_hc" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" +dependencies = [ + "rand_core", +] + +[[package]] +name = "rayon" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90" +dependencies = [ + "autocfg", + "crossbeam-deque", + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e" +dependencies = [ + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-utils", + "lazy_static", + "num_cpus", +] + +[[package]] +name = "redox_syscall" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff" +dependencies = [ + "bitflags", +] + +[[package]] +name = "regex" +version = "1.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax 0.6.25", +] + +[[package]] +name = "regex-syntax" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e931c58b93d86f080c734bfd2bce7dd0079ae2331235818133c8be7f422e20e" + +[[package]] +name = "regex-syntax" +version = "0.6.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b" + +[[package]] +name = "remove_dir_all" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" +dependencies = [ + "winapi", +] + +[[package]] +name = "rust-stemmers" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54" +dependencies = [ + "serde", + "serde_derive", +] + +[[package]] +name = "ryu" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" + +[[package]] +name = "scopeguard" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" + +[[package]] +name = "serde" +version = "1.0.130" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f12d06de37cf59146fbdecab66aa99f9fe4f78722e3607577a5375d66bd0c913" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.130" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7bc1a1ab1961464eae040d96713baa5a724a8152c1222492465b54322ec508b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.68" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f690853975602e1bfe1ccbf50504d67174e3bcf340f23b5ea9992e0587a52d8" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "slab" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5" + +[[package]] +name = "smallvec" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309" + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "static_assertions" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f" + +[[package]] +name = "syn" +version = "1.0.107" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "tantivy" +version = "0.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "264c2549892aa83975386a924ef8d0b8e909674c837d37ea58b4bd8739495c6e" +dependencies = [ + "async-trait", + "base64", + "bitpacking", + "byteorder", + "census", + "chrono", + "crc32fast", + "crossbeam", + "downcast-rs", + "fail", + "fastdivide", + "fastfield_codecs", + "fnv", + "fs2", + "futures", + "htmlescape", + "itertools", + "levenshtein_automata", + "log", + "lru", + "lz4_flex", + "measure_time", + "memmap2", + "murmurhash32", + "num_cpus", + "once_cell", + "ownedbytes", + "pretty_assertions", + "rayon", + "regex", + "rust-stemmers", + "serde", + "serde_json", + "smallvec", + "stable_deref_trait", + "tantivy-bitpacker", + "tantivy-common 0.2.0", + "tantivy-fst", + "tantivy-query-grammar", + "tempfile", + "thiserror", + "uuid", + "winapi", +] + +[[package]] +name = "tantivy-bench" +version = "0.1.0" +dependencies = [ + "env_logger", + "futures", + "serde", + "serde_derive", + "serde_json", + "tantivy", +] + +[[package]] +name = "tantivy-bitpacker" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "66d10a5ed75437a4f6bbbba67601cd5adab8d71f5188b677055381f0f36064f2" + +[[package]] +name = "tantivy-common" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "760e44073e328f4ea3f38660da9ba2598a19ad5ad4149cfb89ad89b4d5ee88d9" +dependencies = [ + "byteorder", +] + +[[package]] +name = "tantivy-common" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2078cd12c7e46eb2cd66ec813eac8472e0f9dfe816f26159effceffd2dbe4793" +dependencies = [ + "byteorder", + "ownedbytes", +] + +[[package]] +name = "tantivy-fst" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb20cdc0d83e9184560bdde9cd60142dbb4af2e0f770e88fce45770495224205" +dependencies = [ + "byteorder", + "regex-syntax 0.4.2", + "utf8-ranges", +] + +[[package]] +name = "tantivy-query-grammar" +version = "0.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "466e0218472a9b276a73e38b2571ac02f9a1b270b4481c9cd8cc23a63d1307e9" +dependencies = [ + "combine", +] + +[[package]] +name = "tempfile" +version = "3.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dac1c663cfc93810f88aed9b8941d48cabf856a1b111c29a40439018d870eb22" +dependencies = [ + "cfg-if", + "libc", + "rand", + "redox_syscall", + "remove_dir_all", + "winapi", +] + +[[package]] +name = "termcolor" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "thiserror" +version = "1.0.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "time" +version = "0.1.43" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "twox-hash" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f559b464de2e2bdabcac6a210d12e9b5a5973c251e102c44c585c71d51bd78e" +dependencies = [ + "cfg-if", + "static_assertions", +] + +[[package]] +name = "unicode-ident" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" + +[[package]] +name = "utf8-ranges" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ae116fef2b7fea257ed6440d3cfcff7f190865f170cdad00bb6465bf18ecba" + +[[package]] +name = "uuid" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc5cf98d8186244414c848017f0e2676b3fcb46807f6668a97dfe67359a3c4b7" +dependencies = [ + "getrandom", + "serde", +] + +[[package]] +name = "version_check" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" + +[[package]] +name = "wasi" +version = "0.10.2+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" + +[[package]] +name = "wasm-bindgen" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" + +[[package]] +name = "web-sys" +version = "0.3.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" +dependencies = [ + "winapi", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "yansi" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" diff --git a/engines/tantivy-0.17/Cargo.toml b/engines/tantivy-0.17/Cargo.toml new file mode 100644 index 00000000000..c20e2ca6e85 --- /dev/null +++ b/engines/tantivy-0.17/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "tantivy-bench" +version = "0.1.0" +authors = ["Jason Wolfe"] +edition = "2018" + +[dependencies] +serde = "1.0" +serde_derive = "1.0" +serde_json = "1.0" +tantivy = "0.17" +env_logger = "0.5" +futures = "*" + +[profile.release] +lto = true +opt-level = 3 +overflow-checks = false +# debug-assertions = false diff --git a/engines/tantivy-0.17/Makefile b/engines/tantivy-0.17/Makefile new file mode 100644 index 00000000000..320f9497ec6 --- /dev/null +++ b/engines/tantivy-0.17/Makefile @@ -0,0 +1,19 @@ +clean: + rm -fr idx + rm -fr target + +compile: target/release/build_index target/release/do_query + +index: idx + +serve: target/release/do_query + @target/release/do_query idx + +target/release/%: + @echo "\n\n\n--- Building tantivy's binary ---" + @cargo build --release --bin $(notdir $@) + +idx: target/release/build_index + @echo "\n\n\n---- Indexing tantivy ----" + @mkdir -p idx + export RUST_LOG=info && target/release/build_index "$@" < ${CORPUS} diff --git a/engines/tantivy-0.17/src/bin/build_index.rs b/engines/tantivy-0.17/src/bin/build_index.rs new file mode 100644 index 00000000000..fa0996bfc8e --- /dev/null +++ b/engines/tantivy-0.17/src/bin/build_index.rs @@ -0,0 +1,57 @@ +use futures::executor::block_on; +use std::env; +use std::io::BufRead; +use std::path::Path; +use tantivy::schema::{Schema, STORED, TEXT}; +use tantivy::Index; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap(); +} + +fn create_schema() -> Schema { + let mut schema_builder = Schema::builder(); + schema_builder.add_text_field("id", STORED); + schema_builder.add_u64_field("id_num", FAST | INDEXED); + schema_builder.add_text_field("text", TEXT); + schema_builder.build() +} + +fn main_inner(output_dir: &Path) -> tantivy::Result<()> { + env_logger::init(); + + let schema = create_schema(); + let index = Index::create_in_dir(output_dir, schema.clone()).expect("failed to create index"); + + let mut i = 0; + { + let mut index_writer = index + .writer_with_num_threads(4, 2_000_000_000) + .expect("failed to create index writer"); + let stdin = std::io::stdin(); + + for line in stdin.lock().lines() { + let line = line?; + if line.trim().is_empty() { + continue; + } + i += 1; + if i % 100_000 == 0 { + println!("{}", i); + } + let doc = schema.parse_document(&line)?; + index_writer.add_document(doc); + } + + index_writer.commit()?; + index_writer.wait_merging_threads()?; + } + let segment_ids = index.searchable_segment_ids()?; + let mut index_writer = index + .writer(1_500_000_000) + .expect("failed to create index writer"); + block_on(index_writer.merge(&segment_ids))?; + block_on(index_writer.garbage_collect_files())?; + Ok(()) +} diff --git a/engines/tantivy-0.17/src/bin/do_query.rs b/engines/tantivy-0.17/src/bin/do_query.rs new file mode 100644 index 00000000000..3619d31ad7a --- /dev/null +++ b/engines/tantivy-0.17/src/bin/do_query.rs @@ -0,0 +1,140 @@ +#![macro_use] +extern crate tantivy; + +use tantivy::{Index, SegmentReader, Score, DocId, TERMINATED}; +use tantivy::query::{QueryParser, Weight}; +use tantivy::tokenizer::TokenizerManager; +use tantivy::collector::{Count, TopDocs}; + +use std::env; +use std::io::BufRead; +use std::path::Path; +use std::collections::BinaryHeap; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap() +} + +struct Float(Score); + +use std::cmp::Ordering; + + +impl Eq for Float { +} + +impl PartialEq for Float { + fn eq(&self, other: &Self) -> bool { + self.cmp(&other) == Ordering::Equal + } +} + +impl PartialOrd for Float { + fn partial_cmp(&self, other: &Self) -> Option { + Some(self.cmp(other)) + } +} + +impl Ord for Float { + fn cmp(&self, other: &Self) -> Ordering { + other.0.partial_cmp(&self.0).unwrap_or(Ordering::Equal) + } +} + +fn checkpoints_pruning(weight: &dyn Weight, reader: &SegmentReader, n: usize) -> tantivy::Result> { + let mut heap: BinaryHeap = BinaryHeap::with_capacity(n); + let mut checkpoints: Vec<(DocId, Score, Score)> = Vec::new(); + let mut limit: Score = 0.0; + weight.for_each_pruning(Score::MIN, reader, &mut |doc, score| { + checkpoints.push((doc,score, score)); + // println!("pruning doc={} score={} limit={}", doc, score, limit); + heap.push(Float(score)); + if heap.len() > n { + heap.pop().unwrap(); + } + limit = heap.peek().unwrap().0; + return limit; + })?; + Ok(checkpoints) +} + +fn checkpoints_no_pruning(weight: &dyn Weight, reader: &SegmentReader, n: usize) -> tantivy::Result> { + let mut heap: BinaryHeap = BinaryHeap::with_capacity(n); + let mut checkpoints: Vec<(DocId, Score, Score)> = Vec::new(); + let mut scorer = weight.scorer(reader, 1.0)?; + let mut limit = Score::MIN; + loop { + if scorer.doc() == TERMINATED { + break; + } + let doc = scorer.doc(); + let score = scorer.score(); + if score > limit { + // println!("nopruning doc={} score={} limit={}", doc, score, limit); + checkpoints.push((doc, limit, score)); + heap.push(Float(score)); + if heap.len() > n { + heap.pop().unwrap(); + } + limit = heap.peek().unwrap().0; + } + scorer.advance(); + } + Ok(checkpoints) +} + +fn assert_nearly_equals(left: Score, right: Score) -> bool { + (left - right).abs() * 2.0 / (left + right).abs() < 0.000001 +} + +fn main_inner(index_dir: &Path) -> tantivy::Result<()> { + let index = Index::open_in_dir(index_dir).expect("failed to open index"); + let text_field = index.schema().get_field("text").expect("no all field?!"); + let query_parser = QueryParser::new( + index.schema(), + vec![text_field], + TokenizerManager::default()); + let reader = index.reader()?; + let searcher = reader.searcher(); + + let stdin = std::io::stdin(); + for line_res in stdin.lock().lines() { + let line = line_res?; + let fields: Vec<&str> = line.split("\t").collect(); + assert_eq!(fields.len(), 2, "Expected a line in the format query."); + let command = fields[0]; + let query = query_parser.parse_query(fields[1])?; + let count; + match command { + "COUNT" => { + count = query.count(&searcher)?; + } + "TOP_10" => { + let _top_k = searcher.search(&query, &TopDocs::with_limit(10))?; + count = 1; + } + "TOP_10_COUNT" => { + let (_top_k, count_) = searcher.search(&query, &(TopDocs::with_limit(10), Count))?; + count = count_; + } + "DEBUG_TOP_10" => { + let weight = query.weight(&searcher, true)?; + for reader in searcher.segment_readers() { + let checkpoints_left = + checkpoints_no_pruning(&*weight, reader, 10)?; + let checkpoints_right = + checkpoints_pruning(&*weight, reader, 10)?; + } + count = 0; + } + _ => { + println!("UNSUPPORTED"); + continue; + } + } + println!("{}", count); + } + + Ok(()) +} diff --git a/engines/tantivy-0.17/src/bin/reproduce.rs b/engines/tantivy-0.17/src/bin/reproduce.rs new file mode 100644 index 00000000000..2f989fc6d15 --- /dev/null +++ b/engines/tantivy-0.17/src/bin/reproduce.rs @@ -0,0 +1,84 @@ +use tantivy; +use tantivy::query::{Query, TermQuery, QueryParser}; +use tantivy::{Term, TERMINATED, Searcher, DocSet, SegmentId, DocId, Score}; +use tantivy::schema::IndexRecordOption; +use tantivy::query::Scorer; +use futures::executor::block_on; + +// fn test_block_wand_aux(term_query: &TermQuery, searcher: &Searcher) -> tantivy::Result<()> { +// let term_weight = term_query.specialized_weight(&searcher, true); +// for (i, reader) in searcher.segment_readers().iter().enumerate() { +// println!("-------- #{}", i); +// let mut block_max_scores = vec![]; +// let mut block_max_scores_b = vec![]; +// let mut docs = vec![]; +// { +// let mut term_scorer = term_weight.specialized_scorer(reader, 1.0f32)?; +// let num_docs = (0u32..term_scorer.doc_freq() as u32).collect::>(); +// for _ in 0..128 { +// let mut score = 0.0f32; +// docs.push(term_scorer.doc()); +// for i in 0..128 { +// score = score.max(term_scorer.score()); +// term_scorer.advance(); +// } +// block_max_scores.push(score); +// } +// } +// dbg!(&docs); +// { +// for d in docs { +// let mut term_scorer = term_weight.specialized_scorer(reader, 1.0f32)?; +// +// { +// let skip_reader = &term_scorer.postings.block_cursor.skip_reader; +// dbg!((skip_reader.last_doc_in_previous_block, skip_reader.last_doc_in_block)); +// } +// term_scorer.shallow_seek(d); +// block_max_scores_b.push(term_scorer.block_max_score()); +// } +// } +// +// for (l, r) in block_max_scores.iter().cloned().zip(block_max_scores_b.iter().cloned()) { +// dbg!((l, r)); +// assert!(2f32 * (l - r).abs() / (l.abs() + r.abs()) < 0.00001, "{} {}", l, r); +// } +// } +// Ok(()) +// } + +fn score(query: &dyn Query, searcher: &Searcher, doc: DocId) -> tantivy::Result { + let weight = query.weight(&searcher, true)?; + let mut scorer = weight.scorer(searcher.segment_reader(0), 1.0f32)?; + assert_eq!(scorer.seek(537_388), 537_388); + Ok(scorer.score()) +} + +fn main() -> tantivy::Result<()> { + let index = tantivy::Index::open_in_dir("idx")?; + let field = index.schema().get_field("text").unwrap(); + let query_parser = QueryParser::for_index(&index, vec![field]); + + let central_query = TermQuery::new(Term::from_field_text(field, "central"), IndexRecordOption::WithFreqs); + let community_query = TermQuery::new(Term::from_field_text(field, "community"), IndexRecordOption::WithFreqs); + let college = TermQuery::new(Term::from_field_text(field, "college"), IndexRecordOption::WithFreqs); + + + let mut query = query_parser.parse_query("central community college")?; + let reader = index.reader()?; + reader.reload()?; + let searcher = reader.searcher(); + + let doc = 537_388; + let central_score = score(¢ral_query, &searcher, doc)? as f64; + let community_score = score(&community_query, &searcher, doc)? as f64; + let college_score = score(&college, &searcher, doc)? as f64; + + dbg!(central_score); + dbg!(community_score); + dbg!(college_score); + + dbg!(central_score + community_score + college_score); + dbg!(community_score + college_score + central_score ); + Ok(()) +} diff --git a/engines/tantivy-0.18/Cargo.lock b/engines/tantivy-0.18/Cargo.lock new file mode 100644 index 00000000000..eb5758b32c2 --- /dev/null +++ b/engines/tantivy-0.18/Cargo.lock @@ -0,0 +1,1333 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "ahash" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" +dependencies = [ + "getrandom", + "once_cell", + "version_check", +] + +[[package]] +name = "aho-corasick" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" +dependencies = [ + "memchr", +] + +[[package]] +name = "async-trait" +version = "0.1.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d1d8ab452a3936018a687b20e6f7cf5363d713b732b8884001317b0e48aa3" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "atty" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" +dependencies = [ + "hermit-abi 0.1.19", + "libc", + "winapi", +] + +[[package]] +name = "autocfg" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" + +[[package]] +name = "base64" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitpacking" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8c7d2ac73c167c06af4a5f37e6e59d84148d57ccbe4480b76f0273eefea82d7" +dependencies = [ + "crunchy", +] + +[[package]] +name = "bumpalo" +version = "3.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" + +[[package]] +name = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" + +[[package]] +name = "cc" +version = "1.0.78" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d" + +[[package]] +name = "census" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5927edd8345aef08578bcbb4aea7314f340d80c7f4931f99fbeb40b99d8f5060" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "combine" +version = "4.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a909e4d93292cd8e9c42e189f61681eff9d67b6541f96b8a1a737f23737bd001" +dependencies = [ + "memchr", +] + +[[package]] +name = "crc32fast" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" +dependencies = [ + "cfg-if", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e" +dependencies = [ + "cfg-if", + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd" +dependencies = [ + "cfg-if", + "crossbeam-utils", + "lazy_static", + "memoffset", + "scopeguard", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" +dependencies = [ + "cfg-if", + "lazy_static", +] + +[[package]] +name = "crunchy" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" + +[[package]] +name = "ctor" +version = "0.1.26" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d2301688392eb071b0bf1a37be05c469d3cc4dbbd95df672fe28ab021e6a096" +dependencies = [ + "quote", + "syn", +] + +[[package]] +name = "diff" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" + +[[package]] +name = "downcast-rs" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" + +[[package]] +name = "either" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" + +[[package]] +name = "env_logger" +version = "0.5.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38" +dependencies = [ + "atty", + "humantime", + "log", + "regex", + "termcolor", +] + +[[package]] +name = "fail" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe5e43d0f78a42ad591453aedb1d7ae631ce7ee445c7643691055a9ed8d3b01c" +dependencies = [ + "log", + "once_cell", + "rand", +] + +[[package]] +name = "fastdivide" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25c7df09945d65ea8d70b3321547ed414bbc540aad5bac6883d021b970f35b04" + +[[package]] +name = "fastfield_codecs" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8dff2ee906bb242438742b5ecac909c0719cbd9db546f6c3d9ac86bd93f5b07e" +dependencies = [ + "tantivy-bitpacker", + "tantivy-common", +] + +[[package]] +name = "fastrand" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" +dependencies = [ + "instant", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "fs2" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "futures" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a12aa0eb539080d55c3f2d45a67c3b58b6b0773c1a3ca2dfec66d58c97fd66ca" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d" + +[[package]] +name = "futures-executor" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45025be030969d763025784f7f355043dc6bc74093e4ecc5000ca4dc50d8745c" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "522de2a0fe3e380f1bc577ba0474108faf3f6b18321dbf60b3b9c39a75073377" + +[[package]] +name = "futures-macro" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18e4a4b95cea4b4ccbcf1c5675ca7c4ee4e9e75eb79944d07defde18068f79bb" +dependencies = [ + "autocfg", + "proc-macro-hack", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "futures-sink" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36ea153c13024fe480590b3e3d4cad89a0cfacecc24577b68f86c6ced9c2bc11" + +[[package]] +name = "futures-task" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99" + +[[package]] +name = "futures-util" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481" +dependencies = [ + "autocfg", + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "proc-macro-hack", + "proc-macro-nested", + "slab", +] + +[[package]] +name = "generator" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d266041a359dfa931b370ef684cceb84b166beb14f7f0421f4a6a3d0c446d12e" +dependencies = [ + "cc", + "libc", + "log", + "rustversion", + "windows", +] + +[[package]] +name = "getrandom" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +dependencies = [ + "ahash", +] + +[[package]] +name = "hermit-abi" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" +dependencies = [ + "libc", +] + +[[package]] +name = "hermit-abi" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" +dependencies = [ + "libc", +] + +[[package]] +name = "htmlescape" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" + +[[package]] +name = "humantime" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" +dependencies = [ + "quick-error", +] + +[[package]] +name = "instant" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "itertools" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" + +[[package]] +name = "js-sys" +version = "0.3.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "levenshtein_automata" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25" + +[[package]] +name = "libc" +version = "0.2.105" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "869d572136620d55835903746bcb5cdc54cb2851fd0aeec53220b4bb65ef3013" + +[[package]] +name = "log" +version = "0.4.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "loom" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" +dependencies = [ + "cfg-if", + "generator", + "pin-utils", + "scoped-tls", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "lru" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a" +dependencies = [ + "hashbrown", +] + +[[package]] +name = "lz4_flex" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a8cbbb2831780bc3b9c15a41f5b49222ef756b6730a95f3decfdd15903eb5a3" + +[[package]] +name = "matchers" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" +dependencies = [ + "regex-automata", +] + +[[package]] +name = "measure_time" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56220900f1a0923789ecd6bf25fbae8af3b2f1ff3e9e297fc9b6b8674dd4d852" +dependencies = [ + "instant", + "log", +] + +[[package]] +name = "memchr" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" + +[[package]] +name = "memmap2" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b182332558b18d807c4ce1ca8ca983b34c3ee32765e47b3f0f69b90355cc1dc" +dependencies = [ + "libc", +] + +[[package]] +name = "memoffset" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9" +dependencies = [ + "autocfg", +] + +[[package]] +name = "murmurhash32" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d736ff882f0e85fe9689fb23db229616c4c00aee2b3ac282f666d8f20eb25d4a" +dependencies = [ + "byteorder", +] + +[[package]] +name = "nu-ansi-term" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +dependencies = [ + "overload", + "winapi", +] + +[[package]] +name = "num_cpus" +version = "1.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" +dependencies = [ + "hermit-abi 0.2.6", + "libc", +] + +[[package]] +name = "once_cell" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" + +[[package]] +name = "oneshot" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc22d22931513428ea6cc089e942d38600e3d00976eef8c86de6b8a3aadec6eb" +dependencies = [ + "loom", +] + +[[package]] +name = "output_vt100" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "628223faebab4e3e40667ee0b2336d34a5b960ff60ea743ddfdbcf7770bcfb66" +dependencies = [ + "winapi", +] + +[[package]] +name = "overload" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" + +[[package]] +name = "ownedbytes" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2981bd7cfb2a70e6c50083c60561275a269fc7458f151c53b126ec1b15cc040" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "ppv-lite86" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3ca011bd0129ff4ae15cd04c4eef202cadf6c51c21e47aba319b4e0501db741" + +[[package]] +name = "pretty_assertions" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a25e9bcb20aa780fd0bb16b72403a9064d6b3f22f026946029acb941a50af755" +dependencies = [ + "ctor", + "diff", + "output_vt100", + "yansi", +] + +[[package]] +name = "proc-macro-hack" +version = "0.5.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" + +[[package]] +name = "proc-macro-nested" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" + +[[package]] +name = "proc-macro2" +version = "1.0.49" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quote" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8856d8364d252a14d474036ea1358d63c9e6965c8e5c1885c18f73d70bff9c7b" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", + "rand_hc", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" +dependencies = [ + "getrandom", +] + +[[package]] +name = "rand_hc" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" +dependencies = [ + "rand_core", +] + +[[package]] +name = "rayon" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3" +dependencies = [ + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-utils", + "num_cpus", +] + +[[package]] +name = "redox_syscall" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff" +dependencies = [ + "bitflags", +] + +[[package]] +name = "regex" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax 0.6.28", +] + +[[package]] +name = "regex-automata" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" +dependencies = [ + "regex-syntax 0.6.28", +] + +[[package]] +name = "regex-syntax" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e931c58b93d86f080c734bfd2bce7dd0079ae2331235818133c8be7f422e20e" + +[[package]] +name = "regex-syntax" +version = "0.6.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" + +[[package]] +name = "remove_dir_all" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" +dependencies = [ + "winapi", +] + +[[package]] +name = "rust-stemmers" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54" +dependencies = [ + "serde", + "serde_derive", +] + +[[package]] +name = "rustversion" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70" + +[[package]] +name = "ryu" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" + +[[package]] +name = "scoped-tls" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" + +[[package]] +name = "scopeguard" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" + +[[package]] +name = "serde" +version = "1.0.152" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.152" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "sharded-slab" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "slab" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5" + +[[package]] +name = "smallvec" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "syn" +version = "1.0.107" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "tantivy" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69d1878f2daa432d6b907e1a7e16a25ba7eab6cc0da059e69943276a5165d81b" +dependencies = [ + "async-trait", + "base64", + "bitpacking", + "byteorder", + "census", + "crc32fast", + "crossbeam-channel", + "downcast-rs", + "fail", + "fastdivide", + "fastfield_codecs", + "fnv", + "fs2", + "htmlescape", + "itertools", + "levenshtein_automata", + "log", + "lru", + "lz4_flex", + "measure_time", + "memmap2", + "murmurhash32", + "num_cpus", + "once_cell", + "oneshot", + "ownedbytes", + "pretty_assertions", + "rayon", + "regex", + "rust-stemmers", + "serde", + "serde_json", + "smallvec", + "stable_deref_trait", + "tantivy-bitpacker", + "tantivy-common", + "tantivy-fst", + "tantivy-query-grammar", + "tempfile", + "thiserror", + "time", + "uuid", + "winapi", +] + +[[package]] +name = "tantivy-bench" +version = "0.1.0" +dependencies = [ + "env_logger", + "futures", + "serde", + "serde_derive", + "serde_json", + "tantivy", +] + +[[package]] +name = "tantivy-bitpacker" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90f95c862d26a32e1fdb161ab139c5a3bba221f5fac512af40034e13e25f3131" + +[[package]] +name = "tantivy-common" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dec19155b3ed963ae1653bc4995ab8175281f68400c39081205ae25b53fd9750" +dependencies = [ + "byteorder", + "ownedbytes", +] + +[[package]] +name = "tantivy-fst" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb20cdc0d83e9184560bdde9cd60142dbb4af2e0f770e88fce45770495224205" +dependencies = [ + "byteorder", + "regex-syntax 0.4.2", + "utf8-ranges", +] + +[[package]] +name = "tantivy-query-grammar" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d6bbdce99f2b8dcbe24ee25acffb36a2b45b31344531374df1008f6a64bb583" +dependencies = [ + "combine", + "once_cell", + "regex", +] + +[[package]] +name = "tempfile" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" +dependencies = [ + "cfg-if", + "fastrand", + "libc", + "redox_syscall", + "remove_dir_all", + "winapi", +] + +[[package]] +name = "termcolor" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "thiserror" +version = "1.0.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "thread_local" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" +dependencies = [ + "once_cell", +] + +[[package]] +name = "time" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" +dependencies = [ + "itoa", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" + +[[package]] +name = "time-macros" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" +dependencies = [ + "time-core", +] + +[[package]] +name = "tracing" +version = "0.1.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" +dependencies = [ + "cfg-if", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tracing-core" +version = "0.1.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" +dependencies = [ + "once_cell", + "valuable", +] + +[[package]] +name = "tracing-log" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" +dependencies = [ + "lazy_static", + "log", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" +dependencies = [ + "matchers", + "nu-ansi-term", + "once_cell", + "regex", + "sharded-slab", + "smallvec", + "thread_local", + "tracing", + "tracing-core", + "tracing-log", +] + +[[package]] +name = "unicode-ident" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" + +[[package]] +name = "utf8-ranges" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ae116fef2b7fea257ed6440d3cfcff7f190865f170cdad00bb6465bf18ecba" + +[[package]] +name = "uuid" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c" +dependencies = [ + "getrandom", + "serde", +] + +[[package]] +name = "valuable" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" + +[[package]] +name = "version_check" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" + +[[package]] +name = "wasi" +version = "0.10.2+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" + +[[package]] +name = "wasm-bindgen" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" + +[[package]] +name = "web-sys" +version = "0.3.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" +dependencies = [ + "winapi", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a" +dependencies = [ + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_msvc" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2" + +[[package]] +name = "windows_i686_gnu" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b" + +[[package]] +name = "windows_i686_msvc" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809" + +[[package]] +name = "yansi" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec" diff --git a/engines/tantivy-0.18/Cargo.toml b/engines/tantivy-0.18/Cargo.toml new file mode 100644 index 00000000000..55f68f6e0c4 --- /dev/null +++ b/engines/tantivy-0.18/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "tantivy-bench" +version = "0.1.0" +authors = ["Jason Wolfe"] +edition = "2018" + +[dependencies] +serde = "1.0" +serde_derive = "1.0" +serde_json = "1.0" +tantivy = "0.18" +env_logger = "0.5" +futures = "*" + +[profile.release] +lto = true +opt-level = 3 +overflow-checks = false +# debug-assertions = false diff --git a/engines/tantivy-0.18/Makefile b/engines/tantivy-0.18/Makefile new file mode 100644 index 00000000000..320f9497ec6 --- /dev/null +++ b/engines/tantivy-0.18/Makefile @@ -0,0 +1,19 @@ +clean: + rm -fr idx + rm -fr target + +compile: target/release/build_index target/release/do_query + +index: idx + +serve: target/release/do_query + @target/release/do_query idx + +target/release/%: + @echo "\n\n\n--- Building tantivy's binary ---" + @cargo build --release --bin $(notdir $@) + +idx: target/release/build_index + @echo "\n\n\n---- Indexing tantivy ----" + @mkdir -p idx + export RUST_LOG=info && target/release/build_index "$@" < ${CORPUS} diff --git a/engines/tantivy-0.18/src/bin/build_index.rs b/engines/tantivy-0.18/src/bin/build_index.rs new file mode 100644 index 00000000000..04ebb23433f --- /dev/null +++ b/engines/tantivy-0.18/src/bin/build_index.rs @@ -0,0 +1,57 @@ +use futures::executor::block_on; +use std::env; +use std::io::BufRead; +use std::path::Path; +use tantivy::schema::{Schema, FAST, INDEXED, STORED, TEXT}; +use tantivy::Index; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap(); +} + +fn create_schema() -> Schema { + let mut schema_builder = Schema::builder(); + schema_builder.add_text_field("id", STORED); + schema_builder.add_u64_field("id_num", FAST | INDEXED); + schema_builder.add_text_field("text", TEXT); + schema_builder.build() +} + +fn main_inner(output_dir: &Path) -> tantivy::Result<()> { + env_logger::init(); + + let schema = create_schema(); + let index = Index::create_in_dir(output_dir, schema.clone()).expect("failed to create index"); + + let mut i = 0; + { + let mut index_writer = index + .writer_with_num_threads(4, 2_000_000_000) + .expect("failed to create index writer"); + let stdin = std::io::stdin(); + + for line in stdin.lock().lines() { + let line = line?; + if line.trim().is_empty() { + continue; + } + i += 1; + if i % 100_000 == 0 { + println!("{}", i); + } + let doc = schema.parse_document(&line)?; + index_writer.add_document(doc).unwrap(); + } + + index_writer.commit()?; + index_writer.wait_merging_threads()?; + } + let segment_ids = index.searchable_segment_ids()?; + let mut index_writer = index + .writer(1_500_000_000) + .expect("failed to create index writer"); + block_on(index_writer.merge(&segment_ids))?; + block_on(index_writer.garbage_collect_files())?; + Ok(()) +} diff --git a/engines/tantivy-0.18/src/bin/do_query.rs b/engines/tantivy-0.18/src/bin/do_query.rs new file mode 100644 index 00000000000..bf01f693569 --- /dev/null +++ b/engines/tantivy-0.18/src/bin/do_query.rs @@ -0,0 +1,150 @@ +#![macro_use] +extern crate tantivy; + +use tantivy::collector::{Count, TopDocs}; +use tantivy::query::{QueryParser, Weight}; +use tantivy::tokenizer::TokenizerManager; +use tantivy::{DocId, Index, Score, SegmentReader, TERMINATED}; + +use std::collections::BinaryHeap; +use std::env; +use std::io::BufRead; +use std::path::Path; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap() +} + +struct Float(Score); + +use std::cmp::Ordering; + +impl Eq for Float {} + +impl PartialEq for Float { + fn eq(&self, other: &Self) -> bool { + self.cmp(&other) == Ordering::Equal + } +} + +impl PartialOrd for Float { + fn partial_cmp(&self, other: &Self) -> Option { + Some(self.cmp(other)) + } +} + +impl Ord for Float { + fn cmp(&self, other: &Self) -> Ordering { + other.0.partial_cmp(&self.0).unwrap_or(Ordering::Equal) + } +} + +fn checkpoints_pruning( + weight: &dyn Weight, + reader: &SegmentReader, + n: usize, +) -> tantivy::Result> { + let mut heap: BinaryHeap = BinaryHeap::with_capacity(n); + let mut checkpoints: Vec<(DocId, Score, Score)> = Vec::new(); + let mut limit: Score = 0.0; + weight.for_each_pruning(Score::MIN, reader, &mut |doc, score| { + checkpoints.push((doc, score, score)); + // println!("pruning doc={} score={} limit={}", doc, score, limit); + heap.push(Float(score)); + if heap.len() > n { + heap.pop().unwrap(); + } + limit = heap.peek().unwrap().0; + return limit; + })?; + Ok(checkpoints) +} + +fn checkpoints_no_pruning( + weight: &dyn Weight, + reader: &SegmentReader, + n: usize, +) -> tantivy::Result> { + let mut heap: BinaryHeap = BinaryHeap::with_capacity(n); + let mut checkpoints: Vec<(DocId, Score, Score)> = Vec::new(); + let mut scorer = weight.scorer(reader, 1.0)?; + let mut limit = Score::MIN; + loop { + if scorer.doc() == TERMINATED { + break; + } + let doc = scorer.doc(); + let score = scorer.score(); + if score > limit { + // println!("nopruning doc={} score={} limit={}", doc, score, limit); + checkpoints.push((doc, limit, score)); + heap.push(Float(score)); + if heap.len() > n { + heap.pop().unwrap(); + } + limit = heap.peek().unwrap().0; + } + scorer.advance(); + } + Ok(checkpoints) +} + +fn assert_nearly_equals(left: Score, right: Score) -> bool { + (left - right).abs() * 2.0 / (left + right).abs() < 0.000001 +} + +fn main_inner(index_dir: &Path) -> tantivy::Result<()> { + let index = Index::open_in_dir(index_dir).expect("failed to open index"); + let text_field = index.schema().get_field("text").expect("no all field?!"); + let query_parser = QueryParser::new( + index.schema(), + vec![text_field], + TokenizerManager::default(), + ); + let reader = index.reader()?; + let searcher = reader.searcher(); + + let stdin = std::io::stdin(); + for line_res in stdin.lock().lines() { + let line = line_res?; + let fields: Vec<&str> = line.split("\t").collect(); + assert_eq!( + fields.len(), + 2, + "Expected a line in the format query." + ); + let command = fields[0]; + let query = query_parser.parse_query(fields[1])?; + let count; + match command { + "COUNT" => { + count = query.count(&searcher)?; + } + "TOP_10" => { + let _top_k = searcher.search(&query, &TopDocs::with_limit(10))?; + count = 1; + } + "TOP_10_COUNT" => { + let (_top_k, count_) = + searcher.search(&query, &(TopDocs::with_limit(10), Count))?; + count = count_; + } + "DEBUG_TOP_10" => { + let weight = query.weight(&searcher, true)?; + for reader in searcher.segment_readers() { + let checkpoints_left = checkpoints_no_pruning(&*weight, reader, 10)?; + let checkpoints_right = checkpoints_pruning(&*weight, reader, 10)?; + } + count = 0; + } + _ => { + println!("UNSUPPORTED"); + continue; + } + } + println!("{}", count); + } + + Ok(()) +} diff --git a/engines/tantivy-0.18/src/bin/reproduce.rs b/engines/tantivy-0.18/src/bin/reproduce.rs new file mode 100644 index 00000000000..2f989fc6d15 --- /dev/null +++ b/engines/tantivy-0.18/src/bin/reproduce.rs @@ -0,0 +1,84 @@ +use tantivy; +use tantivy::query::{Query, TermQuery, QueryParser}; +use tantivy::{Term, TERMINATED, Searcher, DocSet, SegmentId, DocId, Score}; +use tantivy::schema::IndexRecordOption; +use tantivy::query::Scorer; +use futures::executor::block_on; + +// fn test_block_wand_aux(term_query: &TermQuery, searcher: &Searcher) -> tantivy::Result<()> { +// let term_weight = term_query.specialized_weight(&searcher, true); +// for (i, reader) in searcher.segment_readers().iter().enumerate() { +// println!("-------- #{}", i); +// let mut block_max_scores = vec![]; +// let mut block_max_scores_b = vec![]; +// let mut docs = vec![]; +// { +// let mut term_scorer = term_weight.specialized_scorer(reader, 1.0f32)?; +// let num_docs = (0u32..term_scorer.doc_freq() as u32).collect::>(); +// for _ in 0..128 { +// let mut score = 0.0f32; +// docs.push(term_scorer.doc()); +// for i in 0..128 { +// score = score.max(term_scorer.score()); +// term_scorer.advance(); +// } +// block_max_scores.push(score); +// } +// } +// dbg!(&docs); +// { +// for d in docs { +// let mut term_scorer = term_weight.specialized_scorer(reader, 1.0f32)?; +// +// { +// let skip_reader = &term_scorer.postings.block_cursor.skip_reader; +// dbg!((skip_reader.last_doc_in_previous_block, skip_reader.last_doc_in_block)); +// } +// term_scorer.shallow_seek(d); +// block_max_scores_b.push(term_scorer.block_max_score()); +// } +// } +// +// for (l, r) in block_max_scores.iter().cloned().zip(block_max_scores_b.iter().cloned()) { +// dbg!((l, r)); +// assert!(2f32 * (l - r).abs() / (l.abs() + r.abs()) < 0.00001, "{} {}", l, r); +// } +// } +// Ok(()) +// } + +fn score(query: &dyn Query, searcher: &Searcher, doc: DocId) -> tantivy::Result { + let weight = query.weight(&searcher, true)?; + let mut scorer = weight.scorer(searcher.segment_reader(0), 1.0f32)?; + assert_eq!(scorer.seek(537_388), 537_388); + Ok(scorer.score()) +} + +fn main() -> tantivy::Result<()> { + let index = tantivy::Index::open_in_dir("idx")?; + let field = index.schema().get_field("text").unwrap(); + let query_parser = QueryParser::for_index(&index, vec![field]); + + let central_query = TermQuery::new(Term::from_field_text(field, "central"), IndexRecordOption::WithFreqs); + let community_query = TermQuery::new(Term::from_field_text(field, "community"), IndexRecordOption::WithFreqs); + let college = TermQuery::new(Term::from_field_text(field, "college"), IndexRecordOption::WithFreqs); + + + let mut query = query_parser.parse_query("central community college")?; + let reader = index.reader()?; + reader.reload()?; + let searcher = reader.searcher(); + + let doc = 537_388; + let central_score = score(¢ral_query, &searcher, doc)? as f64; + let community_score = score(&community_query, &searcher, doc)? as f64; + let college_score = score(&college, &searcher, doc)? as f64; + + dbg!(central_score); + dbg!(community_score); + dbg!(college_score); + + dbg!(central_score + community_score + college_score); + dbg!(community_score + college_score + central_score ); + Ok(()) +} diff --git a/engines/tantivy-0.19/Cargo.lock b/engines/tantivy-0.19/Cargo.lock new file mode 100644 index 00000000000..dd3a3c1cebb --- /dev/null +++ b/engines/tantivy-0.19/Cargo.lock @@ -0,0 +1,1295 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "ahash" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47" +dependencies = [ + "getrandom", + "once_cell", + "version_check", +] + +[[package]] +name = "aho-corasick" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f" +dependencies = [ + "memchr", +] + +[[package]] +name = "arc-swap" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "983cd8b9d4b02a6dc6ffa557262eb5858a27a0038ffffe21a0f133eaa819a164" + +[[package]] +name = "async-trait" +version = "0.1.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d1d8ab452a3936018a687b20e6f7cf5363d713b732b8884001317b0e48aa3" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "atty" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8" +dependencies = [ + "hermit-abi 0.1.19", + "libc", + "winapi", +] + +[[package]] +name = "autocfg" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a" + +[[package]] +name = "base64" +version = "0.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitpacking" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8c7d2ac73c167c06af4a5f37e6e59d84148d57ccbe4480b76f0273eefea82d7" +dependencies = [ + "crunchy", +] + +[[package]] +name = "bumpalo" +version = "3.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba" + +[[package]] +name = "byteorder" +version = "1.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610" + +[[package]] +name = "cc" +version = "1.0.78" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a20104e2335ce8a659d6dd92a51a767a0c062599c73b343fd152cb401e828c3d" + +[[package]] +name = "census" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5927edd8345aef08578bcbb4aea7314f340d80c7f4931f99fbeb40b99d8f5060" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "combine" +version = "4.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a909e4d93292cd8e9c42e189f61681eff9d67b6541f96b8a1a737f23737bd001" +dependencies = [ + "memchr", +] + +[[package]] +name = "crc32fast" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2dd04ddaf88237dc3b8d8f9a3c1004b506b54b3313403944054d23c0870c521" +dependencies = [ + "cfg-if", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-deque" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e" +dependencies = [ + "cfg-if", + "crossbeam-epoch", + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd" +dependencies = [ + "cfg-if", + "crossbeam-utils", + "lazy_static", + "memoffset", + "scopeguard", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db" +dependencies = [ + "cfg-if", + "lazy_static", +] + +[[package]] +name = "crunchy" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7" + +[[package]] +name = "downcast-rs" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ea835d29036a4087793836fa931b08837ad5e957da9e23886b29586fb9b6650" + +[[package]] +name = "either" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457" + +[[package]] +name = "env_logger" +version = "0.5.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38" +dependencies = [ + "atty", + "humantime", + "log", + "regex", + "termcolor", +] + +[[package]] +name = "fail" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fe5e43d0f78a42ad591453aedb1d7ae631ce7ee445c7643691055a9ed8d3b01c" +dependencies = [ + "log", + "once_cell", + "rand", +] + +[[package]] +name = "fastdivide" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25c7df09945d65ea8d70b3321547ed414bbc540aad5bac6883d021b970f35b04" + +[[package]] +name = "fastfield_codecs" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e7974d8d02ce96ba398517c8f5d68d9663c749b6c7acb0ec9770545f9fdfafc" +dependencies = [ + "fastdivide", + "itertools", + "log", + "ownedbytes", + "tantivy-bitpacker", + "tantivy-common", +] + +[[package]] +name = "fastrand" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499" +dependencies = [ + "instant", +] + +[[package]] +name = "fs2" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" +dependencies = [ + "libc", + "winapi", +] + +[[package]] +name = "futures" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a12aa0eb539080d55c3f2d45a67c3b58b6b0773c1a3ca2dfec66d58c97fd66ca" +dependencies = [ + "futures-channel", + "futures-core", + "futures-executor", + "futures-io", + "futures-sink", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-channel" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d" + +[[package]] +name = "futures-executor" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "45025be030969d763025784f7f355043dc6bc74093e4ecc5000ca4dc50d8745c" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "522de2a0fe3e380f1bc577ba0474108faf3f6b18321dbf60b3b9c39a75073377" + +[[package]] +name = "futures-macro" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18e4a4b95cea4b4ccbcf1c5675ca7c4ee4e9e75eb79944d07defde18068f79bb" +dependencies = [ + "autocfg", + "proc-macro-hack", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "futures-sink" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36ea153c13024fe480590b3e3d4cad89a0cfacecc24577b68f86c6ced9c2bc11" + +[[package]] +name = "futures-task" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99" + +[[package]] +name = "futures-util" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481" +dependencies = [ + "autocfg", + "futures-channel", + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "pin-utils", + "proc-macro-hack", + "proc-macro-nested", + "slab", +] + +[[package]] +name = "generator" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d266041a359dfa931b370ef684cceb84b166beb14f7f0421f4a6a3d0c446d12e" +dependencies = [ + "cc", + "libc", + "log", + "rustversion", + "windows", +] + +[[package]] +name = "getrandom" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753" +dependencies = [ + "cfg-if", + "libc", + "wasi", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" +dependencies = [ + "ahash", +] + +[[package]] +name = "hermit-abi" +version = "0.1.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33" +dependencies = [ + "libc", +] + +[[package]] +name = "hermit-abi" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7" +dependencies = [ + "libc", +] + +[[package]] +name = "htmlescape" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" + +[[package]] +name = "humantime" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df004cfca50ef23c36850aaaa59ad52cc70d0e90243c3c7737a4dd32dc7a3c4f" +dependencies = [ + "quick-error", +] + +[[package]] +name = "instant" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" +dependencies = [ + "cfg-if", + "js-sys", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "itertools" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" +dependencies = [ + "either", +] + +[[package]] +name = "itoa" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440" + +[[package]] +name = "js-sys" +version = "0.3.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "lazy_static" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" + +[[package]] +name = "levenshtein_automata" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25" + +[[package]] +name = "libc" +version = "0.2.105" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "869d572136620d55835903746bcb5cdc54cb2851fd0aeec53220b4bb65ef3013" + +[[package]] +name = "log" +version = "0.4.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "loom" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff50ecb28bb86013e935fb6683ab1f6d3a20016f123c76fd4c27470076ac30f5" +dependencies = [ + "cfg-if", + "generator", + "pin-utils", + "scoped-tls", + "tracing", + "tracing-subscriber", +] + +[[package]] +name = "lru" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999beba7b6e8345721bd280141ed958096a2e4abdf74f67ff4ce49b4b54e47a" +dependencies = [ + "hashbrown", +] + +[[package]] +name = "lz4_flex" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a8cbbb2831780bc3b9c15a41f5b49222ef756b6730a95f3decfdd15903eb5a3" + +[[package]] +name = "matchers" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558" +dependencies = [ + "regex-automata", +] + +[[package]] +name = "measure_time" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56220900f1a0923789ecd6bf25fbae8af3b2f1ff3e9e297fc9b6b8674dd4d852" +dependencies = [ + "instant", + "log", +] + +[[package]] +name = "memchr" +version = "2.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a" + +[[package]] +name = "memmap2" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b182332558b18d807c4ce1ca8ca983b34c3ee32765e47b3f0f69b90355cc1dc" +dependencies = [ + "libc", +] + +[[package]] +name = "memoffset" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59accc507f1338036a0477ef61afdae33cde60840f4dfe481319ce3ad116ddf9" +dependencies = [ + "autocfg", +] + +[[package]] +name = "murmurhash32" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d736ff882f0e85fe9689fb23db229616c4c00aee2b3ac282f666d8f20eb25d4a" +dependencies = [ + "byteorder", +] + +[[package]] +name = "nu-ansi-term" +version = "0.46.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84" +dependencies = [ + "overload", + "winapi", +] + +[[package]] +name = "num_cpus" +version = "1.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b" +dependencies = [ + "hermit-abi 0.2.6", + "libc", +] + +[[package]] +name = "once_cell" +version = "1.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "86f0b0d4bf799edbc74508c1e8bf170ff5f41238e5f8225603ca7caaae2b7860" + +[[package]] +name = "oneshot" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc22d22931513428ea6cc089e942d38600e3d00976eef8c86de6b8a3aadec6eb" +dependencies = [ + "loom", +] + +[[package]] +name = "overload" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39" + +[[package]] +name = "ownedbytes" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e957eaa64a299f39755416e5b3128c505e9d63a91d0453771ad2ccd3907f8db" +dependencies = [ + "stable_deref_trait", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "ppv-lite86" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3ca011bd0129ff4ae15cd04c4eef202cadf6c51c21e47aba319b4e0501db741" + +[[package]] +name = "proc-macro-hack" +version = "0.5.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5" + +[[package]] +name = "proc-macro-nested" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc881b2c22681370c6a780e47af9840ef841837bc98118431d4e1868bd0c1086" + +[[package]] +name = "proc-macro2" +version = "1.0.49" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57a8eca9f9c4ffde41714334dee777596264c7825420f521abc92b5b5deb63a5" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quick-error" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0" + +[[package]] +name = "quote" +version = "1.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "rand" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8" +dependencies = [ + "libc", + "rand_chacha", + "rand_core", + "rand_hc", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7" +dependencies = [ + "getrandom", +] + +[[package]] +name = "rand_hc" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7" +dependencies = [ + "rand_core", +] + +[[package]] +name = "rayon" +version = "1.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6db3a213adf02b3bcfd2d3846bb41cb22857d131789e01df434fb7e7bc0759b7" +dependencies = [ + "either", + "rayon-core", +] + +[[package]] +name = "rayon-core" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cac410af5d00ab6884528b4ab69d1e8e146e8d471201800fa1b4524126de6ad3" +dependencies = [ + "crossbeam-channel", + "crossbeam-deque", + "crossbeam-utils", + "num_cpus", +] + +[[package]] +name = "redox_syscall" +version = "0.2.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff" +dependencies = [ + "bitflags", +] + +[[package]] +name = "regex" +version = "1.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e076559ef8e241f2ae3479e36f97bd5741c0330689e217ad51ce2c76808b868a" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132" +dependencies = [ + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.6.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "456c603be3e8d448b072f410900c09faf164fbce2d480456f50eea6e25f9c848" + +[[package]] +name = "remove_dir_all" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7" +dependencies = [ + "winapi", +] + +[[package]] +name = "rust-stemmers" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54" +dependencies = [ + "serde", + "serde_derive", +] + +[[package]] +name = "rustc-hash" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" + +[[package]] +name = "rustversion" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5583e89e108996506031660fe09baa5011b9dd0341b89029313006d1fb508d70" + +[[package]] +name = "ryu" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "71d301d4193d031abdd79ff7e3dd721168a9572ef3fe51a1517aba235bd8f86e" + +[[package]] +name = "scoped-tls" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294" + +[[package]] +name = "scopeguard" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd" + +[[package]] +name = "serde" +version = "1.0.152" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb7d1f0d3021d347a83e556fc4683dea2ea09d87bccdf88ff5c12545d89d5efb" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.152" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af487d118eecd09402d70a5d72551860e788df87b464af30e5ea6a38c75c541e" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883" +dependencies = [ + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "sharded-slab" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31" +dependencies = [ + "lazy_static", +] + +[[package]] +name = "slab" +version = "0.4.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5" + +[[package]] +name = "smallvec" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0" + +[[package]] +name = "stable_deref_trait" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3" + +[[package]] +name = "syn" +version = "1.0.107" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f4064b5b16e03ae50984a5a8ed5d4f8803e6bc1fd170a3cda91a1be4b18e3f5" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "tantivy" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b90159ddd3ab4cbb177100c475d84c896f3e94b0b8dd2954b115985024215877" +dependencies = [ + "aho-corasick", + "arc-swap", + "async-trait", + "base64", + "bitpacking", + "byteorder", + "census", + "crc32fast", + "crossbeam-channel", + "downcast-rs", + "fail", + "fastdivide", + "fastfield_codecs", + "fs2", + "htmlescape", + "itertools", + "levenshtein_automata", + "log", + "lru", + "lz4_flex", + "measure_time", + "memmap2", + "murmurhash32", + "num_cpus", + "once_cell", + "oneshot", + "ownedbytes", + "rayon", + "regex", + "rust-stemmers", + "rustc-hash", + "serde", + "serde_json", + "smallvec", + "stable_deref_trait", + "tantivy-bitpacker", + "tantivy-common", + "tantivy-fst", + "tantivy-query-grammar", + "tempfile", + "thiserror", + "time", + "uuid", + "winapi", +] + +[[package]] +name = "tantivy-bench" +version = "0.1.0" +dependencies = [ + "env_logger", + "futures", + "serde", + "serde_derive", + "serde_json", + "tantivy", +] + +[[package]] +name = "tantivy-bitpacker" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e71a0c95b82d4292b097a09b989a6380d28c3a86800c841a2d03bae1fc8b9fa6" + +[[package]] +name = "tantivy-common" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "14fef4182bb60df9a4b92cd8ecab39ba2e50a05542934af17eef1f49660705cb" +dependencies = [ + "byteorder", + "ownedbytes", +] + +[[package]] +name = "tantivy-fst" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc3c506b1a8443a3a65352df6382a1fb6a7afe1a02e871cee0d25e2c3d5f3944" +dependencies = [ + "byteorder", + "regex-syntax", + "utf8-ranges", +] + +[[package]] +name = "tantivy-query-grammar" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "343e3ada4c1c480953f6960f8a21ce9c76611480ffdd4f4e230fdddce0fc5331" +dependencies = [ + "combine", + "once_cell", + "regex", +] + +[[package]] +name = "tempfile" +version = "3.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5cdb1ef4eaeeaddc8fbd371e5017057064af0911902ef36b39801f67cc6d79e4" +dependencies = [ + "cfg-if", + "fastrand", + "libc", + "redox_syscall", + "remove_dir_all", + "winapi", +] + +[[package]] +name = "termcolor" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2dfed899f0eb03f32ee8c6a0aabdb8a7949659e3466561fc0adf54e26d88c5f4" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "thiserror" +version = "1.0.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "thread_local" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5516c27b78311c50bf42c071425c560ac799b11c30b31f87e3081965fe5e0180" +dependencies = [ + "once_cell", +] + +[[package]] +name = "time" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376" +dependencies = [ + "itoa", + "serde", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd" + +[[package]] +name = "time-macros" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2" +dependencies = [ + "time-core", +] + +[[package]] +name = "tracing" +version = "0.1.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8" +dependencies = [ + "cfg-if", + "pin-project-lite", + "tracing-attributes", + "tracing-core", +] + +[[package]] +name = "tracing-attributes" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tracing-core" +version = "0.1.30" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a" +dependencies = [ + "once_cell", + "valuable", +] + +[[package]] +name = "tracing-log" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ddad33d2d10b1ed7eb9d1f518a5674713876e97e5bb9b7345a7984fbb4f922" +dependencies = [ + "lazy_static", + "log", + "tracing-core", +] + +[[package]] +name = "tracing-subscriber" +version = "0.3.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6176eae26dd70d0c919749377897b54a9276bd7061339665dd68777926b5a70" +dependencies = [ + "matchers", + "nu-ansi-term", + "once_cell", + "regex", + "sharded-slab", + "smallvec", + "thread_local", + "tracing", + "tracing-core", + "tracing-log", +] + +[[package]] +name = "unicode-ident" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "84a22b9f218b40614adcb3f4ff08b703773ad44fa9423e4e0d346d5db86e4ebc" + +[[package]] +name = "utf8-ranges" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4ae116fef2b7fea257ed6440d3cfcff7f190865f170cdad00bb6465bf18ecba" + +[[package]] +name = "uuid" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "422ee0de9031b5b948b97a8fc04e3aa35230001a722ddd27943e0be31564ce4c" +dependencies = [ + "getrandom", + "serde", +] + +[[package]] +name = "valuable" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d" + +[[package]] +name = "version_check" +version = "0.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe" + +[[package]] +name = "wasi" +version = "0.10.2+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6" + +[[package]] +name = "wasm-bindgen" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.83" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f" + +[[package]] +name = "web-sys" +version = "0.3.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bcda906d8be16e728fd5adc5b729afad4e444e106ab28cd1c7256e54fa61510f" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178" +dependencies = [ + "winapi", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "windows" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1c4bd0a50ac6020f65184721f758dba47bb9fbc2133df715ec74a237b26794a" +dependencies = [ + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_msvc" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec7711666096bd4096ffa835238905bb33fb87267910e154b18b44eaabb340f2" + +[[package]] +name = "windows_i686_gnu" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "763fc57100a5f7042e3057e7e8d9bdd7860d330070251a73d003563a3bb49e1b" + +[[package]] +name = "windows_i686_msvc" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7bc7cbfe58828921e10a9f446fcaaf649204dcfe6c1ddd712c5eebae6bda1106" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6868c165637d653ae1e8dc4d82c25d4f97dd6605eaa8d784b5c6e0ab2a252b65" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.39.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e4d40883ae9cae962787ca76ba76390ffa29214667a111db9e0a1ad8377e809" diff --git a/engines/tantivy-0.19/Cargo.toml b/engines/tantivy-0.19/Cargo.toml new file mode 100644 index 00000000000..1cc8aa662dc --- /dev/null +++ b/engines/tantivy-0.19/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "tantivy-bench" +version = "0.1.0" +authors = ["Jason Wolfe"] +edition = "2018" + +[dependencies] +serde = "1.0" +serde_derive = "1.0" +serde_json = "1.0" +tantivy = "0.19" +env_logger = "0.5" +futures = "*" + +[profile.release] +lto = true +opt-level = 3 +overflow-checks = false +# debug-assertions = false diff --git a/engines/tantivy-0.19/Makefile b/engines/tantivy-0.19/Makefile new file mode 100644 index 00000000000..320f9497ec6 --- /dev/null +++ b/engines/tantivy-0.19/Makefile @@ -0,0 +1,19 @@ +clean: + rm -fr idx + rm -fr target + +compile: target/release/build_index target/release/do_query + +index: idx + +serve: target/release/do_query + @target/release/do_query idx + +target/release/%: + @echo "\n\n\n--- Building tantivy's binary ---" + @cargo build --release --bin $(notdir $@) + +idx: target/release/build_index + @echo "\n\n\n---- Indexing tantivy ----" + @mkdir -p idx + export RUST_LOG=info && target/release/build_index "$@" < ${CORPUS} diff --git a/engines/tantivy-0.19/src/bin/build_index.rs b/engines/tantivy-0.19/src/bin/build_index.rs new file mode 100644 index 00000000000..efae2d83aa5 --- /dev/null +++ b/engines/tantivy-0.19/src/bin/build_index.rs @@ -0,0 +1,57 @@ +use futures::executor::block_on; +use std::env; +use std::io::BufRead; +use std::path::Path; +use tantivy::schema::{Schema, FAST, INDEXED, STORED, TEXT}; +use tantivy::Index; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap(); +} + +fn create_schema() -> Schema { + let mut schema_builder = Schema::builder(); + schema_builder.add_u64_field("id_num", FAST | INDEXED); + schema_builder.add_text_field("id", STORED); + schema_builder.add_text_field("text", TEXT); + schema_builder.build() +} + +fn main_inner(output_dir: &Path) -> tantivy::Result<()> { + env_logger::init(); + + let schema = create_schema(); + let index = Index::create_in_dir(output_dir, schema.clone()).expect("failed to create index"); + + let mut i = 0; + { + let mut index_writer = index + .writer_with_num_threads(4, 2_000_000_000) + .expect("failed to create index writer"); + let stdin = std::io::stdin(); + + for line in stdin.lock().lines() { + let line = line?; + if line.trim().is_empty() { + continue; + } + i += 1; + if i % 100_000 == 0 { + println!("{}", i); + } + let doc = schema.parse_document(&line)?; + index_writer.add_document(doc).unwrap(); + } + + index_writer.commit()?; + index_writer.wait_merging_threads()?; + } + let segment_ids = index.searchable_segment_ids()?; + let mut index_writer = index + .writer(1_500_000_000) + .expect("failed to create index writer"); + block_on(index_writer.merge(&segment_ids))?; + block_on(index_writer.garbage_collect_files())?; + Ok(()) +} diff --git a/engines/tantivy-0.19/src/bin/do_query.rs b/engines/tantivy-0.19/src/bin/do_query.rs new file mode 100644 index 00000000000..96bac5e3b7f --- /dev/null +++ b/engines/tantivy-0.19/src/bin/do_query.rs @@ -0,0 +1,150 @@ +#![macro_use] +extern crate tantivy; + +use tantivy::collector::{Count, TopDocs}; +use tantivy::query::{QueryParser, Weight}; +use tantivy::tokenizer::TokenizerManager; +use tantivy::{DocId, Index, Score, SegmentReader, TERMINATED}; + +use std::collections::BinaryHeap; +use std::env; +use std::io::BufRead; +use std::path::Path; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap() +} + +struct Float(Score); + +use std::cmp::Ordering; + +impl Eq for Float {} + +impl PartialEq for Float { + fn eq(&self, other: &Self) -> bool { + self.cmp(&other) == Ordering::Equal + } +} + +impl PartialOrd for Float { + fn partial_cmp(&self, other: &Self) -> Option { + Some(self.cmp(other)) + } +} + +impl Ord for Float { + fn cmp(&self, other: &Self) -> Ordering { + other.0.partial_cmp(&self.0).unwrap_or(Ordering::Equal) + } +} + +fn checkpoints_pruning( + weight: &dyn Weight, + reader: &SegmentReader, + n: usize, +) -> tantivy::Result> { + let mut heap: BinaryHeap = BinaryHeap::with_capacity(n); + let mut checkpoints: Vec<(DocId, Score, Score)> = Vec::new(); + let mut limit: Score = 0.0; + weight.for_each_pruning(Score::MIN, reader, &mut |doc, score| { + checkpoints.push((doc, score, score)); + // println!("pruning doc={} score={} limit={}", doc, score, limit); + heap.push(Float(score)); + if heap.len() > n { + heap.pop().unwrap(); + } + limit = heap.peek().unwrap().0; + return limit; + })?; + Ok(checkpoints) +} + +fn checkpoints_no_pruning( + weight: &dyn Weight, + reader: &SegmentReader, + n: usize, +) -> tantivy::Result> { + let mut heap: BinaryHeap = BinaryHeap::with_capacity(n); + let mut checkpoints: Vec<(DocId, Score, Score)> = Vec::new(); + let mut scorer = weight.scorer(reader, 1.0)?; + let mut limit = Score::MIN; + loop { + if scorer.doc() == TERMINATED { + break; + } + let doc = scorer.doc(); + let score = scorer.score(); + if score > limit { + // println!("nopruning doc={} score={} limit={}", doc, score, limit); + checkpoints.push((doc, limit, score)); + heap.push(Float(score)); + if heap.len() > n { + heap.pop().unwrap(); + } + limit = heap.peek().unwrap().0; + } + scorer.advance(); + } + Ok(checkpoints) +} + +fn assert_nearly_equals(left: Score, right: Score) -> bool { + (left - right).abs() * 2.0 / (left + right).abs() < 0.000001 +} + +fn main_inner(index_dir: &Path) -> tantivy::Result<()> { + let index = Index::open_in_dir(index_dir).expect("failed to open index"); + let text_field = index.schema().get_field("text").expect("no all field?!"); + let query_parser = QueryParser::new( + index.schema(), + vec![text_field], + TokenizerManager::default(), + ); + let reader = index.reader()?; + let searcher = reader.searcher(); + + let stdin = std::io::stdin(); + for line_res in stdin.lock().lines() { + let line = line_res?; + let fields: Vec<&str> = line.split("\t").collect(); + assert_eq!( + fields.len(), + 2, + "Expected a line in the format query." + ); + let command = fields[0]; + let query = query_parser.parse_query(fields[1])?; + let count; + match command { + "COUNT" => { + count = query.count(&searcher)?; + } + "TOP_10" => { + let _top_k = searcher.search(&query, &TopDocs::with_limit(10))?; + count = 1; + } + "TOP_10_COUNT" => { + let (_top_k, count_) = + searcher.search(&query, &(TopDocs::with_limit(10), Count))?; + count = count_; + } + "DEBUG_TOP_10" => { + let weight = query.weight(tantivy::query::EnableScoring::Enabled(&searcher))?; + for reader in searcher.segment_readers() { + let checkpoints_left = checkpoints_no_pruning(&*weight, reader, 10)?; + let checkpoints_right = checkpoints_pruning(&*weight, reader, 10)?; + } + count = 0; + } + _ => { + println!("UNSUPPORTED"); + continue; + } + } + println!("{}", count); + } + + Ok(()) +} diff --git a/engines/tantivy-0.19/src/bin/reproduce.rs b/engines/tantivy-0.19/src/bin/reproduce.rs new file mode 100644 index 00000000000..2f989fc6d15 --- /dev/null +++ b/engines/tantivy-0.19/src/bin/reproduce.rs @@ -0,0 +1,84 @@ +use tantivy; +use tantivy::query::{Query, TermQuery, QueryParser}; +use tantivy::{Term, TERMINATED, Searcher, DocSet, SegmentId, DocId, Score}; +use tantivy::schema::IndexRecordOption; +use tantivy::query::Scorer; +use futures::executor::block_on; + +// fn test_block_wand_aux(term_query: &TermQuery, searcher: &Searcher) -> tantivy::Result<()> { +// let term_weight = term_query.specialized_weight(&searcher, true); +// for (i, reader) in searcher.segment_readers().iter().enumerate() { +// println!("-------- #{}", i); +// let mut block_max_scores = vec![]; +// let mut block_max_scores_b = vec![]; +// let mut docs = vec![]; +// { +// let mut term_scorer = term_weight.specialized_scorer(reader, 1.0f32)?; +// let num_docs = (0u32..term_scorer.doc_freq() as u32).collect::>(); +// for _ in 0..128 { +// let mut score = 0.0f32; +// docs.push(term_scorer.doc()); +// for i in 0..128 { +// score = score.max(term_scorer.score()); +// term_scorer.advance(); +// } +// block_max_scores.push(score); +// } +// } +// dbg!(&docs); +// { +// for d in docs { +// let mut term_scorer = term_weight.specialized_scorer(reader, 1.0f32)?; +// +// { +// let skip_reader = &term_scorer.postings.block_cursor.skip_reader; +// dbg!((skip_reader.last_doc_in_previous_block, skip_reader.last_doc_in_block)); +// } +// term_scorer.shallow_seek(d); +// block_max_scores_b.push(term_scorer.block_max_score()); +// } +// } +// +// for (l, r) in block_max_scores.iter().cloned().zip(block_max_scores_b.iter().cloned()) { +// dbg!((l, r)); +// assert!(2f32 * (l - r).abs() / (l.abs() + r.abs()) < 0.00001, "{} {}", l, r); +// } +// } +// Ok(()) +// } + +fn score(query: &dyn Query, searcher: &Searcher, doc: DocId) -> tantivy::Result { + let weight = query.weight(&searcher, true)?; + let mut scorer = weight.scorer(searcher.segment_reader(0), 1.0f32)?; + assert_eq!(scorer.seek(537_388), 537_388); + Ok(scorer.score()) +} + +fn main() -> tantivy::Result<()> { + let index = tantivy::Index::open_in_dir("idx")?; + let field = index.schema().get_field("text").unwrap(); + let query_parser = QueryParser::for_index(&index, vec![field]); + + let central_query = TermQuery::new(Term::from_field_text(field, "central"), IndexRecordOption::WithFreqs); + let community_query = TermQuery::new(Term::from_field_text(field, "community"), IndexRecordOption::WithFreqs); + let college = TermQuery::new(Term::from_field_text(field, "college"), IndexRecordOption::WithFreqs); + + + let mut query = query_parser.parse_query("central community college")?; + let reader = index.reader()?; + reader.reload()?; + let searcher = reader.searcher(); + + let doc = 537_388; + let central_score = score(¢ral_query, &searcher, doc)? as f64; + let community_score = score(&community_query, &searcher, doc)? as f64; + let college_score = score(&college, &searcher, doc)? as f64; + + dbg!(central_score); + dbg!(community_score); + dbg!(college_score); + + dbg!(central_score + community_score + college_score); + dbg!(community_score + college_score + central_score ); + Ok(()) +} diff --git a/engines/tantivy-0.6/.cargo/config b/engines/tantivy-0.6/.cargo/config new file mode 100644 index 00000000000..c729c54473b --- /dev/null +++ b/engines/tantivy-0.6/.cargo/config @@ -0,0 +1,2 @@ +[build] +rustflags = "-C target-cpu=native" diff --git a/tantivy/Cargo.lock b/engines/tantivy-0.6/Cargo.lock similarity index 54% rename from tantivy/Cargo.lock rename to engines/tantivy-0.6/Cargo.lock index 09e9c3155c4..6101beca2bc 100644 --- a/tantivy/Cargo.lock +++ b/engines/tantivy-0.6/Cargo.lock @@ -13,34 +13,42 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "atomicwrites" -version = "0.1.5" +version = "0.2.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "nix 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tempdir 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "backtrace" -version = "0.3.5" +version = "0.3.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace-sys 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", - "rustc-demangle 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace-sys 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "backtrace-sys" -version = "0.1.16" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "base64" +version = "0.9.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "cc 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -58,32 +66,35 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "bitflags" -version = "0.5.0" +version = "1.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "bitflags" -version = "0.9.1" +name = "bitpacking" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] -name = "bitflags" -version = "1.0.1" +name = "byteorder" +version = "1.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "byteorder" -version = "1.2.1" +name = "cc" +version = "1.0.17" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "cc" -version = "1.0.4" +name = "census" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cfg-if" -version = "0.1.2" +version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -100,7 +111,7 @@ version = "2.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "ascii 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -108,6 +119,11 @@ name = "crossbeam" version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "crunchy" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "downcast" version = "0.9.2" @@ -120,7 +136,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "either" -version = "1.4.0" +version = "1.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -128,26 +144,31 @@ name = "error-chain" version = "0.8.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "backtrace 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "fs2" -version = "0.2.5" +name = "fnv" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "fst" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "fst" -version = "0.2.3" +name = "fst-regex" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "memmap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fst 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -155,7 +176,7 @@ name = "fuchsia-zircon" version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -166,7 +187,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "futures" -version = "0.1.18" +version = "0.1.21" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -174,31 +195,21 @@ name = "futures-cpupool" version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "gcc" -version = "0.3.54" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "getopts" -version = "0.2.17" -source = "registry+https://github.com/rust-lang/crates.io-index" - [[package]] name = "itertools" version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "either 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "itoa" -version = "0.3.4" +version = "0.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -222,47 +233,36 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "lazy_static" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" - -[[package]] -name = "libc" -version = "0.2.36" +version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "log" -version = "0.3.9" +name = "levenshtein_automata" +version = "0.1.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "fst 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "log" -version = "0.4.1" +name = "libc" +version = "0.2.42" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] -name = "lz4" -version = "1.22.0" +name = "log" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", - "lz4-sys 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", - "skeptic 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "lz4-sys" -version = "1.8.0" +name = "log" +version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "gcc 0.3.54 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -280,73 +280,86 @@ name = "memchr" version = "2.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "memmap" -version = "0.4.0" +version = "0.6.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "fs2 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "nix" -version = "0.9.0" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "num-traits" -version = "0.1.43" +name = "num_cpus" +version = "1.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "num-traits 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "num-traits" -version = "0.2.0" +name = "owned-read" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rental 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] -name = "num_cpus" -version = "1.8.0" +name = "owning_ref" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "owning_ref" -version = "0.3.3" +name = "proc-macro2" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "proc-macro2" +version = "0.4.6" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "stable_deref_trait 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "pulldown-cmark" -version = "0.0.8" +name = "quote" +version = "0.5.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "bitflags 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", - "getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "quote" -version = "0.3.15" +version = "0.6.3" source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] [[package]] name = "rand" @@ -354,7 +367,7 @@ version = "0.3.22" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -364,39 +377,65 @@ version = "0.4.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "redox_syscall" -version = "0.1.37" +version = "0.1.40" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "regex" -version = "0.2.6" +version = "0.2.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "aho-corasick 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", - "regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", "thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", "utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "regex-syntax" -version = "0.4.2" +version = "0.3.9" source = "registry+https://github.com/rust-lang/crates.io-index" +[[package]] +name = "regex-syntax" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "remove_dir_all" -version = "0.3.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rental" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rental-impl 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rental-impl" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.13.11 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -406,112 +445,113 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "rustc-demangle" -version = "0.1.6" +version = "0.1.8" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "serde" -version = "1.0.27" +name = "safemem" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] -name = "serde_derive" -version = "1.0.27" +name = "serde" +version = "1.0.66" source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive_internals 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", -] [[package]] -name = "serde_derive_internals" -version = "0.19.0" +name = "serde_derive" +version = "1.0.66" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)", - "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.14.2 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "serde_json" -version = "1.0.9" +version = "1.0.20" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "itoa 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", - "num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "skeptic" -version = "0.9.0" +name = "snap" +version = "0.2.4" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "pulldown-cmark 0.0.8 (registry+https://github.com/rust-lang/crates.io-index)", - "tempdir 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "stable_deref_trait" -version = "1.0.0" +version = "1.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "syn" -version = "0.11.11" +version = "0.13.11" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)", - "synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)", - "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] -name = "synom" -version = "0.11.3" +name = "syn" +version = "0.14.2" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tantivy" -version = "0.5.0" +version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "atomicwrites 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "atomicwrites 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "base64 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", "bit-set 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", - "cc 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "bitpacking 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "census 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "chan 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", "combine 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)", "crossbeam 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "downcast 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", "error-chain 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", - "fst 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", - "futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fst 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fst-regex 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", "itertools 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)", "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", - "lz4 1.22.0 (registry+https://github.com/rust-lang/crates.io-index)", "matches 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "owned-read 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", - "regex 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", "rust-stemmers 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "stable_deref_trait 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "tempdir 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)", + "snap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", "tempfile 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", - "time 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", "tinysegmenter 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "uuid 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -519,19 +559,20 @@ dependencies = [ name = "tantivy-bench" version = "0.1.0" dependencies = [ - "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_derive 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", - "serde_json 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)", - "tantivy 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)", + "tantivy 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] name = "tempdir" -version = "0.3.6" +version = "0.3.7" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", - "remove_dir_all 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -540,9 +581,9 @@ version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", "rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", ] @@ -551,20 +592,10 @@ name = "thread_local" version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", ] -[[package]] -name = "time" -version = "0.1.39" -source = "registry+https://github.com/rust-lang/crates.io-index" -dependencies = [ - "libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)", - "redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)", - "winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)", -] - [[package]] name = "tinysegmenter" version = "0.1.0" @@ -574,9 +605,14 @@ dependencies = [ "maplit 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "ucd-util" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "unicode-xid" -version = "0.0.4" +version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] @@ -587,6 +623,11 @@ dependencies = [ "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "utf8-ranges" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + [[package]] name = "utf8-ranges" version = "1.0.0" @@ -594,11 +635,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "uuid" -version = "0.5.1" +version = "0.6.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ - "rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)", - "serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -613,7 +655,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "winapi" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" dependencies = [ "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", @@ -638,83 +680,88 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [metadata] "checksum aho-corasick 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "d6531d44de723825aa81398a6415283229725a00fa30713812ab9323faa82fc4" "checksum ascii 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae7d751998c189c1d4468cf0a39bb2eae052a9c58d50ebb3b9591ee3813ad50" -"checksum atomicwrites 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "7adff0f3666b56fb01ce4caea58193a26d97d384587a10e950e0e9c857de3cca" -"checksum backtrace 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ebbbf59b1c43eefa8c3ede390fcc36820b4999f7914104015be25025e0d62af2" -"checksum backtrace-sys 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "44585761d6161b0f57afc49482ab6bd067e4edef48c12a152c237eb0203f7661" +"checksum atomicwrites 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a3420b33cdefd3feb223dddc23739fc05cc034eb0f2be792c763e3d89e1eb6e3" +"checksum backtrace 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "dbdd17cd962b570302f5297aea8648d5923e22e555c2ed2d8b2e34eca646bf6d" +"checksum backtrace-sys 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)" = "bff67d0c06556c0b8e6b5f090f0eac52d950d9dfd1d35ba04e4ca3543eaf6a7e" +"checksum base64 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "85415d2594767338a74a30c1d370b2f3262ec1b4ed2d7bba5b3faf4de40467d9" "checksum bit-set 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d9bf6104718e80d7b26a68fdbacff3481cfc05df670821affc7e9cbc1884400c" "checksum bit-vec 0.4.4 (registry+https://github.com/rust-lang/crates.io-index)" = "02b4ff8b16e6076c3e14220b39fbc1fabb6737522281a388998046859400895f" -"checksum bitflags 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4f67931368edf3a9a51d29886d245f1c3db2f1ef0dcc9e35ff70341b78c10d23" -"checksum bitflags 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4efd02e230a02e18f92fc2735f44597385ed02ad8f831e7c1c1156ee5e1ab3a5" -"checksum bitflags 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b3c30d3802dfb7281680d6285f2ccdaa8c2d8fee41f93805dba5c4cf50dc23cf" -"checksum byteorder 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "652805b7e73fada9d85e9a6682a4abd490cb52d96aeecc12e33a0de34dfd0d23" -"checksum cc 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "deaf9ec656256bb25b404c51ef50097207b9cbb29c933d31f92cae5a8a0ffee0" -"checksum cfg-if 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "d4c819a1287eb618df47cc647173c5c4c66ba19d888a6e50d605672aed3140de" +"checksum bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d0c54bb8f454c567f21197eefcdbf5679d0bd99f2ddbe52e84c77061952e6789" +"checksum bitpacking 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75c04b83d2b444a22c6a30f4d068597efbe468fe56f068e042e627ded2fb21e7" +"checksum byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "74c0b906e9446b0a2e4f760cdb3fa4b2c48cdc6db8766a845c54b6ff063fd2e9" +"checksum cc 1.0.17 (registry+https://github.com/rust-lang/crates.io-index)" = "49ec142f5768efb5b7622aebc3fdbdbb8950a4b9ba996393cb76ef7466e8747d" +"checksum census 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e5c044df9888597e4e96610c916ce9d58c653b67c01b5eac5b7abd7405f4fee4" +"checksum cfg-if 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "405216fd8fe65f718daa7102ea808a946b6ce40c742998fbfd3463645552de18" "checksum chan 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "9af7c487bb99c929ba2715b1a3a7bf45f5062bf5b6eae5d32b292a96c5865172" "checksum combine 2.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "1645a65a99c7c8d345761f4b75a6ffe5be3b3b27a93ee731fccc5050ba6be97c" "checksum crossbeam 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "24ce9782d4d5c53674646a6a4c1863a21a8fc0cb649b3c94dfc16e45071dea19" +"checksum crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda" "checksum downcast 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6c6fe31318b6ef21166c8e839e680238eb16f875849d597544eead7ec882eed3" "checksum dtoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "09c3753c3db574d215cba4ea76018483895d7bff25a31b49ba45db21c48e50ab" -"checksum either 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "740178ddf48b1a9e878e6d6509a1442a2d42fd2928aae8e7a6f8a36fb01981b3" +"checksum either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0" "checksum error-chain 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "6930e04918388a9a2e41d518c25cf679ccafe26733fb4127dbf21993f2575d46" -"checksum fs2 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "bcd414e5a1a979b931bb92f41b7a54106d3f6d2e6c253e9ce943b7cd468251ef" -"checksum fst 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "11e21bdd626be09f2bd66b44dbb724538176aa3549f3109208db35538dd2699f" +"checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" +"checksum fst 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d94485a00b1827b861dd9d1a2cc9764f9044d4c535514c0760a5a2012ef3399f" +"checksum fst-regex 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc263c1e9c501bcd8503f6b7d030aee16f8e22b1107113c10c39028dc9e25fec" "checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" "checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" -"checksum futures 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)" = "0bab5b5e94f5c31fc764ba5dd9ad16568aae5d4825538c01d6bca680c9bf94a7" +"checksum futures 0.1.21 (registry+https://github.com/rust-lang/crates.io-index)" = "1a70b146671de62ec8c8ed572219ca5d594d9b06c0b364d5e67b722fc559b48c" "checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" -"checksum gcc 0.3.54 (registry+https://github.com/rust-lang/crates.io-index)" = "5e33ec290da0d127825013597dbdfc28bee4964690c7ce1166cbc2a7bd08b1bb" -"checksum getopts 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "b900c08c1939860ce8b54dc6a89e26e00c04c380fd0e09796799bd7f12861e05" "checksum itertools 0.5.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4833d6978da405305126af4ac88569b5d71ff758581ce5a987dbfa3755f694fc" -"checksum itoa 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8324a32baf01e2ae060e9de58ed0bc2320c9a2833491ee36cd3b4c414de4db8c" +"checksum itoa 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c069bbec61e1ca5a596166e55dfe4773ff745c3d16b700013bcaff9a6df2c682" "checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" "checksum lazy_static 0.1.16 (registry+https://github.com/rust-lang/crates.io-index)" = "cf186d1a8aa5f5bee5fd662bc9c1b949e0259e1bcc379d1f006847b0080c7417" "checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" -"checksum lazy_static 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c8f31047daa365f19be14b47c29df4f7c3b581832407daabe6ae77397619237d" -"checksum libc 0.2.36 (registry+https://github.com/rust-lang/crates.io-index)" = "1e5d97d6708edaa407429faa671b942dc0f2727222fb6b6539bf1db936e4b121" +"checksum lazy_static 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e6412c5e2ad9584b0b8e979393122026cdd6d2a80b933f890dcd694ddbe73739" +"checksum levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73a004f877f468548d8d0ac4977456a249d8fabbdb8416c36db163dfc8f2e8ca" +"checksum libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)" = "b685088df2b950fccadf07a7187c8ef846a959c142338a48f9dc0b94517eb5f1" "checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" -"checksum log 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "89f010e843f2b1a31dbd316b3b8d443758bc634bed37aabade59c686d644e0a2" -"checksum lz4 1.22.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fe55d2ebbc2e4fc987e6fbfc13f416d97b06d06e50bc1124d613aa790842f80c" -"checksum lz4-sys 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a59044c3ba3994f3d2aa2270ddd6c5947922219501e67efde5604d36aad462b5" +"checksum log 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6fddaa003a65722a7fb9e26b0ce95921fe4ba590542ced664d8ce2fa26f9f3ac" "checksum maplit 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "22593015b8df7747861c69c28acd32589fb96c1686369f3b661d12e409d4cf65" "checksum matches 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "100aabe6b8ff4e4a7e32c1c13523379802df0772b82466207ac25b013f193376" "checksum memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "796fba70e76612589ed2ce7f45282f5af869e0fdd7cc6199fa1aa1f1d591ba9d" -"checksum memmap 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "69253224aa10070855ea8fe9dbe94a03fc2b1d7930bb340c9e586a7513716fea" -"checksum nix 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "a2c5afeb0198ec7be8569d666644b574345aad2e95a53baf3a532da3e0f3fb32" -"checksum num-traits 0.1.43 (registry+https://github.com/rust-lang/crates.io-index)" = "92e5113e9fd4cc14ded8e499429f396a20f98c772a47cc8622a736e1ec843c31" -"checksum num-traits 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e7de20f146db9d920c45ee8ed8f71681fd9ade71909b48c3acbd766aa504cf10" +"checksum memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2ffa2c986de11a9df78620c01eeaaf27d94d3ff02bf81bfcca953102dd0c6ff" +"checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" "checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30" +"checksum owned-read 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "891a86c4936a0bf69ce5ea62917f3b0184dcad5b468daccdf5df71d3f4f4421f" "checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37" -"checksum pulldown-cmark 0.0.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1058d7bb927ca067656537eec4e02c2b4b70eaaa129664c5b90c111e20326f41" -"checksum quote 0.3.15 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6e920b65c65f10b2ae65c831a81a073a89edd28c7cce89475bff467ab4167a" +"checksum proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1b06e2f335f48d24442b35a19df506a835fb3547bc3c06ef27340da9acf5cae7" +"checksum proc-macro2 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "effdb53b25cdad54f8f48843d67398f7ef2e14f12c1b4cb4effc549a6462a4d6" +"checksum quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9949cfe66888ffe1d53e6ec9d9f3b70714083854be20fd5e271b232a017401e8" +"checksum quote 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e44651a0dc4cdd99f71c83b561e221f714912d11af1a4dff0631f923d53af035" "checksum rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)" = "15a732abf9d20f0ad8eeb6f909bf6868722d9a06e1e50802b6a70351f40b4eb1" "checksum rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "eba5f8cb59cc50ed56be8880a5c7b496bfd9bd26394e176bc67884094145c2c5" -"checksum redox_syscall 0.1.37 (registry+https://github.com/rust-lang/crates.io-index)" = "0d92eecebad22b767915e4d529f89f28ee96dbbf5a4810d2b844373f136417fd" -"checksum regex 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "5be5347bde0c48cfd8c3fdc0766cdfe9d8a755ef84d620d6794c778c91de8b2b" -"checksum regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8e931c58b93d86f080c734bfd2bce7dd0079ae2331235818133c8be7f422e20e" -"checksum remove_dir_all 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b5d2f806b0fcdabd98acd380dc8daef485e22bcb7cddc811d1337967f2528cf5" +"checksum redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "c214e91d3ecf43e9a4e41e578973adeb14b474f2bee858742d127af75a0112b1" +"checksum regex 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9329abc99e39129fcceabd24cf5d85b4671ef7c29c50e972bc5afe32438ec384" +"checksum regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "f9ec002c35e86791825ed294b50008eea9ddfc8def4420124fbc6b08db834957" +"checksum regex-syntax 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "7d707a4fa2637f2dca2ef9fd02225ec7661fe01a53623c1e6515b6916511f7a7" +"checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" +"checksum rental 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c41f0b3b22eb38038b317456517ff80ae77a7232bd166034fba9c85fa1c0982e" +"checksum rental-impl 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5a650ece3255e5ce7bf69eec8e65d7171e9627491cea8b72a709e67de59a419c" "checksum rust-stemmers 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "8398e39ef1740238f87fcc4171fccc2231ba7ef1ecd64075d77feb0041927fc7" -"checksum rustc-demangle 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f312457f8a4fa31d3581a6f423a70d6c33a10b95291985df55f1ff670ec10ce8" -"checksum serde 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)" = "db99f3919e20faa51bb2996057f5031d8685019b5a06139b1ce761da671b8526" -"checksum serde_derive 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)" = "f4ba7591cfe93755e89eeecdbcc668885624829b020050e6aec99c2a03bd3fd0" -"checksum serde_derive_internals 0.19.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6e03f1c9530c3fb0a0a5c9b826bdd9246a5921ae995d75f512ac917fc4dd55b5" -"checksum serde_json 1.0.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c9db7266c7d63a4c4b7fe8719656ccdd51acf1bed6124b174f933b009fb10bcb" -"checksum skeptic 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dd7d8dc1315094150052d0ab767840376335a98ac66ef313ff911cdf439a5b69" -"checksum stable_deref_trait 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "15132e0e364248108c5e2c02e3ab539be8d6f5d52a01ca9bbf27ed657316f02b" -"checksum syn 0.11.11 (registry+https://github.com/rust-lang/crates.io-index)" = "d3b891b9015c88c576343b9b3e41c2c11a51c219ef067b264bd9c8aa9b441dad" -"checksum synom 0.11.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a393066ed9010ebaed60b9eafa373d4b1baac186dd7e008555b0f702b51945b6" -"checksum tantivy 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "dcaf44ed828eea2da561b2bb5bb490e9dc68ad375609330e512818c143cc9d7c" -"checksum tempdir 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "f73eebdb68c14bcb24aef74ea96079830e7fa7b31a6106e42ea7ee887c1e134e" +"checksum rustc-demangle 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "76d7ba1feafada44f2d38eed812bd2489a03c0f5abb975799251518b68848649" +"checksum safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e27a8b19b835f7aea908818e871f5cc3a5a186550c30773be987e155e8163d8f" +"checksum serde 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)" = "e9a2d9a9ac5120e0f768801ca2b58ad6eec929dc9d1d616c162f208869c2ce95" +"checksum serde_derive 1.0.66 (registry+https://github.com/rust-lang/crates.io-index)" = "0a90213fa7e0f5eac3f7afe2d5ff6b088af515052cc7303bd68c7e3b91a3fb79" +"checksum serde_json 1.0.20 (registry+https://github.com/rust-lang/crates.io-index)" = "fc97cccc2959f39984524026d760c08ef0dd5f0f5948c8d31797dbfae458c875" +"checksum snap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "174451758f7045084ae92070f18e5d8e5c53a716f4172a9c6b17ce03e7b82573" +"checksum stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ffbc596e092fe5f598b12ef46cc03754085ac2f4d8c739ad61c4ae266cc3b3fa" +"checksum syn 0.13.11 (registry+https://github.com/rust-lang/crates.io-index)" = "14f9bf6292f3a61d2c716723fdb789a41bbe104168e6f496dc6497e531ea1b9b" +"checksum syn 0.14.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c67da57e61ebc7b7b6fff56bb34440ca3a83db037320b0507af4c10368deda7d" +"checksum tantivy 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "213f888cb19f9bb25142c025f476dd59b8c5ca2a60f93239d21409dc09dda8a2" +"checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" "checksum tempfile 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "11ce2fe9db64b842314052e2421ac61a73ce41b898dc8e3750398b219c5fc1e0" "checksum thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "279ef31c19ededf577bfd12dfae728040a21f635b06a24cd670ff510edd38963" -"checksum time 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "a15375f1df02096fb3317256ce2cee6a1f42fc84ea5ad5fc8c421cfe40c73098" "checksum tinysegmenter 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7e767ff68150da3d23c88482da07abd6532e2e928093b80e79dc4818119bbc36" -"checksum unicode-xid 0.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f860d7d29cf02cb2f3f359fd35991af3d30bac52c57d265a3c461074cb4dc" +"checksum ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd2be2d6639d0f8fe6cdda291ad456e23629558d466e2789d2c3e9892bda285d" +"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" "checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" +"checksum utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1ca13c08c41c9c3e04224ed9ff80461d97e121589ff27c753a16cb10830ae0f" "checksum utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "662fab6525a98beff2921d7f61a39e7d59e0b425ebc7d0d9e66d316e55124122" -"checksum uuid 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "bcc7e3b898aa6f6c08e5295b6c89258d1331e9ac578cc992fb818759951bdc22" +"checksum uuid 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "e1436e58182935dcd9ce0add9ea0b558e8a87befe01c1a301e6020aeb0876363" "checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" "checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" -"checksum winapi 0.3.4 (registry+https://github.com/rust-lang/crates.io-index)" = "04e3bd221fcbe8a271359c04f21a76db7d0c6028862d1bb5512d85e1e2eb5bb3" +"checksum winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "773ef9dcc5f24b7d850d0ff101e542ff24c3b090a9768e03ff889fdef41f00fd" "checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" "checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" "checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" diff --git a/tantivy/Cargo.toml b/engines/tantivy-0.6/Cargo.toml similarity index 83% rename from tantivy/Cargo.toml rename to engines/tantivy-0.6/Cargo.toml index 65917a73bcb..16d3708afaa 100644 --- a/tantivy/Cargo.toml +++ b/engines/tantivy-0.6/Cargo.toml @@ -7,4 +7,5 @@ authors = ["Jason Wolfe"] serde = "1.0" serde_derive = "1.0" serde_json = "1.0" -tantivy = "0.5" \ No newline at end of file +futures = "" +tantivy = "0.6" diff --git a/engines/tantivy-0.6/Makefile b/engines/tantivy-0.6/Makefile new file mode 100644 index 00000000000..ba71ea9f570 --- /dev/null +++ b/engines/tantivy-0.6/Makefile @@ -0,0 +1,20 @@ +clean: + @echo "--- Cleaning tantivy 0.6 ---" + @rm -fr idx + @rm -fr target + +compile: target/release/build_index target/release/do_query + +index: idx + +serve: target/release/do_query + @target/release/do_query idx + +target/release/%: + @echo "--- Building tantivy 0.6 ---" + @cargo build --release --bin $(notdir $@) + +idx: target/release/build_index + @echo "--- Indexing tantivy 0.6 ---" + @mkdir -p idx + export RUST_LOG=info && target/release/build_index "$@" < ${CORPUS} diff --git a/engines/tantivy-0.6/src/bin/build_index.rs b/engines/tantivy-0.6/src/bin/build_index.rs new file mode 100644 index 00000000000..d36dbb0a097 --- /dev/null +++ b/engines/tantivy-0.6/src/bin/build_index.rs @@ -0,0 +1,58 @@ +extern crate tantivy; +extern crate core; +extern crate futures; + +use tantivy::schema::{SchemaBuilder, Schema, TEXT, STORED}; +use tantivy::Index; + +use std::env; +use futures::future::Future; +use std::io::BufRead; +use std::path::Path; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap(); +} + +fn create_schema() -> Schema { + let mut schema_builder = SchemaBuilder::default(); + schema_builder.add_text_field("id", STORED); + schema_builder.add_text_field("text", TEXT); + schema_builder.build() +} + +fn main_inner(output_dir: &Path) -> tantivy::Result<()> { + + let schema = create_schema(); + let index = Index::create_in_dir(output_dir, schema.clone()).expect("failed to create index"); + + // 4 GB heap + let mut index_writer = index.writer(200_000_000).expect("failed to create index writer"); + + let stdin = std::io::stdin(); + + for line in stdin.lock().lines() { + let line = line?; + if line.trim().is_empty() { + continue; + } + let doc = schema.parse_document(&line)?; + index_writer.add_document(doc); + } + + index_writer.commit()?; + + + index_writer.wait_merging_threads()?; + + { + let segment_ids = index.searchable_segment_ids()?; + let mut index_writer = index.writer(1_500_000_000).expect("failed to create index writer"); + index_writer.merge(&segment_ids)?.wait().unwrap(); + index.load_searchers()?; + index_writer.garbage_collect_files()?; + } + + Ok(()) +} diff --git a/engines/tantivy-0.6/src/bin/do_query.rs b/engines/tantivy-0.6/src/bin/do_query.rs new file mode 100644 index 00000000000..1938842085f --- /dev/null +++ b/engines/tantivy-0.6/src/bin/do_query.rs @@ -0,0 +1,63 @@ +#![macro_use] +extern crate tantivy; + +use tantivy::Index; +use tantivy::query::QueryParser; +use tantivy::tokenizer::TokenizerManager; +use tantivy::collector::{chain, TopCollector, CountCollector}; + +use std::env; +use std::io::BufRead; +use std::path::Path; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap() +} + +fn main_inner(index_dir: &Path) -> tantivy::Result<()> { + let index = Index::open_in_dir(index_dir).expect("failed to open index"); + let text_field = index.schema().get_field("text").expect("no all field?!"); + let query_parser = QueryParser::new( + index.schema(), + vec![text_field], + TokenizerManager::default()); + + let searcher = index.searcher(); + + let stdin = std::io::stdin(); + for line_res in stdin.lock().lines() { + let line = line_res?; + let fields: Vec<&str> = line.split("\t").collect(); + assert_eq!(fields.len(), 2, "Expected a line in the format query."); + let command = fields[0]; + let query = query_parser.parse_query(fields[1])?; + let count; + match command { + "COUNT" => { + count = query.count(&*searcher)?; + } + "TOP_10" => { + let mut top_k = TopCollector::with_limit(10); + query.search(&*searcher, &mut top_k)?; + count = 1; + } + "TOP_10_COUNT" => { + let mut top_k = TopCollector::with_limit(10); + let mut count_collector = CountCollector::default(); + { + let mut multi_collector = chain().push(&mut top_k).push(&mut count_collector); + query.search(&*searcher, &mut multi_collector)?; + } + count = count_collector.count(); + } + _ => { + println!("UNSUPPORTED"); + continue; + } + } + println!("{}", count); + } + + Ok(()) +} diff --git a/engines/tantivy-0.7/.cargo/config b/engines/tantivy-0.7/.cargo/config new file mode 100644 index 00000000000..ddff4407b90 --- /dev/null +++ b/engines/tantivy-0.7/.cargo/config @@ -0,0 +1,2 @@ +[build] +rustflags = ["-C", "target-cpu=native"] diff --git a/engines/tantivy-0.7/Cargo.lock b/engines/tantivy-0.7/Cargo.lock new file mode 100644 index 00000000000..fa9ad01d73b --- /dev/null +++ b/engines/tantivy-0.7/Cargo.lock @@ -0,0 +1,999 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "aho-corasick" +version = "0.6.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "arrayvec" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ascii" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "atomicwrites" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "atty" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", + "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "backtrace" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "backtrace-sys 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "backtrace-sys" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "base64" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bit-set" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bit-vec" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitflags" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitpacking" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "byteorder" +version = "1.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cc" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "census" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cfg-if" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cloudabi" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "combine" +version = "3.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ascii 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-channel 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-epoch 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-channel" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-epoch 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-deque" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-epoch 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-utils" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "crossbeam-utils" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "crunchy" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "downcast" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "dtoa" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "either" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "env_logger" +version = "0.5.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "humantime 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "termcolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fail" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure_derive" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.14.5 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fnv" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "fst" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fst-regex" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fst 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fuchsia-zircon" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fuchsia-zircon-sys" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures" +version = "0.1.23" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures-cpupool" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "htmlescape" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "humantime" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "itertools" +version = "0.7.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "itoa" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lazy_static" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lazy_static" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "levenshtein_automata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fst 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libc" +version = "0.2.42" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "log" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "log" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "matches" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "memchr" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "memmap" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "memoffset" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "nix" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "nodrop" +version = "0.1.12" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "num_cpus" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "owned-read" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rental 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "owning_ref" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "owning_ref" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot" +version = "0.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot_core" +version = "0.2.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "proc-macro2" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "proc-macro2" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "quick-error" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "quote" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "quote" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.3.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_core" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "redox_syscall" +version = "0.1.40" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "redox_termios" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aho-corasick 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", + "thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", + "utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex-syntax" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "regex-syntax" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "remove_dir_all" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rental" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rental-impl 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rental-impl" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.13.11 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rust-stemmers" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "safemem" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "scopeguard" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde" +version = "1.0.70" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde_derive" +version = "1.0.70" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.14.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "serde_json" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "dtoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "itoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "smallvec" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "snap" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "stable_deref_trait" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "syn" +version = "0.13.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "syn" +version = "0.14.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "synstructure" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.14.5 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "atomicwrites 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "base64 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", + "bit-set 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitpacking 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "census 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "combine 3.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-channel 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "downcast 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", + "fail 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fst 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fst-regex 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "htmlescape 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "matches 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "owned-read 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rust-stemmers 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)", + "snap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tempfile 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy-bench" +version = "0.1.0" +dependencies = [ + "env_logger 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)", + "tantivy 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tempdir" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tempfile" +version = "3.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "termcolor" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "wincolor 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "termion" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "thread_local" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", + "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ucd-util" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unicode-xid" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unreachable" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "utf8-ranges" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "utf8-ranges" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "uuid" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "void" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "wincolor" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[metadata] +"checksum aho-corasick 0.6.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c1c6d463cbe7ed28720b5b489e7c083eeb8f90d08be2a0d6bb9e1ffea9ce1afa" +"checksum arrayvec 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)" = "a1e964f9e24d588183fcb43503abda40d288c8657dfc27311516ce2f05675aef" +"checksum ascii 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3ae7d751998c189c1d4468cf0a39bb2eae052a9c58d50ebb3b9591ee3813ad50" +"checksum atomicwrites 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a3420b33cdefd3feb223dddc23739fc05cc034eb0f2be792c763e3d89e1eb6e3" +"checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" +"checksum backtrace 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "89a47830402e9981c5c41223151efcced65a0510c13097c769cede7efb34782a" +"checksum backtrace-sys 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)" = "bff67d0c06556c0b8e6b5f090f0eac52d950d9dfd1d35ba04e4ca3543eaf6a7e" +"checksum base64 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "85415d2594767338a74a30c1d370b2f3262ec1b4ed2d7bba5b3faf4de40467d9" +"checksum bit-set 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6f1efcc46c18245a69c38fcc5cc650f16d3a59d034f3106e9ed63748f695730a" +"checksum bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4440d5cb623bb7390ae27fec0bb6c61111969860f8e3ae198bfa0663645e67cf" +"checksum bitflags 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d0c54bb8f454c567f21197eefcdbf5679d0bd99f2ddbe52e84c77061952e6789" +"checksum bitpacking 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75c04b83d2b444a22c6a30f4d068597efbe468fe56f068e042e627ded2fb21e7" +"checksum byteorder 1.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "74c0b906e9446b0a2e4f760cdb3fa4b2c48cdc6db8766a845c54b6ff063fd2e9" +"checksum cc 1.0.18 (registry+https://github.com/rust-lang/crates.io-index)" = "2119ea4867bd2b8ed3aecab467709720b2d55b1bcfe09f772fd68066eaf15275" +"checksum census 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e5c044df9888597e4e96610c916ce9d58c653b67c01b5eac5b7abd7405f4fee4" +"checksum cfg-if 0.1.4 (registry+https://github.com/rust-lang/crates.io-index)" = "efe5c877e17a9c717a0bf3613b2709f723202c4e4675cc8f12926ded29bcb17e" +"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" +"checksum combine 3.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "4cb1ce8e18c99a9c7367663d20658cbd78845d68754cb13a78f1c2e8d3e3334b" +"checksum crossbeam 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d7408247b1b87f480890f28b670c5f8d9a8a4274833433fe74dc0dfd46d33650" +"checksum crossbeam-channel 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "efff2d411e0ac3731b9f6de882b2790fdd2de651577500a806ce78b95b2b9f31" +"checksum crossbeam-deque 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7792c4a9b5a4222f654e3728a3dd945aacc24d2c3a1a096ed265d80e4929cb9a" +"checksum crossbeam-epoch 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "285987a59c4d91388e749850e3cb7b3a92299668528caaacd08005b8f238c0ea" +"checksum crossbeam-utils 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ea52fab26a99d96cdff39d0ca75c9716125937f5dba2ab83923aaaf5928f684a" +"checksum crossbeam-utils 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "677d453a17e8bd2b913fa38e8b9cf04bcdbb5be790aa294f2389661d72036015" +"checksum crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda" +"checksum downcast 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6c6fe31318b6ef21166c8e839e680238eb16f875849d597544eead7ec882eed3" +"checksum dtoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "6d301140eb411af13d3115f9a562c85cc6b541ade9dfa314132244aaee7489dd" +"checksum either 1.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3be565ca5c557d7f59e7cfcf1844f9e3033650c929c6566f511e8005f205c1d0" +"checksum env_logger 0.5.11 (registry+https://github.com/rust-lang/crates.io-index)" = "7873e292d20e8778f951278972596b3df36ac72a65c5b406f6d4961070a870c1" +"checksum fail 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bd2e1a22c616c8c8c96b6e07c243014551f3ba77291d24c22e0bfea6830c0b4e" +"checksum failure 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7efb22686e4a466b1ec1a15c2898f91fa9cb340452496dca654032de20ff95b9" +"checksum failure_derive 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "946d0e98a50d9831f5d589038d2ca7f8f455b1c21028c0db0e84116a12696426" +"checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" +"checksum fst 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d94485a00b1827b861dd9d1a2cc9764f9044d4c535514c0760a5a2012ef3399f" +"checksum fst-regex 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc263c1e9c501bcd8503f6b7d030aee16f8e22b1107113c10c39028dc9e25fec" +"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" +"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" +"checksum futures 0.1.23 (registry+https://github.com/rust-lang/crates.io-index)" = "884dbe32a6ae4cd7da5c6db9b78114449df9953b8d490c9d7e1b51720b922c62" +"checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" +"checksum htmlescape 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" +"checksum humantime 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0484fda3e7007f2a4a0d9c3a703ca38c71c54c55602ce4660c419fd32e188c9e" +"checksum itertools 0.7.8 (registry+https://github.com/rust-lang/crates.io-index)" = "f58856976b776fedd95533137617a02fb25719f40e7d9b01c7043cd65474f450" +"checksum itoa 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5adb58558dcd1d786b5f0bd15f3226ee23486e24b7b58304b60f64dc68e62606" +"checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" +"checksum lazy_static 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "fb497c35d362b6a331cfd94956a07fc2c78a4604cdbee844a81170386b996dd3" +"checksum levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73a004f877f468548d8d0ac4977456a249d8fabbdb8416c36db163dfc8f2e8ca" +"checksum libc 0.2.42 (registry+https://github.com/rust-lang/crates.io-index)" = "b685088df2b950fccadf07a7187c8ef846a959c142338a48f9dc0b94517eb5f1" +"checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" +"checksum log 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "61bd98ae7f7b754bc53dca7d44b604f733c6bba044ea6f41bc8d89272d8161d2" +"checksum matches 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "835511bab37c34c47da5cb44844bea2cfde0236db0b506f90ea4224482c9774a" +"checksum memchr 2.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "796fba70e76612589ed2ce7f45282f5af869e0fdd7cc6199fa1aa1f1d591ba9d" +"checksum memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2ffa2c986de11a9df78620c01eeaaf27d94d3ff02bf81bfcca953102dd0c6ff" +"checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" +"checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" +"checksum nodrop 0.1.12 (registry+https://github.com/rust-lang/crates.io-index)" = "9a2228dca57108069a5262f2ed8bd2e82496d2e074a06d1ccc7ce1687b6ae0a2" +"checksum num_cpus 1.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c51a3322e4bca9d212ad9a158a02abc6934d005490c054a2778df73a70aa0a30" +"checksum owned-read 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05d57fab18d627fc4dffbd78d4a25a5b5b5211fda724231f001bee4cef1b2d3b" +"checksum owning_ref 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "cdf84f41639e037b484f93433aa3897863b561ed65c6e59c7073d7c561710f37" +"checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" +"checksum parking_lot 0.5.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d4d05f1349491390b1730afba60bb20d55761bef489a954546b58b4b34e1e2ac" +"checksum parking_lot_core 0.2.14 (registry+https://github.com/rust-lang/crates.io-index)" = "4db1a8ccf734a7bce794cc19b3df06ed87ab2f3907036b693c68f56b4d4537fa" +"checksum proc-macro2 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "1b06e2f335f48d24442b35a19df506a835fb3547bc3c06ef27340da9acf5cae7" +"checksum proc-macro2 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)" = "cccdc7557a98fe98453030f077df7f3a042052fae465bb61d2c2c41435cfd9b6" +"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" +"checksum quote 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9949cfe66888ffe1d53e6ec9d9f3b70714083854be20fd5e271b232a017401e8" +"checksum quote 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "b71f9f575d55555aa9c06188be9d4e2bfc83ed02537948ac0d520c24d0419f1a" +"checksum rand 0.3.22 (registry+https://github.com/rust-lang/crates.io-index)" = "15a732abf9d20f0ad8eeb6f909bf6868722d9a06e1e50802b6a70351f40b4eb1" +"checksum rand 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "eba5f8cb59cc50ed56be8880a5c7b496bfd9bd26394e176bc67884094145c2c5" +"checksum rand 0.5.4 (registry+https://github.com/rust-lang/crates.io-index)" = "12397506224b2f93e6664ffc4f664b29be8208e5157d3d90b44f09b5fae470ea" +"checksum rand_core 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "edecf0f94da5551fc9b492093e30b041a891657db7940ee221f9d2f66e82eef2" +"checksum redox_syscall 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)" = "c214e91d3ecf43e9a4e41e578973adeb14b474f2bee858742d127af75a0112b1" +"checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" +"checksum regex 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "5bbbea44c5490a1e84357ff28b7d518b4619a159fed5d25f6c1de2d19cc42814" +"checksum regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "f9ec002c35e86791825ed294b50008eea9ddfc8def4420124fbc6b08db834957" +"checksum regex-syntax 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "747ba3b235651f6e2f67dfa8bcdcd073ddb7c243cb21c442fc12395dfcac212d" +"checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" +"checksum rental 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c41f0b3b22eb38038b317456517ff80ae77a7232bd166034fba9c85fa1c0982e" +"checksum rental-impl 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5a650ece3255e5ce7bf69eec8e65d7171e9627491cea8b72a709e67de59a419c" +"checksum rust-stemmers 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "fbf06149ec391025664a5634200ced1afb489f0f3f8a140d515ebc0eb04b4bc0" +"checksum rustc-demangle 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)" = "bcfe5b13211b4d78e5c2cadfebd7769197d95c639c35a50057eb4c05de811395" +"checksum safemem 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e27a8b19b835f7aea908818e871f5cc3a5a186550c30773be987e155e8163d8f" +"checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" +"checksum serde 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)" = "0c3adf19c07af6d186d91dae8927b83b0553d07ca56cbf7f2f32560455c91920" +"checksum serde_derive 1.0.70 (registry+https://github.com/rust-lang/crates.io-index)" = "3525a779832b08693031b8ecfb0de81cd71cfd3812088fafe9a7496789572124" +"checksum serde_json 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)" = "c3c6908c7b925cd6c590358a4034de93dbddb20c45e1d021931459fd419bf0e2" +"checksum smallvec 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "26df3bb03ca5eac2e64192b723d51f56c1b1e0860e7c766281f4598f181acdc8" +"checksum snap 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "174451758f7045084ae92070f18e5d8e5c53a716f4172a9c6b17ce03e7b82573" +"checksum stable_deref_trait 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ffbc596e092fe5f598b12ef46cc03754085ac2f4d8c739ad61c4ae266cc3b3fa" +"checksum syn 0.13.11 (registry+https://github.com/rust-lang/crates.io-index)" = "14f9bf6292f3a61d2c716723fdb789a41bbe104168e6f496dc6497e531ea1b9b" +"checksum syn 0.14.5 (registry+https://github.com/rust-lang/crates.io-index)" = "4bad7abdf6633f07c7046b90484f1d9dc055eca39f8c991177b1046ce61dba9a" +"checksum synstructure 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "85bb9b7550d063ea184027c9b8c20ac167cd36d3e06b3a40bceb9d746dc1a7b7" +"checksum tantivy 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0de113df42e47c2ef414839c164cc2c2a220b47005c5336c6847ae03d1bc1ed2" +"checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" +"checksum tempfile 3.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c4b103c6d08d323b92ff42c8ce62abcd83ca8efa7fd5bf7927efefec75f58c76" +"checksum termcolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "722426c4a0539da2c4ffd9b419d90ad540b4cff4a053be9069c908d4d07e2836" +"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" +"checksum thread_local 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "279ef31c19ededf577bfd12dfae728040a21f635b06a24cd670ff510edd38963" +"checksum ucd-util 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fd2be2d6639d0f8fe6cdda291ad456e23629558d466e2789d2c3e9892bda285d" +"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" +"checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" +"checksum utf8-ranges 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "a1ca13c08c41c9c3e04224ed9ff80461d97e121589ff27c753a16cb10830ae0f" +"checksum utf8-ranges 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "662fab6525a98beff2921d7f61a39e7d59e0b425ebc7d0d9e66d316e55124122" +"checksum uuid 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dab5c5526c5caa3d106653401a267fed923e7046f35895ffcb5ca42db64942e6" +"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" +"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" +"checksum winapi 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "773ef9dcc5f24b7d850d0ff101e542ff24c3b090a9768e03ff889fdef41f00fd" +"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" +"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +"checksum wincolor 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "b9dc3aa9dcda98b5a16150c54619c1ead22e3d3a5d458778ae914be760aa981a" diff --git a/engines/tantivy-0.7/Cargo.toml b/engines/tantivy-0.7/Cargo.toml new file mode 100644 index 00000000000..fa65f1c2fc9 --- /dev/null +++ b/engines/tantivy-0.7/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "tantivy-bench" +version = "0.1.0" +authors = ["Jason Wolfe"] + +[dependencies] +serde = "1.0" +serde_derive = "1.0" +serde_json = "1.0" +tantivy = "0.7" +env_logger = "0.5" +futures = "*" + +[profile.release] +lto = true +opt-level = 3 +debug = false +overflow-checks = false +# debug-assertions = false diff --git a/engines/tantivy-0.7/Makefile b/engines/tantivy-0.7/Makefile new file mode 100644 index 00000000000..5cfc01b079b --- /dev/null +++ b/engines/tantivy-0.7/Makefile @@ -0,0 +1,20 @@ +clean: + @echo "--- Cleaning tantivy 0.7 ---" + @rm -fr idx + @rm -fr target + +compile: target/release/build_index target/release/do_query + +index: idx + +serve: target/release/do_query + @target/release/do_query idx + +target/release/%: + @echo "--- Building tantivy 0.7 ---" + @cargo build --release --bin $(notdir $@) + +idx: target/release/build_index + @echo "--- Indexing tantivy 0.7 ---" + @mkdir -p idx + export RUST_LOG=info && target/release/build_index "$@" < ${CORPUS} diff --git a/engines/tantivy-0.7/src/bin/build_index.rs b/engines/tantivy-0.7/src/bin/build_index.rs new file mode 100644 index 00000000000..0d64a000198 --- /dev/null +++ b/engines/tantivy-0.7/src/bin/build_index.rs @@ -0,0 +1,57 @@ +extern crate tantivy; +extern crate core; +extern crate env_logger; +extern crate futures; + +use futures::future::Future; +use tantivy::schema::{SchemaBuilder, Schema, TEXT, STORED}; +use tantivy::Index; +use std::env; +use std::io::BufRead; +use std::path::Path; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap(); +} + +fn create_schema() -> Schema { + let mut schema_builder = SchemaBuilder::default(); + schema_builder.add_text_field("id", STORED); + schema_builder.add_text_field("text", TEXT); + schema_builder.build() +} + + +fn main_inner(output_dir: &Path) -> tantivy::Result<()> { + env_logger::init(); + + let schema = create_schema(); + let index = Index::create_in_dir(output_dir, schema.clone()).expect("failed to create index"); + + { + let mut index_writer = index.writer(1_500_000_000).expect("failed to create index writer"); + let stdin = std::io::stdin(); + + for line in stdin.lock().lines() { + let line = line?; + if line.trim().is_empty() { + continue; + } + let doc = schema.parse_document(&line)?; + index_writer.add_document(doc); + } + + index_writer.commit()?; + index.load_searchers()?; + index_writer.wait_merging_threads()?; + } + { + let segment_ids = index.searchable_segment_ids()?; + let mut index_writer = index.writer(1_500_000_000).expect("failed to create index writer"); + index_writer.merge(&segment_ids)?.wait().unwrap(); + index.load_searchers()?; + index_writer.garbage_collect_files()?; + } + Ok(()) +} diff --git a/engines/tantivy-0.7/src/bin/do_query.rs b/engines/tantivy-0.7/src/bin/do_query.rs new file mode 100644 index 00000000000..1938842085f --- /dev/null +++ b/engines/tantivy-0.7/src/bin/do_query.rs @@ -0,0 +1,63 @@ +#![macro_use] +extern crate tantivy; + +use tantivy::Index; +use tantivy::query::QueryParser; +use tantivy::tokenizer::TokenizerManager; +use tantivy::collector::{chain, TopCollector, CountCollector}; + +use std::env; +use std::io::BufRead; +use std::path::Path; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap() +} + +fn main_inner(index_dir: &Path) -> tantivy::Result<()> { + let index = Index::open_in_dir(index_dir).expect("failed to open index"); + let text_field = index.schema().get_field("text").expect("no all field?!"); + let query_parser = QueryParser::new( + index.schema(), + vec![text_field], + TokenizerManager::default()); + + let searcher = index.searcher(); + + let stdin = std::io::stdin(); + for line_res in stdin.lock().lines() { + let line = line_res?; + let fields: Vec<&str> = line.split("\t").collect(); + assert_eq!(fields.len(), 2, "Expected a line in the format query."); + let command = fields[0]; + let query = query_parser.parse_query(fields[1])?; + let count; + match command { + "COUNT" => { + count = query.count(&*searcher)?; + } + "TOP_10" => { + let mut top_k = TopCollector::with_limit(10); + query.search(&*searcher, &mut top_k)?; + count = 1; + } + "TOP_10_COUNT" => { + let mut top_k = TopCollector::with_limit(10); + let mut count_collector = CountCollector::default(); + { + let mut multi_collector = chain().push(&mut top_k).push(&mut count_collector); + query.search(&*searcher, &mut multi_collector)?; + } + count = count_collector.count(); + } + _ => { + println!("UNSUPPORTED"); + continue; + } + } + println!("{}", count); + } + + Ok(()) +} diff --git a/engines/tantivy-0.8/.cargo/config b/engines/tantivy-0.8/.cargo/config new file mode 100644 index 00000000000..958d7fcaf3d --- /dev/null +++ b/engines/tantivy-0.8/.cargo/config @@ -0,0 +1,3 @@ +[build] +rustflags = ["-C", "target-cpu=native"] + diff --git a/engines/tantivy-0.8/Cargo.lock b/engines/tantivy-0.8/Cargo.lock new file mode 100644 index 00000000000..e9b5b45ff6b --- /dev/null +++ b/engines/tantivy-0.8/Cargo.lock @@ -0,0 +1,1146 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "aho-corasick" +version = "0.6.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "arrayvec" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ascii" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "atomicwrites" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "atty" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "autocfg" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "backtrace" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "backtrace-sys" +version = "0.1.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "base64" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bit-set" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bit-vec" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitflags" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitpacking" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "byteorder" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cc" +version = "1.0.31" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "census" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cfg-if" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cloudabi" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "combine" +version = "3.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ascii 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "crossbeam" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-channel" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-deque" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-utils" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crunchy" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "downcast" +version = "0.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "either" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "env_logger" +version = "0.5.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fail" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure_derive" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fnv" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "fst" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fst-regex" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fst 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fuchsia-cprng" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures" +version = "0.1.25" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures-cpupool" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "htmlescape" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "humantime" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "itertools" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "itoa" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lazy_static" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lazy_static" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "levenshtein_automata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fst 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libc" +version = "0.2.50" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lock_api" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "log" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "log" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "matches" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "memchr" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "memmap" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "memoffset" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "murmurhash32" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "nix" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "nodrop" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "num_cpus" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "owned-read" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rental 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "owning_ref" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot_core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "proc-macro2" +version = "0.4.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "quick-error" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "quote" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.3.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_chacha" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_core" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rand_hc" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_isaac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_jitter" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_os" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_pcg" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_xorshift" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rdrand" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "redox_syscall" +version = "0.1.51" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "redox_termios" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex-syntax" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "regex-syntax" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "remove_dir_all" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rental" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rental-impl 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rental-impl" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rust-stemmers" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rustc_version" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ryu" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "scoped-pool" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "variance 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "scopeguard" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "scopeguard" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "semver" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "semver-parser" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde" +version = "1.0.89" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde_derive" +version = "1.0.89" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "serde_json" +version = "1.0.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "smallvec" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "snap" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "stable_deref_trait" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "syn" +version = "0.15.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "synstructure" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "atomicwrites 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bit-set 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitpacking 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "census 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "combine 3.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "downcast 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)", + "fail 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fst 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fst-regex 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "htmlescape 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "murmurhash32 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "owned-read 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rust-stemmers 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "scoped-pool 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", + "snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy-bench" +version = "0.1.0" +dependencies = [ + "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", + "tantivy 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tempdir" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tempfile" +version = "3.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "termcolor" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "termion" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "thread_local" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ucd-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unicode-xid" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unreachable" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "utf8-ranges" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "uuid" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "variance" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "void" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi-util" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "wincolor" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[metadata] +"checksum aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5" +"checksum arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71" +"checksum ascii 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a5fc969a8ce2c9c0c4b0429bb8431544f6658283c8326ba5ff8c762b75369335" +"checksum atomicwrites 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a3420b33cdefd3feb223dddc23739fc05cc034eb0f2be792c763e3d89e1eb6e3" +"checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" +"checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799" +"checksum backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "cd5a90e2b463010cd0e0ce9a11d4a9d5d58d9f41d4a6ba3dcaf9e68b466e88b4" +"checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6" +"checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" +"checksum bit-set 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6f1efcc46c18245a69c38fcc5cc650f16d3a59d034f3106e9ed63748f695730a" +"checksum bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4440d5cb623bb7390ae27fec0bb6c61111969860f8e3ae198bfa0663645e67cf" +"checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" +"checksum bitpacking 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "75c04b83d2b444a22c6a30f4d068597efbe468fe56f068e042e627ded2fb21e7" +"checksum byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb" +"checksum cc 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)" = "c9ce8bb087aacff865633f0bd5aeaed910fe2fe55b55f4739527f2e023a2e53d" +"checksum census 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e5c044df9888597e4e96610c916ce9d58c653b67c01b5eac5b7abd7405f4fee4" +"checksum cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4" +"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" +"checksum combine 3.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680" +"checksum crossbeam 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "bd66663db5a988098a89599d4857919b3acf7f61402e61365acfd3919857b9be" +"checksum crossbeam 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d1c92ff2d7a202d592f5a412d75cf421495c913817781c1cb383bf12a77e185f" +"checksum crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f0ed1a4de2235cabda8558ff5840bffb97fcb64c97827f354a451307df5f72b" +"checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13" +"checksum crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2449aaa4ec7ef96e5fb24db16024b935df718e9ae1cec0a1e68feeca2efca7b8" +"checksum crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "04c9e3102cc2d69cd681412141b390abd55a362afc1540965dad0ad4d34280b4" +"checksum crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f8306fcef4a7b563b76b7dd949ca48f52bc1141aa067d2ea09565f3e2652aa5c" +"checksum crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda" +"checksum downcast 0.9.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6c6fe31318b6ef21166c8e839e680238eb16f875849d597544eead7ec882eed3" +"checksum either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c67353c641dc847124ea1902d69bd753dee9bb3beff9aa3662ecf86c971d1fac" +"checksum env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)" = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38" +"checksum fail 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4eca5f0f9a67b3e504f3a0ab0bc22efb19b241c0313be5b897ee7e8d85a1805a" +"checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" +"checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" +"checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" +"checksum fst 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "db72126ca7dff566cdbbdd54af44668c544897d9d3862b198141f176f1238bdf" +"checksum fst-regex 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "87aca1d91eed3c128132cee31d291fd4e8492df0b742a5b1453857a4c7cedd88" +"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" +"checksum futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)" = "49e7653e374fe0d0c12de4250f0bdb60680b8c80eed558c5c7538eec9c89e21b" +"checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" +"checksum htmlescape 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" +"checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114" +"checksum itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358" +"checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" +"checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" +"checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14" +"checksum levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73a004f877f468548d8d0ac4977456a249d8fabbdb8416c36db163dfc8f2e8ca" +"checksum libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "aab692d7759f5cd8c859e169db98ae5b52c924add2af5fbbca11d12fefb567c1" +"checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" +"checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" +"checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" +"checksum matches 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "7ffc5c5338469d4d3ea17d269fa8ea3512ad247247c30bd2df69e68309ed0a08" +"checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39" +"checksum memmap 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2ffa2c986de11a9df78620c01eeaaf27d94d3ff02bf81bfcca953102dd0c6ff" +"checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" +"checksum murmurhash32 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d736ff882f0e85fe9689fb23db229616c4c00aee2b3ac282f666d8f20eb25d4a" +"checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" +"checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" +"checksum num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba" +"checksum owned-read 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05d57fab18d627fc4dffbd78d4a25a5b5b5211fda724231f001bee4cef1b2d3b" +"checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" +"checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" +"checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" +"checksum proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915" +"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" +"checksum quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "cdd8e04bd9c52e0342b406469d494fcb033be4bdbe5c606016defbb1681411e1" +"checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" +"checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" +"checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" +"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" +"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" +"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" +"checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0" +"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" +"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" +"checksum rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832" +"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" +"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" +"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" +"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" +"checksum redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)" = "423e376fffca3dfa06c9e9790a9ccd282fafb3cc6e6397d01dbf64f9bacc6b85" +"checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" +"checksum regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "53ee8cfdddb2e0291adfb9f13d31d3bbe0a03c9a402c01b1e24188d86c35b24f" +"checksum regex-syntax 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "f9ec002c35e86791825ed294b50008eea9ddfc8def4420124fbc6b08db834957" +"checksum regex-syntax 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8c2f35eedad5295fdf00a63d7d4b238135723f92b434ec06774dad15c7ab0861" +"checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" +"checksum rental 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d57522f275b02e67391947c98f99d55f297fefcb6699bb000340696e63620194" +"checksum rental-impl 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a269533a9b93bbaa4848260e51b64564cc445d46185979f31974ec703374803a" +"checksum rust-stemmers 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05928c187b85b38f6b98db43057a24f0245163635a5ce6325a4f77a833d646aa" +"checksum rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "adacaae16d02b6ec37fdc7acfcddf365978de76d1983d3ee22afc260e1ca9619" +"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" +"checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7" +"checksum scoped-pool 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "817a3a15e704545ce59ed2b5c60a5d32bda4d7869befb8b36667b658a6c00b43" +"checksum scopeguard 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "59a076157c1e2dc561d8de585151ee6965d910dd4dcb5dabb7ae3e83981a6c57" +"checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" +"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" +"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" +"checksum serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "92514fb95f900c9b5126e32d020f5c6d40564c27a5ea6d1d7d9f157a96623560" +"checksum serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6eabf4b5914e88e24eea240bb7c9f9a2cbc1bbbe8d961d381975ec3c6b806c" +"checksum serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)" = "5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d" +"checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be" +"checksum snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "95d697d63d44ad8b78b8d235bf85b34022a78af292c8918527c5f0cffdde7f43" +"checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" +"checksum syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1825685f977249735d510a242a6727b46efe914bb67e38d30c071b1b72b1d5c2" +"checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" +"checksum tantivy 0.8.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a08552afc58ea5a6395a087ce21c112b7de2b843d36f6fbd8df5c6f9ff63c8b5" +"checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" +"checksum tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b86c784c88d98c801132806dadd3819ed29d8600836c4088e855cdf3e178ed8a" +"checksum termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4096add70612622289f2fdcdbd5086dc81c1e2675e6ae58d6c4f62a16c6d7f2f" +"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" +"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" +"checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" +"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" +"checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" +"checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737" +"checksum uuid 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0238db0c5b605dd1cf51de0f21766f97fba2645897024461d6a00c036819a768" +"checksum variance 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3abfc2be1fb59663871379ea884fd81de80c496f2274e021c01d6fe56cd77b05" +"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" +"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" +"checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0" +"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" +"checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" +"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +"checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba" diff --git a/engines/tantivy-0.8/Cargo.toml b/engines/tantivy-0.8/Cargo.toml new file mode 100644 index 00000000000..758e410e94e --- /dev/null +++ b/engines/tantivy-0.8/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "tantivy-bench" +version = "0.1.0" +authors = ["Jason Wolfe"] + +[dependencies] +serde = "1.0" +serde_derive = "1.0" +serde_json = "1.0" +tantivy = "0.8" +env_logger = "0.5" +futures = "*" + +[profile.release] +lto = true +opt-level = 3 +debug = true +overflow-checks = false +# debug-assertions = false diff --git a/engines/tantivy-0.8/Makefile b/engines/tantivy-0.8/Makefile new file mode 100644 index 00000000000..f0d69a78e56 --- /dev/null +++ b/engines/tantivy-0.8/Makefile @@ -0,0 +1,20 @@ +clean: + @echo "--- Cleaning tantivy 0.8 ---" + @rm -fr idx + @rm -fr target + +compile: target/release/build_index target/release/do_query + +index: idx + +serve: target/release/do_query + @target/release/do_query idx + +target/release/%: + @echo "--- Building tantivy 0.8 ---" + @cargo build --release --bin $(notdir $@) + +idx: target/release/build_index + @echo "--- Indexing tantivy 0.8 ---" + @mkdir -p idx + export RUST_LOG=info && target/release/build_index "$@" < ${CORPUS} diff --git a/engines/tantivy-0.8/src/bin/build_index.rs b/engines/tantivy-0.8/src/bin/build_index.rs new file mode 100644 index 00000000000..22b37c5139a --- /dev/null +++ b/engines/tantivy-0.8/src/bin/build_index.rs @@ -0,0 +1,56 @@ +extern crate tantivy; +extern crate core; +extern crate env_logger; +extern crate futures; + +use futures::future::Future; +use tantivy::schema::{Schema, TEXT, STORED}; +use tantivy::Index; +use std::env; +use std::io::BufRead; +use std::path::Path; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap(); +} + +fn create_schema() -> Schema { + let mut schema_builder = Schema::builder(); + schema_builder.add_text_field("id", STORED); + schema_builder.add_text_field("text", TEXT); + schema_builder.build() +} + +fn main_inner(output_dir: &Path) -> tantivy::Result<()> { + env_logger::init(); + + let schema = create_schema(); + let index = Index::create_in_dir(output_dir, schema.clone()).expect("failed to create index"); + + { + let mut index_writer = index.writer(1_500_000_000).expect("failed to create index writer"); + let stdin = std::io::stdin(); + + for line in stdin.lock().lines() { + let line = line?; + if line.trim().is_empty() { + continue; + } + let doc = schema.parse_document(&line)?; + index_writer.add_document(doc); + } + + index_writer.commit()?; + index.load_searchers()?; + index_writer.wait_merging_threads()?; + } + { + let segment_ids = index.searchable_segment_ids()?; + let mut index_writer = index.writer(1_500_000_000).expect("failed to create index writer"); + index_writer.merge(&segment_ids)?.wait().unwrap(); + index.load_searchers()?; + index_writer.garbage_collect_files()?; + } + Ok(()) +} diff --git a/engines/tantivy-0.8/src/bin/do_query.rs b/engines/tantivy-0.8/src/bin/do_query.rs new file mode 100644 index 00000000000..09349c274eb --- /dev/null +++ b/engines/tantivy-0.8/src/bin/do_query.rs @@ -0,0 +1,57 @@ +#![macro_use] +extern crate tantivy; + +use tantivy::Index; +use tantivy::query::QueryParser; +use tantivy::tokenizer::TokenizerManager; +use tantivy::collector::{Count, TopDocs}; + +use std::env; +use std::io::BufRead; +use std::path::Path; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap() +} + +fn main_inner(index_dir: &Path) -> tantivy::Result<()> { + let index = Index::open_in_dir(index_dir).expect("failed to open index"); + let text_field = index.schema().get_field("text").expect("no all field?!"); + let query_parser = QueryParser::new( + index.schema(), + vec![text_field], + TokenizerManager::default()); + + let searcher = index.searcher(); + + let stdin = std::io::stdin(); + for line_res in stdin.lock().lines() { + let line = line_res?; + let fields: Vec<&str> = line.split("\t").collect(); + assert_eq!(fields.len(), 2, "Expected a line in the format query."); + let command = fields[0]; + let query = query_parser.parse_query(fields[1])?; + let count; + match command { + "COUNT" => { + count = query.count(&searcher)?; + } + "TOP_10" => { + let _top_k = searcher.search(&query, &TopDocs::with_limit(10))?; + count = 1; + } + "TOP_10_COUNT" => { + let (_top_k, count_) = searcher.search(&query, &(TopDocs::with_limit(10), Count))?; + count = count_; + } + _ => { + println!("UNSUPPORTED"); + continue; + } + } + println!("{}", count); + } + + Ok(()) +} diff --git a/engines/tantivy-0.9/Cargo.lock b/engines/tantivy-0.9/Cargo.lock new file mode 100644 index 00000000000..8769b14b279 --- /dev/null +++ b/engines/tantivy-0.9/Cargo.lock @@ -0,0 +1,1403 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "aho-corasick" +version = "0.6.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "arrayvec" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ascii" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "atomicwrites" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "atty" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "autocfg" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "backtrace" +version = "0.3.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "backtrace-sys" +version = "0.1.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cc 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "base64" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bit-set" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "bit-vec" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitflags" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitflags" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "bitpacking" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "byteorder" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cc" +version = "1.0.31" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "census" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "cfg-if" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "chrono" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)", + "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", + "time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "cloudabi" +version = "0.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "combine" +version = "3.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ascii 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam" +version = "0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "crossbeam" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-channel" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-deque" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-epoch" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crossbeam-utils" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "crunchy" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "downcast-rs" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "either" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "env_logger" +version = "0.5.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fail" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)", + "failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "failure_derive" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "filetime" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fnv" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "fs2" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fsevent" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "fsevent-sys 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fsevent-sys" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fst" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fuchsia-cprng" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "fuchsia-zircon" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "fuchsia-zircon-sys" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures" +version = "0.1.25" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "futures-cpupool" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "htmlescape" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "humantime" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "inotify" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "inotify-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "inotify-sys" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "iovec" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "itertools" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "itoa" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "kernel32-sys" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "lazy_static" +version = "0.2.11" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lazy_static" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lazycell" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "levenshtein_automata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fst 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libc" +version = "0.2.50" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "lock_api" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "log" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "log" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "memchr" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "memmap" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "memoffset" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "mio" +version = "0.6.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "mio-extras" +version = "2.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "miow" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "murmurhash32" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "net2" +version = "0.2.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "nix" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "cc 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)", + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "nodrop" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "notify" +version = "4.0.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)", + "fsevent 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)", + "fsevent-sys 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)", + "inotify 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)", + "kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)", + "mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)", + "walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-integer" +version = "0.1.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "num-traits" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "num_cpus" +version = "1.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "owned-read" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rental 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "owning_ref" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "parking_lot_core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)", + "rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)", + "smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "proc-macro2" +version = "0.4.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "quick-error" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "quote" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.3.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_chacha" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_core" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_core" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rand_hc" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_isaac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_jitter" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_os" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_pcg" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rand_xorshift" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rdrand" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "redox_syscall" +version = "0.1.51" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "redox_termios" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)", + "memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "regex-syntax" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "regex-syntax" +version = "0.6.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "remove_dir_all" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rental" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rental-impl 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rental-impl" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rust-stemmers" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "rustc-demangle" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "rustc_version" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ryu" +version = "0.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "same-file" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "scoped-pool" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "crossbeam 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)", + "scopeguard 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "variance 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "scopeguard" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "scopeguard" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "semver" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "semver-parser" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde" +version = "1.0.89" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "serde_derive" +version = "1.0.89" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "serde_json" +version = "1.0.39" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "slab" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "smallvec" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "snap" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "stable_deref_trait" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "syn" +version = "0.15.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "synstructure" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)", + "unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "atomicwrites 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)", + "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", + "bit-set 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "bitpacking 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)", + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "census 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "combine 3.8.1 (registry+https://github.com/rust-lang/crates.io-index)", + "crossbeam 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", + "downcast-rs 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)", + "fail 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", + "failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)", + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)", + "htmlescape 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", + "levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)", + "murmurhash32 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)", + "notify 4.0.10 (registry+https://github.com/rust-lang/crates.io-index)", + "num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)", + "owned-read 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)", + "rust-stemmers 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "scoped-pool 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", + "snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)", + "stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "tantivy-fst 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", + "tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)", + "tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)", + "uuid 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy-bench" +version = "0.1.0" +dependencies = [ + "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", + "futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", + "serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)", + "tantivy 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tantivy-fst" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)", + "levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", + "regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)", + "utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tempdir" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "tempfile" +version = "3.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)", + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "termcolor" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "termion" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "thread_local" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "time" +version = "0.1.42" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)", + "redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ucd-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unicode-xid" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "unreachable" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "utf8-ranges" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "uuid" +version = "0.7.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)", + "serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "variance" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "void" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "walkdir" +version = "2.2.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi" +version = "0.2.8" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi-build" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "winapi-util" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "wincolor" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "ws2_32-sys" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)", + "winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[metadata] +"checksum aho-corasick 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "81ce3d38065e618af2d7b77e10c5ad9a069859b4be3c2250f674af3840d9c8a5" +"checksum arrayvec 0.4.10 (registry+https://github.com/rust-lang/crates.io-index)" = "92c7fb76bc8826a8b33b4ee5bb07a247a81e76764ab4d55e8f73e3a4d8808c71" +"checksum ascii 0.9.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a5fc969a8ce2c9c0c4b0429bb8431544f6658283c8326ba5ff8c762b75369335" +"checksum atomicwrites 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a3420b33cdefd3feb223dddc23739fc05cc034eb0f2be792c763e3d89e1eb6e3" +"checksum atty 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "9a7d5b8723950951411ee34d271d99dddcc2035a16ab25310ea2c8cfd4369652" +"checksum autocfg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a6d640bee2da49f60a4068a7fae53acde8982514ab7bae8b8cea9e88cbcfd799" +"checksum backtrace 0.3.14 (registry+https://github.com/rust-lang/crates.io-index)" = "cd5a90e2b463010cd0e0ce9a11d4a9d5d58d9f41d4a6ba3dcaf9e68b466e88b4" +"checksum backtrace-sys 0.1.28 (registry+https://github.com/rust-lang/crates.io-index)" = "797c830ac25ccc92a7f8a7b9862bde440715531514594a6154e3d4a54dd769b6" +"checksum base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0b25d992356d2eb0ed82172f5248873db5560c4721f564b13cb5193bda5e668e" +"checksum bit-set 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6f1efcc46c18245a69c38fcc5cc650f16d3a59d034f3106e9ed63748f695730a" +"checksum bit-vec 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4440d5cb623bb7390ae27fec0bb6c61111969860f8e3ae198bfa0663645e67cf" +"checksum bitflags 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d" +"checksum bitflags 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "228047a76f468627ca71776ecdebd732a3423081fcf5125585bcd7c49886ce12" +"checksum bitpacking 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)" = "667f3f518358b2cf64891b46a6dd2eb794e9f80d39f7eb5974f4784bcda9a61b" +"checksum byteorder 1.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a019b10a2a7cdeb292db131fc8113e57ea2a908f6e7894b0c3c671893b65dbeb" +"checksum cc 1.0.31 (registry+https://github.com/rust-lang/crates.io-index)" = "c9ce8bb087aacff865633f0bd5aeaed910fe2fe55b55f4739527f2e023a2e53d" +"checksum census 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "641317709904ba3c1ad137cb5d88ec9d8c03c07de087b2cff5e84ec565c7e299" +"checksum cfg-if 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "11d43355396e872eefb45ce6342e4374ed7bc2b3a502d1b28e36d6e23c05d1f4" +"checksum chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878" +"checksum cloudabi 0.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "ddfc5b9aa5d4507acaf872de71051dfd0e309860e88966e1051e462a077aac4f" +"checksum combine 3.8.1 (registry+https://github.com/rust-lang/crates.io-index)" = "da3da6baa321ec19e1cc41d31bf599f00c783d0517095cdaf0332e3fe8d20680" +"checksum crossbeam 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)" = "bd66663db5a988098a89599d4857919b3acf7f61402e61365acfd3919857b9be" +"checksum crossbeam 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d1c92ff2d7a202d592f5a412d75cf421495c913817781c1cb383bf12a77e185f" +"checksum crossbeam-channel 0.3.8 (registry+https://github.com/rust-lang/crates.io-index)" = "0f0ed1a4de2235cabda8558ff5840bffb97fcb64c97827f354a451307df5f72b" +"checksum crossbeam-deque 0.6.3 (registry+https://github.com/rust-lang/crates.io-index)" = "05e44b8cf3e1a625844d1750e1f7820da46044ff6d28f4d43e455ba3e5bb2c13" +"checksum crossbeam-epoch 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2449aaa4ec7ef96e5fb24db16024b935df718e9ae1cec0a1e68feeca2efca7b8" +"checksum crossbeam-epoch 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "04c9e3102cc2d69cd681412141b390abd55a362afc1540965dad0ad4d34280b4" +"checksum crossbeam-utils 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "f8306fcef4a7b563b76b7dd949ca48f52bc1141aa067d2ea09565f3e2652aa5c" +"checksum crunchy 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda" +"checksum downcast-rs 1.0.3 (registry+https://github.com/rust-lang/crates.io-index)" = "18df8ce4470c189d18aa926022da57544f31e154631eb4cfe796aea97051fe6c" +"checksum either 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "c67353c641dc847124ea1902d69bd753dee9bb3beff9aa3662ecf86c971d1fac" +"checksum env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)" = "15b0a4d2e39f8420210be8b27eeda28029729e2fd4291019455016c348240c38" +"checksum fail 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "4eca5f0f9a67b3e504f3a0ab0bc22efb19b241c0313be5b897ee7e8d85a1805a" +"checksum failure 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "795bd83d3abeb9220f257e597aa0080a508b27533824adf336529648f6abf7e2" +"checksum failure_derive 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "ea1063915fd7ef4309e222a5a07cf9c319fb9c7836b1f89b85458672dbb127e1" +"checksum filetime 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)" = "a2df5c1a8c4be27e7707789dc42ae65976e60b394afd293d1419ab915833e646" +"checksum fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "2fad85553e09a6f881f739c29f0b00b0f01357c743266d478b68951ce23285f3" +"checksum fs2 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213" +"checksum fsevent 0.2.17 (registry+https://github.com/rust-lang/crates.io-index)" = "c4bbbf71584aeed076100b5665ac14e3d85eeb31fdbb45fbd41ef9a682b5ec05" +"checksum fsevent-sys 0.1.6 (registry+https://github.com/rust-lang/crates.io-index)" = "1a772d36c338d07a032d5375a36f15f9a7043bf0cb8ce7cee658e037c6032874" +"checksum fst 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "db72126ca7dff566cdbbdd54af44668c544897d9d3862b198141f176f1238bdf" +"checksum fuchsia-cprng 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "a06f77d526c1a601b7c4cdd98f54b5eaabffc14d5f2f0296febdc7f357c6d3ba" +"checksum fuchsia-zircon 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "2e9763c69ebaae630ba35f74888db465e49e259ba1bc0eda7d06f4a067615d82" +"checksum fuchsia-zircon-sys 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3dcaa9ae7725d12cdb85b3ad99a434db70b468c09ded17e012d86b5c1010f7a7" +"checksum futures 0.1.25 (registry+https://github.com/rust-lang/crates.io-index)" = "49e7653e374fe0d0c12de4250f0bdb60680b8c80eed558c5c7538eec9c89e21b" +"checksum futures-cpupool 0.1.8 (registry+https://github.com/rust-lang/crates.io-index)" = "ab90cde24b3319636588d0c35fe03b1333857621051837ed769faefb4c2162e4" +"checksum htmlescape 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163" +"checksum humantime 1.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "3ca7e5f2e110db35f93b837c81797f3714500b81d517bf20c431b16d3ca4f114" +"checksum inotify 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "40b54539f3910d6f84fbf9a643efd6e3aa6e4f001426c0329576128255994718" +"checksum inotify-sys 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "e74a1aa87c59aeff6ef2cc2fa62d41bc43f54952f55652656b18a02fd5e356c0" +"checksum iovec 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "dbe6e417e7d0975db6512b90796e8ce223145ac4e33c377e4a42882a0e88bb08" +"checksum itertools 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)" = "5b8467d9c1cebe26feb08c640139247fac215782d35371ade9a2136ed6085358" +"checksum itoa 0.4.3 (registry+https://github.com/rust-lang/crates.io-index)" = "1306f3464951f30e30d12373d31c79fbd52d236e5e896fd92f96ec7babbbe60b" +"checksum kernel32-sys 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7507624b29483431c0ba2d82aece8ca6cdba9382bff4ddd0f7490560c056098d" +"checksum lazy_static 0.2.11 (registry+https://github.com/rust-lang/crates.io-index)" = "76f033c7ad61445c5b347c7382dd1237847eb1bce590fe50365dcb33d546be73" +"checksum lazy_static 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "bc5729f27f159ddd61f4df6228e827e86643d4d3e7c32183cb30a1c08f604a14" +"checksum lazycell 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "b294d6fa9ee409a054354afc4352b0b9ef7ca222c69b8812cbea9e7d2bf3783f" +"checksum levenshtein_automata 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73a004f877f468548d8d0ac4977456a249d8fabbdb8416c36db163dfc8f2e8ca" +"checksum libc 0.2.50 (registry+https://github.com/rust-lang/crates.io-index)" = "aab692d7759f5cd8c859e169db98ae5b52c924add2af5fbbca11d12fefb567c1" +"checksum lock_api 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "62ebf1391f6acad60e5c8b43706dde4582df75c06698ab44511d15016bc2442c" +"checksum log 0.3.9 (registry+https://github.com/rust-lang/crates.io-index)" = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b" +"checksum log 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c84ec4b527950aa83a329754b01dbe3f58361d1c5efacd1f6d68c494d08a17c6" +"checksum memchr 2.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "2efc7bc57c883d4a4d6e3246905283d8dae951bb3bd32f49d6ef297f546e1c39" +"checksum memmap 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6585fd95e7bb50d6cc31e20d4cf9afb4e2ba16c5846fc76793f11218da9c475b" +"checksum memoffset 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "0f9dc261e2b62d7a622bf416ea3c5245cdd5d9a7fcc428c0d06804dfce1775b3" +"checksum mio 0.6.16 (registry+https://github.com/rust-lang/crates.io-index)" = "71646331f2619b1026cc302f87a2b8b648d5c6dd6937846a16cc8ce0f347f432" +"checksum mio-extras 2.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "46e73a04c2fa6250b8d802134d56d554a9ec2922bf977777c805ea5def61ce40" +"checksum miow 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "8c1f2f3b1cf331de6896aabf6e9d55dca90356cc9960cca7eaaf408a355ae919" +"checksum murmurhash32 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d736ff882f0e85fe9689fb23db229616c4c00aee2b3ac282f666d8f20eb25d4a" +"checksum net2 0.2.33 (registry+https://github.com/rust-lang/crates.io-index)" = "42550d9fb7b6684a6d404d9fa7250c2eb2646df731d1c06afc06dcee9e1bcf88" +"checksum nix 0.11.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d37e713a259ff641624b6cb20e3b12b2952313ba36b6823c0f16e6cfd9e5de17" +"checksum nodrop 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "2f9667ddcc6cc8a43afc9b7917599d7216aa09c463919ea32c59ed6cac8bc945" +"checksum notify 4.0.10 (registry+https://github.com/rust-lang/crates.io-index)" = "abb1581693e44d8a0ec347ef12289625063f52a1dddc3f3c9befd5fc59e88943" +"checksum num-integer 0.1.39 (registry+https://github.com/rust-lang/crates.io-index)" = "e83d528d2677f0518c570baf2b7abdcf0cd2d248860b68507bdcb3e91d4c0cea" +"checksum num-traits 0.2.6 (registry+https://github.com/rust-lang/crates.io-index)" = "0b3a5d7cc97d6d30d8b9bc8fa19bf45349ffe46241e8816f50f62f6d6aaabee1" +"checksum num_cpus 1.10.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1a23f0ed30a54abaa0c7e83b1d2d87ada7c3c23078d1d87815af3e3b6385fbba" +"checksum owned-read 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05d57fab18d627fc4dffbd78d4a25a5b5b5211fda724231f001bee4cef1b2d3b" +"checksum owning_ref 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "49a4b8ea2179e6a2e27411d3bca09ca6dd630821cf6894c6c7c8467a8ee7ef13" +"checksum parking_lot 0.6.4 (registry+https://github.com/rust-lang/crates.io-index)" = "f0802bff09003b291ba756dc7e79313e51cc31667e94afbe847def490424cde5" +"checksum parking_lot_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ad7f7e6ebdc79edff6fdcb87a55b620174f7a989e3eb31b65231f4af57f00b8c" +"checksum proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915" +"checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" +"checksum quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "cdd8e04bd9c52e0342b406469d494fcb033be4bdbe5c606016defbb1681411e1" +"checksum rand 0.3.23 (registry+https://github.com/rust-lang/crates.io-index)" = "64ac302d8f83c0c1974bf758f6b041c6c8ada916fbb44a609158ca8b064cc76c" +"checksum rand 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)" = "552840b97013b1a26992c11eac34bdd778e464601a4c2054b5f0bff7c6761293" +"checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9" +"checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" +"checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" +"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" +"checksum rand_core 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "d0e7a549d590831370895ab7ba4ea0c1b6b011d106b5ff2da6eee112615e6dc0" +"checksum rand_hc 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "7b40677c7be09ae76218dc623efbf7b18e34bced3f38883af07bb75630a21bc4" +"checksum rand_isaac 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "ded997c9d5f13925be2a6fd7e66bf1872597f759fd9dd93513dd7e92e5a5ee08" +"checksum rand_jitter 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b9ea758282efe12823e0d952ddb269d2e1897227e464919a554f2a03ef1b832" +"checksum rand_os 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "7b75f676a1e053fc562eafbb47838d67c84801e38fc1ba459e8f180deabd5071" +"checksum rand_pcg 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "abf9b09b01790cfe0364f52bf32995ea3c39f4d2dd011eac241d2914146d0b44" +"checksum rand_xorshift 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cbf7e9e623549b0e21f6e97cf8ecf247c1a8fd2e8a992ae265314300b2455d5c" +"checksum rdrand 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "678054eb77286b51581ba43620cc911abf02758c91f93f479767aed0f90458b2" +"checksum redox_syscall 0.1.51 (registry+https://github.com/rust-lang/crates.io-index)" = "423e376fffca3dfa06c9e9790a9ccd282fafb3cc6e6397d01dbf64f9bacc6b85" +"checksum redox_termios 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7e891cfe48e9100a70a3b6eb652fef28920c117d366339687bd5576160db0f76" +"checksum regex 1.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "53ee8cfdddb2e0291adfb9f13d31d3bbe0a03c9a402c01b1e24188d86c35b24f" +"checksum regex-syntax 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "8e931c58b93d86f080c734bfd2bce7dd0079ae2331235818133c8be7f422e20e" +"checksum regex-syntax 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "8c2f35eedad5295fdf00a63d7d4b238135723f92b434ec06774dad15c7ab0861" +"checksum remove_dir_all 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "3488ba1b9a2084d38645c4c08276a1752dcbf2c7130d74f1569681ad5d2799c5" +"checksum rental 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "d57522f275b02e67391947c98f99d55f297fefcb6699bb000340696e63620194" +"checksum rental-impl 0.5.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a269533a9b93bbaa4848260e51b64564cc445d46185979f31974ec703374803a" +"checksum rust-stemmers 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "05928c187b85b38f6b98db43057a24f0245163635a5ce6325a4f77a833d646aa" +"checksum rustc-demangle 0.1.13 (registry+https://github.com/rust-lang/crates.io-index)" = "adacaae16d02b6ec37fdc7acfcddf365978de76d1983d3ee22afc260e1ca9619" +"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a" +"checksum ryu 0.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "eb9e9b8cde282a9fe6a42dd4681319bfb63f121b8a8ee9439c6f4107e58a46f7" +"checksum same-file 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "8f20c4be53a8a1ff4c1f1b2bd14570d2f634628709752f0702ecdd2b3f9a5267" +"checksum scoped-pool 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "817a3a15e704545ce59ed2b5c60a5d32bda4d7869befb8b36667b658a6c00b43" +"checksum scopeguard 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "59a076157c1e2dc561d8de585151ee6965d910dd4dcb5dabb7ae3e83981a6c57" +"checksum scopeguard 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)" = "94258f53601af11e6a49f722422f6e3425c52b06245a5cf9bc09908b174f5e27" +"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403" +"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3" +"checksum serde 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "92514fb95f900c9b5126e32d020f5c6d40564c27a5ea6d1d7d9f157a96623560" +"checksum serde_derive 1.0.89 (registry+https://github.com/rust-lang/crates.io-index)" = "bb6eabf4b5914e88e24eea240bb7c9f9a2cbc1bbbe8d961d381975ec3c6b806c" +"checksum serde_json 1.0.39 (registry+https://github.com/rust-lang/crates.io-index)" = "5a23aa71d4a4d43fdbfaac00eff68ba8a06a51759a89ac3304323e800c4dd40d" +"checksum slab 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "c111b5bd5695e56cffe5129854aa230b39c93a305372fdbb2668ca2394eea9f8" +"checksum smallvec 0.6.9 (registry+https://github.com/rust-lang/crates.io-index)" = "c4488ae950c49d403731982257768f48fada354a5203fe81f9bb6f43ca9002be" +"checksum snap 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "95d697d63d44ad8b78b8d235bf85b34022a78af292c8918527c5f0cffdde7f43" +"checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8" +"checksum syn 0.15.29 (registry+https://github.com/rust-lang/crates.io-index)" = "1825685f977249735d510a242a6727b46efe914bb67e38d30c071b1b72b1d5c2" +"checksum synstructure 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)" = "73687139bf99285483c96ac0add482c3776528beac1d97d444f6e91f203a2015" +"checksum tantivy 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "e22d8b907600e67828944d3d3cedd1dfc5e3a0fcc82dfb8b51cd01086c81f979" +"checksum tantivy-fst 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "16b22af5ff09b8897093287642a5aaee6f30eb496526ef83a8dd0f4c636ac367" +"checksum tempdir 0.3.7 (registry+https://github.com/rust-lang/crates.io-index)" = "15f2b5fb00ccdf689e0149d1b1b3c03fead81c2b37735d812fa8bddbbf41b6d8" +"checksum tempfile 3.0.7 (registry+https://github.com/rust-lang/crates.io-index)" = "b86c784c88d98c801132806dadd3819ed29d8600836c4088e855cdf3e178ed8a" +"checksum termcolor 1.0.4 (registry+https://github.com/rust-lang/crates.io-index)" = "4096add70612622289f2fdcdbd5086dc81c1e2675e6ae58d6c4f62a16c6d7f2f" +"checksum termion 1.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "689a3bdfaab439fd92bc87df5c4c78417d3cbe537487274e9b0b2dce76e92096" +"checksum thread_local 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b" +"checksum time 0.1.42 (registry+https://github.com/rust-lang/crates.io-index)" = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f" +"checksum ucd-util 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "535c204ee4d8434478593480b8f86ab45ec9aae0e83c568ca81abf0fd0e88f86" +"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc" +"checksum unreachable 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56" +"checksum utf8-ranges 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "796f7e48bef87609f7ade7e06495a87d5cd06c7866e6a5cbfceffc558a243737" +"checksum uuid 0.7.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0238db0c5b605dd1cf51de0f21766f97fba2645897024461d6a00c036819a768" +"checksum variance 0.1.3 (registry+https://github.com/rust-lang/crates.io-index)" = "3abfc2be1fb59663871379ea884fd81de80c496f2274e021c01d6fe56cd77b05" +"checksum void 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d" +"checksum walkdir 2.2.7 (registry+https://github.com/rust-lang/crates.io-index)" = "9d9d7ed3431229a144296213105a390676cc49c9b6a72bd19f3176c98e129fa1" +"checksum winapi 0.2.8 (registry+https://github.com/rust-lang/crates.io-index)" = "167dc9d6949a9b857f3451275e911c3f44255842c1f7a76f33c55103a909087a" +"checksum winapi 0.3.6 (registry+https://github.com/rust-lang/crates.io-index)" = "92c1eb33641e276cfa214a0522acad57be5c56b10cb348b3c5117db75f3ac4b0" +"checksum winapi-build 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "2d315eee3b34aca4797b2da6b13ed88266e6d612562a0c46390af8299fc699bc" +"checksum winapi-i686-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" +"checksum winapi-util 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "7168bab6e1daee33b4557efd0e95d5ca70a03706d39fa5f3fe7a236f584b03c9" +"checksum winapi-x86_64-pc-windows-gnu 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" +"checksum wincolor 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)" = "561ed901ae465d6185fa7864d63fbd5720d0ef718366c9a4dc83cf6170d7e9ba" +"checksum ws2_32-sys 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d59cefebd0c892fa2dd6de581e937301d8552cb44489cdff035c6187cb63fa5e" diff --git a/engines/tantivy-0.9/Cargo.toml b/engines/tantivy-0.9/Cargo.toml new file mode 100644 index 00000000000..2f3bde5f41c --- /dev/null +++ b/engines/tantivy-0.9/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "tantivy-bench" +version = "0.1.0" +authors = ["Jason Wolfe"] + +[dependencies] +serde = "1.0" +serde_derive = "1.0" +serde_json = "1.0" +tantivy = "0.9" +env_logger = "0.5" +futures = "*" + +[profile.release] +lto = true +opt-level = 3 +# debug = true +overflow-checks = false +# debug-assertions = false diff --git a/engines/tantivy-0.9/Makefile b/engines/tantivy-0.9/Makefile new file mode 100644 index 00000000000..048c3dbeecf --- /dev/null +++ b/engines/tantivy-0.9/Makefile @@ -0,0 +1,20 @@ +clean: + @echo "--- Cleaning tantivy 0.9 ---" + @rm -fr idx + @rm -fr target + +compile: target/release/build_index target/release/do_query + +index: idx + +serve: target/release/do_query + @./target/release/do_query idx + +target/release/%: + @echo "--- Building tantivy 0.9 ---" + @cargo build --release --bin $(notdir $@) + +idx: target/release/build_index + @echo "--- Indexing tantivy 0.9 ---" + @mkdir -p idx + export RUST_LOG=info && target/release/build_index "$@" < ${CORPUS} diff --git a/engines/tantivy-0.9/src/bin/build_index.rs b/engines/tantivy-0.9/src/bin/build_index.rs new file mode 100644 index 00000000000..18977f9b0e7 --- /dev/null +++ b/engines/tantivy-0.9/src/bin/build_index.rs @@ -0,0 +1,54 @@ +extern crate tantivy; +extern crate core; +extern crate env_logger; +extern crate futures; + +use futures::future::Future; +use tantivy::schema::{Schema, TEXT, STORED}; +use tantivy::Index; +use std::env; +use std::io::BufRead; +use std::path::Path; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap(); +} + +fn create_schema() -> Schema { + let mut schema_builder = Schema::builder(); + schema_builder.add_text_field("id", STORED); + schema_builder.add_text_field("text", TEXT); + schema_builder.build() +} + +fn main_inner(output_dir: &Path) -> tantivy::Result<()> { + env_logger::init(); + + let schema = create_schema(); + let index = Index::create_in_dir(output_dir, schema.clone()).expect("failed to create index"); + + { + let mut index_writer = index.writer(1_500_000_000).expect("failed to create index writer"); + let stdin = std::io::stdin(); + + for line in stdin.lock().lines() { + let line = line?; + if line.trim().is_empty() { + continue; + } + let doc = schema.parse_document(&line)?; + index_writer.add_document(doc); + } + + index_writer.commit()?; + index_writer.wait_merging_threads()?; + } + { + let segment_ids = index.searchable_segment_ids()?; + let mut index_writer = index.writer(1_500_000_000).expect("failed to create index writer"); + index_writer.merge(&segment_ids)?.wait().unwrap(); + index_writer.garbage_collect_files()?; + } + Ok(()) +} diff --git a/engines/tantivy-0.9/src/bin/do_query.rs b/engines/tantivy-0.9/src/bin/do_query.rs new file mode 100644 index 00000000000..60418f9898b --- /dev/null +++ b/engines/tantivy-0.9/src/bin/do_query.rs @@ -0,0 +1,57 @@ +#![macro_use] +extern crate tantivy; + +use tantivy::Index; +use tantivy::query::QueryParser; +use tantivy::tokenizer::TokenizerManager; +use tantivy::collector::{Count, TopDocs}; + +use std::env; +use std::io::BufRead; +use std::path::Path; + +fn main() { + let args: Vec = env::args().collect(); + main_inner(&Path::new(&args[1])).unwrap() +} + +fn main_inner(index_dir: &Path) -> tantivy::Result<()> { + let index = Index::open_in_dir(index_dir).expect("failed to open index"); + let text_field = index.schema().get_field("text").expect("no all field?!"); + let query_parser = QueryParser::new( + index.schema(), + vec![text_field], + TokenizerManager::default()); + let reader = index.reader()?; + let searcher = reader.searcher(); + + let stdin = std::io::stdin(); + for line_res in stdin.lock().lines() { + let line = line_res?; + let fields: Vec<&str> = line.split("\t").collect(); + assert_eq!(fields.len(), 2, "Expected a line in the format query."); + let command = fields[0]; + let query = query_parser.parse_query(fields[1])?; + let count; + match command { + "COUNT" => { + count = query.count(&searcher)?; + } + "TOP_10" => { + let _top_k = searcher.search(&query, &TopDocs::with_limit(10))?; + count = 1; + } + "TOP_10_COUNT" => { + let (_top_k, count_) = searcher.search(&query, &(TopDocs::with_limit(10), Count))?; + count = count_; + } + _ => { + println!("UNSUPPORTED"); + continue; + } + } + println!("{}", count); + } + + Ok(()) +} diff --git a/format_queries.py b/format_queries.py new file mode 100644 index 00000000000..862a2ea64c9 --- /dev/null +++ b/format_queries.py @@ -0,0 +1,46 @@ +import fileinput +import json +import re +import json +import random + +LETTERS_ONLY = re.compile("^[a-z ]+$") +PTN = re.compile("\s+") + +def generate_queries(words): + tags = ["num_token_%i" % len(words)] + if len(words) > 1: + intersection = " ".join( ("+" + word) for word in words) + yield { + "query": intersection, + "tags": tags + ["intersection", "global"] + } + phrase_query = "\"%s\"" % " ".join(words) + if random.random() < 0.1: # only 10% of queries + yield { + "query": phrase_query, + "tags": tags + ["phrase"] + } + else: + yield { + "query": phrase_query, + "tags": tags + } + union_query = " ".join(words) + yield { + "query": union_query, + "tags": tags + ["union", "global"] + } + +for line in fileinput.input(): + (count, query) = PTN.split(line.strip(), 1) + count = int(count) + if not LETTERS_ONLY.match(query): + continue + words = PTN.split(query) + for q in generate_queries(words): + try: + qdoc = json.dumps(q) + print(qdoc) + except: + pass diff --git a/lucene/build.sh b/lucene/build.sh deleted file mode 100755 index adf62436897..00000000000 --- a/lucene/build.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -SCRIPT_PATH=${0%/*} - -cd ${SCRIPT_PATH} - -gradle clean shadowJar diff --git a/lucene/build_index.sh b/lucene/build_index.sh deleted file mode 100755 index 187d447abbf..00000000000 --- a/lucene/build_index.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -SCRIPT_PATH=${0%/*} - -java -cp ${SCRIPT_PATH}/build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar BuildIndex "$@" \ No newline at end of file diff --git a/lucene/query.sh b/lucene/query.sh deleted file mode 100755 index 3cb81476ee6..00000000000 --- a/lucene/query.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -SCRIPT_PATH=${0%/*} - -java -cp ${SCRIPT_PATH}/build/libs/search-index-benchmark-game-lucene-1.0-SNAPSHOT-all.jar DoQuery "$@" diff --git a/lucene/src/main/java/DoQuery.java b/lucene/src/main/java/DoQuery.java deleted file mode 100644 index d2637114174..00000000000 --- a/lucene/src/main/java/DoQuery.java +++ /dev/null @@ -1,34 +0,0 @@ -import org.apache.lucene.analysis.CharArraySet; -import org.apache.lucene.analysis.standard.StandardAnalyzer; -import org.apache.lucene.index.DirectoryReader; -import org.apache.lucene.index.IndexReader; -import org.apache.lucene.queryparser.classic.ParseException; -import org.apache.lucene.queryparser.classic.QueryParser; -import org.apache.lucene.search.IndexSearcher; -import org.apache.lucene.search.Query; -import org.apache.lucene.store.FSDirectory; - -import java.io.BufferedReader; -import java.io.IOException; -import java.io.InputStreamReader; -import java.nio.file.Path; -import java.nio.file.Paths; - -public class DoQuery { - public static void main(String[] args) throws IOException, ParseException { - final Path indexDir = Paths.get(args[0]); - try (IndexReader reader = DirectoryReader.open(FSDirectory.open(indexDir))) { - final IndexSearcher searcher = new IndexSearcher(reader); - searcher.setQueryCache(null); - try (BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(System.in))) { - final QueryParser queryParser = new QueryParser("all", new StandardAnalyzer(CharArraySet.EMPTY_SET)); - String line; - while ((line = bufferedReader.readLine()) != null) { - Query query = queryParser.parse(line); - query = query.rewrite(reader); - System.out.println(searcher.count(query)); - } - } - } - } -} diff --git a/preprocess_all.sh b/preprocess_all.sh deleted file mode 100755 index f6b831a17ba..00000000000 --- a/preprocess_all.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -set -e - -BASE=${0%/*} - -INDEX_TYPES=`cat ${BASE}/INDEX_TYPES.txt` -for INDEX_TYPE in ${INDEX_TYPES} ; do - echo "Building programs for ${INDEX_TYPE}" - ${BASE}/${INDEX_TYPE}/build.sh && echo "success" -done \ No newline at end of file diff --git a/queries.txt b/queries.txt new file mode 100644 index 00000000000..63a1d906cc6 --- /dev/null +++ b/queries.txt @@ -0,0 +1,905 @@ +{"query": "the", "tags": ["term"]} +{"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "child support", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "american south", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "times union", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "round table", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "home business", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"]} +{"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"]} +{"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"]} +{"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"]} +{"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"]} +{"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"]} +{"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"]} +{"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"]} +{"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"]} +{"query": "+\"the who\" +uk", "tags": ["two-phase-critic"]} +{"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"]} +{"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"]} +{"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"]} +{"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"]} +{"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"]} +{"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"]} diff --git a/query_all.sh b/query_all.sh deleted file mode 100755 index 630b5e64555..00000000000 --- a/query_all.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash - -set -e - -BASE=${0%/*} - -PREFIX=$1 - -if [[ ! ${PREFIX} =~ ^[a-zA-Z0-9]+$ ]] ; then - echo Output prefix \(${PREFIX}\) must consist of only alpha-numeric characters - exit 1 -fi - -shift - -TOP_LEVEL_OUTPUTS=${BASE}/outputs -mkdir -p ${TOP_LEVEL_OUTPUTS} -PIPE_FILE=${TOP_LEVEL_OUTPUTS}/.pipe -mkfifo ${PIPE_FILE} || echo Pipe file already exists - -INDEX_TYPES=`cat ${BASE}/INDEX_TYPES.txt` -for INDEX_TYPE in ${INDEX_TYPES} ; do - OUTPUT=${TOP_LEVEL_OUTPUTS}/${INDEX_TYPE} - INDEX_OUTPUT=${OUTPUT}/index - echo Querying against ${INDEX_TYPE} - ${BASE}/benchmark/drive.sh $@ <${PIPE_FILE} 2>${OUTPUT}/${PREFIX}_query_output.txt | ${INDEX_TYPE}/query.sh ${INDEX_OUTPUT} >${PIPE_FILE} -done \ No newline at end of file diff --git a/regression.py b/regression.py new file mode 100644 index 00000000000..9f41bc4d982 --- /dev/null +++ b/regression.py @@ -0,0 +1,35 @@ +import json + +reference = "tantivy-0.8" + +all = json.load(open("results.json")) + +def query_count(query_bench): + c = {} + for q in query_bench: + c[q["query"]] = q["count"] + return c + + +def compare(ref_count, engine_count): + diffs = [] + assert len(ref_count) == len(engine_count) + for q in ref_count: + if ref_count[q] != engine_count[q]: + diffs.append((q, ref_count[q], engine_count[q])) + return diffs + +for (metric, engine_bench) in all.items(): + print "\n\n=======\nMetric", metric + ref_count = query_count(engine_bench[reference]) + # print ref_count + for (engine, query_bench) in engine_bench.items(): + if not "tantivy" in engine: + print "skipping", engine + continue + print engine + engine_count = query_count(query_bench) + diff = compare(ref_count, engine_count) + if diff: + print "Engine", engine + print diff diff --git a/results.json b/results.json new file mode 100644 index 00000000000..67c85b40836 --- /dev/null +++ b/results.json @@ -0,0 +1 @@ +{"TOP_10": {"tantivy-0.18": [{"query": "the", "tags": ["term"], "count": 1, "duration": [1517, 1530, 2781]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [113, 115, 130]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [126, 127, 135]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [210, 225, 287]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [64, 65, 65]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [81, 82, 112]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [89, 100, 119]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [145, 158, 185]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [180, 187, 211]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [176, 187, 240]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [143, 157, 160]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [189, 201, 209]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [203, 211, 320]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [481, 482, 493]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [517, 524, 545]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1184, 1233, 1298]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [802, 858, 876]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [859, 864, 892]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [992, 1044, 1204]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1611, 1661, 1939]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2335, 2357, 2372]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1927, 1942, 2004]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [57, 57, 58]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [63, 63, 64]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [101, 106, 116]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [577, 585, 601]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [624, 631, 649]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [897, 1056, 1416]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1911, 2062, 2472]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2371, 2378, 2513]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2488, 2523, 2875]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [590, 622, 760]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [756, 768, 888]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [719, 727, 792]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [252, 257, 291]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [267, 274, 282]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [491, 510, 522]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [265, 268, 275]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [333, 335, 407]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [354, 370, 447]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [899, 957, 1004]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1028, 1028, 1034]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1089, 1094, 1129]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [308, 349, 406]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [362, 368, 369]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [444, 445, 520]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [100, 108, 111]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [86, 86, 91]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [410, 439, 467]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [133, 134, 137]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [143, 143, 151]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [222, 232, 250]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1022, 1031, 1131]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1241, 1242, 1276]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1310, 1316, 1401]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [119, 120, 122]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [146, 153, 157]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [369, 375, 490]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [669, 699, 725]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [935, 941, 995]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1045, 1068, 1102]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1490, 1573, 1577]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1738, 1805, 1864]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1652, 1748, 1791]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1138, 1160, 1697]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [4061, 4405, 4528]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [354, 354, 392]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [242, 244, 273]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [260, 270, 271]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [635, 662, 688]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1213, 1235, 1284]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1482, 1491, 1527]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1447, 1814, 2039]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [955, 1023, 1243]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1096, 1137, 1244]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1246, 1264, 1540]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [772, 781, 933]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [920, 920, 921]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1100, 1133, 1378]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [335, 356, 452]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [371, 374, 379]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [433, 439, 477]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [646, 660, 691]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [696, 809, 946]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1083, 1100, 1136]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [212, 214, 235]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [330, 339, 351]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [285, 293, 300]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [709, 722, 841]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [765, 776, 900]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1305, 1343, 1428]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [297, 298, 307]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [340, 344, 359]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [447, 452, 519]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3134, 3160, 3269]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [7342, 7363, 7809]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2914, 2983, 3113]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1100, 1109, 1273]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1470, 1471, 1489]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1474, 1504, 1679]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1693, 1734, 1757]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2403, 2415, 2568]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1933, 2047, 2099]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [75, 80, 85]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [98, 102, 128]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [109, 118, 164]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1624, 1683, 1894]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2102, 2175, 2196]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2551, 2564, 3186]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3716, 3862, 3869]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4528, 4542, 4685]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4953, 4993, 5206]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1460, 1537, 1849]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1810, 1886, 1908]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1218, 1222, 1613]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [50, 51, 59]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [46, 50, 52]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [126, 134, 145]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [235, 254, 261]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [240, 240, 254]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [395, 416, 573]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [806, 807, 1274]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1935, 1963, 2010]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [904, 912, 1251]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4022, 4763, 5878]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [11292, 11418, 15155]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1579, 1608, 1715]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [116, 117, 121]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [163, 175, 196]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [171, 184, 256]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [250, 265, 296]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [380, 392, 393]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [337, 343, 360]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4385, 4530, 4856]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [8802, 8977, 9366]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5522, 5606, 5655]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [366, 379, 435]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [456, 458, 488]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [459, 462, 580]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [734, 765, 768]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [816, 824, 841]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [980, 1042, 1046]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1127, 1133, 1258]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1220, 1266, 1272]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1217, 1249, 1304]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [38, 38, 43]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [47, 69, 84]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [92, 93, 97]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [41, 42, 43]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [44, 45, 46]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [62, 63, 69]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1755, 1806, 2053]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1878, 1926, 2037]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2617, 2639, 2642]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [111, 119, 124]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [159, 161, 166]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [127, 137, 140]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [469, 471, 627]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [523, 536, 552]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [537, 557, 1026]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2149, 2175, 2839]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3170, 3355, 3641]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2285, 2367, 2449]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [105, 107, 110]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [120, 129, 150]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [179, 194, 212]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [321, 324, 406]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [427, 432, 443]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [517, 578, 717]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1131, 1143, 1410]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [2427, 2441, 2442]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1738, 1814, 2098]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [339, 369, 419]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [540, 546, 550]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [578, 627, 666]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1047, 1050, 1073]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1592, 1596, 1612]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1299, 1317, 1349]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [68, 70, 80]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [69, 69, 73]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [172, 192, 192]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [686, 870, 881]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [892, 893, 932]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [931, 987, 1117]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [47, 47, 50]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [54, 62, 110]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [104, 108, 108]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [277, 292, 492]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [432, 469, 480]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [355, 362, 511]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2587, 2658, 3010]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3262, 3285, 3387]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1209, 1449, 1510]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [77, 78, 81]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [101, 105, 148]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [104, 113, 133]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [288, 415, 439]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [596, 614, 774]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [321, 397, 500]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [140, 142, 143]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [164, 169, 170]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [293, 304, 349]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [86, 87, 87]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [94, 98, 113]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [161, 164, 183]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [554, 569, 573]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [669, 696, 699]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [668, 701, 761]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [45, 49, 72]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [49, 54, 75]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [74, 77, 84]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [347, 350, 601]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [558, 562, 570]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [403, 470, 745]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [694, 969, 974]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1010, 1064, 1076]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1727, 1736, 1875]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1084, 1133, 1351]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1213, 1229, 1253]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1281, 1327, 1455]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [167, 169, 206]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [248, 266, 313]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [212, 241, 250]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [349, 358, 378]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [417, 419, 513]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [409, 464, 465]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [337, 362, 388]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [398, 402, 418]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [464, 465, 489]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [363, 363, 371]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [406, 425, 537]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [436, 436, 440]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [778, 796, 811]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [934, 950, 978]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [950, 951, 1051]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1889, 1907, 2251]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3970, 3990, 4317]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1909, 1922, 2175]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [494, 518, 531]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [636, 644, 646]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [649, 706, 771]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [7509, 7574, 7597]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [14055, 14288, 14546]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2330, 2380, 2507]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1368, 1495, 1619]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1754, 1756, 1782]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1733, 1816, 2121]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [42, 45, 47]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [52, 52, 55]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [71, 103, 130]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [972, 997, 1228]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1181, 1207, 1240]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1264, 1266, 1269]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [398, 404, 428]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [466, 504, 568]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [516, 549, 557]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [955, 960, 991]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1285, 1326, 1355]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [956, 957, 1231]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [375, 376, 401]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [596, 657, 862]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1621, 1674, 1695]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [773, 781, 786]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [896, 938, 1202]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [881, 932, 955]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [554, 578, 727]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [767, 789, 905]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [594, 596, 615]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2777, 2881, 2905]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3141, 3181, 3328]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3991, 4058, 4212]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [493, 502, 517]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [526, 533, 556]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [608, 647, 668]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [210, 220, 229]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [234, 246, 246]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [287, 322, 342]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [52, 58, 59]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [49, 52, 53]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [392, 398, 459]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1899, 1905, 2034]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2359, 2362, 2675]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2171, 2348, 2838]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [52, 54, 56]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [62, 69, 75]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [92, 100, 105]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [258, 279, 329]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [318, 325, 330]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [316, 319, 372]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1120, 1140, 1174]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1574, 1617, 1675]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1460, 1492, 1564]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1161, 1184, 1247]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1483, 1528, 1615]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2061, 2151, 2184]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [85, 90, 96]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [112, 119, 121]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [142, 150, 207]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [88, 103, 136]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [108, 109, 148]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [861, 876, 949]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [467, 473, 502]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [612, 622, 633]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [711, 768, 795]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [565, 665, 761]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [644, 646, 659]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [688, 735, 786]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [80, 85, 86]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [137, 141, 150]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [93, 119, 132]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [107, 124, 130]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [137, 138, 155]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [184, 195, 212]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [187, 193, 198]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [195, 201, 204]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [284, 302, 307]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1957, 2121, 2378]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2555, 2561, 2821]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2663, 2904, 3200]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [56, 60, 70]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [80, 82, 108]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [81, 83, 106]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [638, 670, 767]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [746, 772, 774]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [838, 860, 914]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [123, 126, 131]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [143, 151, 156]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [174, 179, 185]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [177, 191, 210]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [154, 163, 165]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [243, 247, 252]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [520, 528, 549]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [610, 615, 616]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [520, 561, 605]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [187, 188, 229]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [238, 241, 242]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [327, 346, 375]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4326, 4386, 4720]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5178, 5182, 5454]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5858, 5862, 6194]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1029, 1063, 1111]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1360, 1364, 1430]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1343, 1422, 2216]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [378, 411, 411]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [419, 424, 478]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1403, 1460, 1537]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [153, 165, 170]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [160, 165, 167]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [238, 241, 242]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [53, 54, 54]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [55, 55, 59]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [154, 163, 178]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1144, 1144, 1159]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1237, 1271, 1290]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1690, 1759, 1815]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [148, 153, 179]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [159, 161, 167]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [259, 279, 295]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [141, 145, 204]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [209, 216, 253]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [198, 199, 227]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [141, 145, 149]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [187, 218, 219]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [156, 174, 192]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [558, 613, 639]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [604, 627, 632]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [720, 724, 1031]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [46, 47, 49]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [50, 51, 52]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [101, 103, 114]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [438, 443, 445]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [480, 488, 490]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [716, 769, 806]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [724, 737, 782]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1125, 1258, 1536]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1024, 1030, 1088]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1679, 1680, 1760]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2348, 2356, 2416]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2093, 2202, 2452]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [338, 339, 344]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [339, 340, 341]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [483, 491, 506]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [994, 1029, 1088]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1073, 1089, 1104]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1511, 1514, 1629]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [61, 61, 64]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [78, 78, 82]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [84, 91, 119]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [157, 174, 194]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [228, 243, 254]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [318, 326, 387]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [168, 173, 280]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [297, 304, 317]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [249, 264, 274]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [147, 154, 301]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [249, 251, 262]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [196, 225, 242]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [166, 171, 173]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [198, 206, 304]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [477, 478, 707]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3002, 3147, 4644]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [33013, 33142, 36866]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [920, 1090, 1113]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [230, 236, 247]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [253, 279, 295]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [338, 365, 382]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [133, 135, 149]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [161, 162, 168]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [189, 215, 226]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [138, 144, 147]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [191, 192, 247]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [422, 427, 441]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1343, 1345, 1562]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1456, 1488, 1521]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1922, 2028, 2086]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [127, 134, 142]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [144, 148, 151]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [210, 211, 239]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [58, 76, 85]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [67, 72, 84]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [78, 81, 82]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [59, 74, 85]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [61, 63, 66]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [160, 194, 298]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [569, 634, 764]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [634, 656, 692]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [717, 721, 833]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [178, 227, 254]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [332, 365, 397]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [222, 229, 379]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [297, 339, 345]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [390, 404, 449]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [408, 438, 475]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [945, 1105, 1125]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1394, 1429, 1491]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1195, 1223, 1341]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [147, 153, 157]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [234, 241, 243]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [198, 216, 227]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [426, 436, 477]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [452, 459, 460]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2185, 2187, 2374]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [619, 721, 777]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [756, 757, 766]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1362, 1583, 1825]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [493, 493, 540]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [560, 570, 691]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [588, 619, 1043]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [292, 298, 328]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [353, 369, 400]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [456, 504, 625]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [44, 50, 53]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [56, 61, 79]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [88, 92, 102]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [789, 828, 969]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [937, 968, 1003]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [640, 680, 776]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [590, 668, 745]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [712, 742, 781]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [835, 861, 1005]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [169, 174, 174]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [418, 421, 440]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [420, 425, 451]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [128, 144, 158]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [195, 208, 222]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [197, 207, 228]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [510, 522, 594]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [583, 586, 677]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [964, 977, 1336]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1085, 1126, 1162]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1282, 1294, 1323]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1290, 1339, 1402]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [506, 522, 571]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [590, 598, 831]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1540, 1562, 1595]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [212, 233, 246]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [293, 297, 325]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [290, 291, 319]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [69, 77, 108]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [84, 86, 121]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [140, 149, 164]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1422, 1442, 1626]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1617, 1621, 1711]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1838, 1854, 2092]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [42, 45, 90]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [44, 47, 50]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [123, 126, 190]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [81, 83, 83]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [103, 107, 111]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [157, 163, 183]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [544, 552, 559]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [643, 671, 715]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [652, 665, 693]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1263, 1301, 1354]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1636, 1658, 1689]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1623, 1653, 1960]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [112, 115, 123]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [150, 153, 161]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [176, 186, 194]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [176, 189, 192]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [276, 276, 285]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [266, 282, 286]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1737, 1748, 2207]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2158, 2646, 3607]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2010, 2021, 3918]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [357, 400, 473]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [421, 424, 436]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [524, 541, 609]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [321, 323, 361]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [345, 348, 364]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [398, 410, 449]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [525, 631, 656]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [633, 634, 647]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [700, 757, 774]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [121, 132, 155]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [139, 142, 162]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [172, 205, 214]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1497, 1509, 1630]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3166, 3252, 3293]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1690, 1700, 1739]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [285, 288, 293]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [366, 370, 389]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [512, 513, 550]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [310, 310, 361]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [442, 456, 459]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [471, 506, 676]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [79, 80, 83]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [100, 131, 132]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [143, 150, 156]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3425, 3559, 3871]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [5077, 5082, 5104]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4026, 4115, 4712]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [316, 330, 357]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [328, 334, 354]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [541, 545, 549]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [509, 536, 598]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [591, 601, 613]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [635, 722, 747]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1674, 1886, 2297]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1857, 1924, 1987]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2383, 2457, 2654]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [194, 198, 203]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [223, 223, 223]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [268, 287, 311]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1539, 1588, 2988]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2114, 2196, 2344]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2088, 2226, 2526]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [264, 265, 307]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [372, 374, 404]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [379, 455, 471]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [37, 37, 48]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [56, 56, 64]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [116, 133, 152]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [239, 247, 248]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [258, 266, 351]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [506, 525, 559]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [210, 212, 267]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [430, 433, 490]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [329, 341, 556]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [64, 79, 109]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [94, 114, 115]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [126, 146, 153]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [237, 246, 286]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [285, 287, 309]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [354, 357, 415]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [29, 31, 32]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [32, 33, 33]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [32, 33, 36]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [772, 773, 853]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [825, 825, 879]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1750, 1786, 1949]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [689, 693, 757]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [725, 727, 738]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1192, 1398, 1436]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [38, 40, 42]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [44, 53, 55]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [73, 110, 118]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [274, 278, 292]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [336, 341, 364]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [365, 369, 407]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [417, 438, 696]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [802, 819, 885]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [496, 507, 583]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [539, 568, 585]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [622, 632, 645]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [619, 642, 772]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [727, 734, 790]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [860, 867, 877]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [918, 926, 1027]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [536, 584, 667]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [613, 620, 645]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [699, 718, 847]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [145, 146, 155]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [187, 191, 202]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [201, 206, 231]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [169, 170, 172]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [183, 184, 188]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [270, 296, 300]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [747, 781, 962]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1601, 1627, 1938]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1027, 1030, 1067]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [770, 791, 944]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [894, 895, 1021]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1093, 1152, 1197]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [254, 284, 287]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [486, 518, 543]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [536, 559, 571]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [44, 45, 46]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [47, 60, 73]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [132, 150, 174]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [956, 971, 1033]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1109, 1148, 1150]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1430, 1437, 1659]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [138, 158, 168]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [149, 162, 168]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [183, 187, 216]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [103, 104, 116]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [150, 154, 172]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [167, 168, 172]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1428, 1430, 1459]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1648, 1690, 1702]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2003, 2038, 2169]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [184, 185, 192]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [251, 256, 334]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [284, 297, 317]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [75, 76, 97]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [94, 95, 119]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [213, 230, 262]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [622, 644, 721]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [811, 831, 961]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [633, 658, 678]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [402, 411, 415]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [446, 467, 483]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [390, 396, 405]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1440, 1675, 1971]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1637, 1670, 1948]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1774, 1790, 1792]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [316, 320, 337]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [458, 459, 464]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [417, 417, 433]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [294, 294, 302]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [328, 345, 413]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [403, 404, 465]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [201, 204, 237]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [255, 275, 279]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [266, 272, 393]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [484, 498, 501]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [546, 599, 603]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [791, 799, 842]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [935, 1009, 1058]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1938, 2027, 2303]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [769, 811, 1115]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [103, 108, 115]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [114, 127, 172]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [204, 248, 269]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [243, 246, 289]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [303, 308, 310]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [308, 336, 403]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1405, 1451, 1579]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1972, 2001, 2299]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1221, 1228, 1475]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1269, 1739, 1826]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1508, 1635, 1662]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1709, 1740, 2662]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1354, 1412, 1492]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1490, 1548, 1575]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [3309, 3315, 3321]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [88, 89, 93]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [108, 109, 118]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [279, 343, 353]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [483, 503, 507]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [573, 581, 617]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [992, 1070, 1078]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [88, 96, 106]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [144, 150, 152]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [112, 112, 128]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [138, 141, 159]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [164, 167, 176]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [170, 280, 362]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [185, 214, 216]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [214, 216, 258]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [256, 358, 375]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2061, 2177, 2649]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [10459, 11097, 11857]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [926, 944, 983]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [105, 105, 106]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [141, 149, 150]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [147, 165, 176]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [372, 405, 518]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [539, 581, 757]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [487, 531, 554]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [322, 322, 432]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [546, 555, 580]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [769, 835, 1103]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [49, 51, 55]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [53, 59, 64]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [78, 155, 174]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [339, 344, 365]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [378, 397, 402]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [400, 423, 496]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2378, 2392, 2561]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2830, 2856, 2866]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2994, 3082, 3887]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1303, 1305, 1334]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1382, 1411, 1423]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1662, 1837, 1871]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [566, 566, 873]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [915, 921, 940]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [719, 814, 885]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2145, 2271, 2458]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2899, 2899, 3504]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3020, 3072, 3311]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [474, 514, 539]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [651, 662, 777]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [325, 332, 358]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [441, 481, 484]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [515, 519, 548]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [540, 560, 579]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [101, 106, 125]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [136, 140, 152]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [173, 176, 183]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1771, 1814, 1982]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2030, 2037, 2595]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1380, 1592, 1615]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [100, 123, 131]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [147, 153, 257]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [147, 148, 167]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [71, 73, 74]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [88, 95, 99]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [145, 150, 161]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [664, 686, 754]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [786, 790, 817]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [763, 838, 853]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2079, 2145, 2303]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2639, 2675, 2892]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3013, 3072, 3650]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [80, 81, 82]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [86, 95, 119]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [305, 316, 331]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1116, 1335, 1434]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1238, 1256, 1592]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1743, 1758, 1797]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [51, 56, 78]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [62, 67, 86]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [104, 107, 109]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [179, 184, 184]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [205, 216, 227]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [290, 302, 633]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [49, 50, 54]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [49, 50, 56]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [144, 159, 248]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [927, 1101, 1213]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2192, 2302, 2315]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [905, 959, 1040]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [79, 79, 120]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [84, 84, 89]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [172, 201, 210]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [190, 194, 201]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [240, 247, 260]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [413, 428, 494]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [209, 212, 220]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [236, 243, 266]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [554, 586, 640]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [165, 167, 342]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [182, 182, 191]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [390, 402, 497]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [518, 525, 1208]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [620, 624, 639]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1451, 1479, 1514]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [95, 98, 106]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [104, 115, 132]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [127, 128, 142]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [51, 56, 57]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [73, 74, 80]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [151, 155, 161]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1889, 1922, 1931]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2041, 2044, 2142]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2346, 2428, 2556]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2426, 2711, 2951]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4234, 4273, 4676]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1351, 1439, 1699]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [309, 310, 354]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [341, 343, 346]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1051, 1195, 1400]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3715, 3796, 4068]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [6146, 6173, 6338]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4391, 4569, 4602]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [72, 76, 96]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [77, 78, 81]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [107, 119, 188]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [622, 647, 704]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [766, 766, 769]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [889, 891, 894]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [276, 279, 304]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [357, 358, 362]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [431, 433, 469]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [307, 316, 358]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [584, 613, 614]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [408, 436, 478]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [84, 84, 101]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [89, 103, 107]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [135, 162, 169]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1177, 1265, 1304]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2094, 2494, 2537]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1461, 1545, 1929]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [344, 348, 361]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [584, 588, 662]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [327, 365, 368]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [257, 259, 260]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [292, 307, 360]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [687, 693, 897]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [8982, 9080, 9926]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [15176, 15225, 15412]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [8711, 8819, 9161]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [49, 52, 59]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [55, 69, 74]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [66, 70, 77]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [243, 259, 293]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [347, 351, 356]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [285, 302, 321]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [574, 635, 694]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1017, 1041, 1116]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [632, 711, 793]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [301, 317, 340]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [796, 813, 819]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [487, 547, 729]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [206, 220, 235]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [274, 281, 441]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [443, 452, 502]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [118, 120, 144]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [122, 122, 145]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [282, 286, 291]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [35, 35, 40]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [46, 47, 60]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [71, 82, 135]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [102, 121, 130]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [124, 131, 133]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [150, 156, 162]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [220, 245, 263]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [245, 252, 271]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [275, 279, 314]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1456, 1533, 1617]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1767, 1770, 1827]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2131, 2172, 2453]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [944, 1111, 1251]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [986, 991, 993]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [11201, 11380, 11895]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [820, 872, 875]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1148, 1177, 1247]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [869, 922, 1031]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1067, 1099, 1134]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1199, 1216, 1327]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [939, 979, 1008]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [180, 183, 186]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [230, 234, 235]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [526, 526, 549]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4428, 4577, 4821]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5033, 5054, 5131]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5637, 5718, 6530]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [115, 119, 142]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [125, 128, 130]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [766, 779, 834]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [341, 362, 386]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [452, 456, 457]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [418, 495, 500]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [161, 167, 211]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [180, 183, 188]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [192, 217, 220]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [374, 391, 408]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [480, 491, 522]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [499, 550, 643]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [199, 207, 218]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [258, 271, 277]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [292, 319, 334]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [208, 209, 226]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [227, 228, 231]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [257, 268, 273]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [199, 217, 241]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [225, 237, 248]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [511, 512, 529]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2003, 2032, 2054]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3477, 3639, 4024]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2432, 2741, 2875]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [76, 77, 81]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [94, 104, 108]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [277, 292, 297]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [515, 526, 571]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [666, 674, 682]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [717, 721, 739]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [987, 1090, 1121]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1268, 1290, 1360]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1363, 1368, 1386]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [228, 241, 245]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [245, 245, 252]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [298, 301, 302]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [548, 580, 626]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [718, 726, 974]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [8614, 8771, 10450]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 1, "duration": [168590, 169362, 170183]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 1, "duration": [181, 187, 187]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 1, "duration": [33240, 33432, 46547]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 1, "duration": [9168, 9295, 9824]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 1, "duration": [224716, 230938, 234323]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 1, "duration": [267597, 273657, 282686]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1, "duration": [251001, 255844, 257191]}], "tantivy-0.19": [{"query": "the", "tags": ["term"], "count": 1, "duration": [1514, 1548, 1744]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [113, 120, 129]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [129, 132, 132]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [181, 185, 202]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [62, 63, 70]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [81, 85, 104]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [90, 92, 105]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [141, 142, 157]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [182, 191, 202]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [163, 167, 176]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [141, 146, 165]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [195, 198, 199]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [216, 225, 230]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [515, 530, 547]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [510, 516, 527]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1216, 1224, 1227]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [817, 820, 992]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [873, 878, 885]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1099, 1138, 1140]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1403, 1509, 1842]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2317, 2332, 2384]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1915, 2106, 2291]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [57, 62, 63]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [62, 65, 77]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [97, 99, 107]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [565, 570, 579]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [624, 626, 627]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [843, 862, 931]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1951, 1985, 2178]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2374, 2394, 2402]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2478, 2503, 2888]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [527, 564, 583]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [768, 773, 774]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [643, 646, 754]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [246, 247, 279]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [268, 270, 374]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [450, 451, 464]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [258, 258, 316]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [330, 331, 334]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [371, 379, 382]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [889, 893, 1075]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1023, 1077, 1086]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1171, 1174, 1234]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [322, 328, 398]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [361, 362, 371]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [457, 458, 516]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [87, 89, 101]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [83, 88, 95]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [346, 353, 358]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [128, 136, 139]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [143, 147, 159]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [212, 213, 218]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [932, 964, 1220]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1285, 1287, 1290]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1409, 1437, 1591]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [122, 122, 126]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [154, 155, 157]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [385, 390, 412]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [661, 668, 683]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [954, 956, 999]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1012, 1034, 1152]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1568, 1578, 1946]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1731, 1734, 1795]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1782, 1852, 1968]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1161, 1349, 2081]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [4173, 4176, 4212]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [321, 325, 331]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [236, 246, 249]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [265, 267, 271]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [656, 658, 742]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1158, 1227, 1435]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1500, 1522, 1528]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1552, 1557, 1660]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [932, 986, 1009]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1105, 1107, 1116]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1239, 1271, 1306]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [866, 895, 951]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [927, 927, 937]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1096, 1099, 1263]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [339, 350, 421]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [371, 379, 387]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [473, 488, 512]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [651, 661, 666]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [706, 725, 759]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [986, 1015, 1104]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [223, 250, 275]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [341, 342, 356]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [273, 291, 299]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [714, 716, 745]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [765, 776, 779]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1338, 1410, 1561]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [293, 302, 311]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [348, 354, 357]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [440, 445, 448]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3207, 3314, 4289]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [7424, 7448, 7822]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3075, 3081, 3087]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1191, 1359, 1420]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1458, 1470, 1512]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1572, 1573, 1584]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1733, 1798, 2120]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2463, 2493, 2632]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1974, 2100, 2182]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [73, 74, 84]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [104, 112, 117]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [98, 99, 116]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1619, 1621, 1696]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2102, 2104, 2170]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2576, 2662, 2819]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3862, 3932, 4286]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4522, 4559, 4599]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4914, 4959, 4985]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1448, 1526, 1574]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1807, 1846, 1853]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1344, 1384, 1502]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [49, 52, 81]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [48, 49, 49]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [93, 100, 202]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [244, 249, 265]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [236, 237, 243]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [373, 380, 397]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [742, 746, 753]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1952, 2043, 2071]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [934, 951, 1255]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4054, 4069, 4079]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [11409, 11663, 11674]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1486, 1502, 1538]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [108, 117, 117]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [156, 157, 157]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [148, 153, 154]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [234, 241, 419]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [376, 376, 382]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [312, 322, 324]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4458, 4469, 5111]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [8863, 8975, 9593]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5134, 5151, 5307]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [363, 364, 448]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [461, 489, 499]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [480, 483, 489]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [751, 763, 766]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [818, 833, 843]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1051, 1066, 1104]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1111, 1139, 1409]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1229, 1231, 1257]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1320, 1338, 1414]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [42, 44, 91]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [42, 43, 46]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [70, 71, 77]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [43, 43, 55]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [45, 46, 67]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [63, 66, 81]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1726, 1761, 1769]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1858, 1914, 2063]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2491, 2492, 2672]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [107, 109, 113]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [155, 159, 179]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [120, 131, 155]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [485, 503, 616]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [515, 545, 690]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [528, 532, 602]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1917, 1994, 2497]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3224, 3246, 3579]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2262, 2309, 2362]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [109, 124, 128]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [120, 122, 124]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [224, 233, 242]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [319, 324, 425]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [436, 438, 478]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [551, 551, 556]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1126, 1150, 1193]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [2443, 2491, 2567]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1469, 1532, 1628]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [339, 341, 369]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [538, 551, 563]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [606, 617, 641]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [929, 988, 1217]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1603, 1603, 1637]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1262, 1308, 1419]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [68, 69, 70]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [71, 78, 81]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [158, 158, 180]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [711, 736, 738]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [900, 912, 941]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [995, 1029, 1090]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [53, 53, 57]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [52, 53, 54]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [84, 91, 93]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [268, 282, 340]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [405, 407, 476]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [336, 342, 346]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2598, 2626, 2711]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3284, 3348, 3358]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1371, 1377, 1469]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [75, 77, 99]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [103, 105, 108]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [103, 108, 109]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [299, 307, 316]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [552, 572, 626]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [326, 348, 357]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [145, 147, 202]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [161, 163, 185]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [304, 307, 315]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [88, 88, 99]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [94, 97, 101]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [167, 173, 194]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [548, 555, 579]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [683, 692, 701]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [689, 699, 770]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [46, 50, 50]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [47, 50, 63]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [70, 71, 77]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [346, 347, 347]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [569, 580, 590]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [380, 388, 393]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [681, 683, 764]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [928, 937, 986]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1789, 1805, 1838]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1103, 1124, 1165]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1224, 1232, 1248]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1447, 1459, 1537]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [163, 167, 193]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [244, 244, 248]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [223, 257, 260]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [369, 382, 443]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [411, 418, 436]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [457, 470, 471]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [320, 327, 415]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [403, 406, 407]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [449, 471, 492]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [359, 368, 371]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [401, 407, 423]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [452, 474, 476]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [772, 953, 953]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [937, 944, 1005]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [942, 1000, 1021]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1822, 1860, 2297]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3952, 4013, 4376]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1862, 1882, 1959]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [476, 483, 583]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [640, 645, 650]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [657, 728, 752]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [7648, 7658, 7716]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [14355, 14405, 14474]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2468, 2477, 2534]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1362, 1381, 1752]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1753, 1779, 1806]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1819, 1868, 1933]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [44, 44, 47]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [51, 60, 62]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [76, 80, 117]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [925, 939, 1071]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1181, 1181, 1308]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1239, 1259, 1269]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [347, 357, 465]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [452, 465, 468]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [557, 579, 609]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [941, 970, 1187]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1320, 1330, 1337]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [973, 1052, 1160]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [372, 389, 396]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [577, 587, 592]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1431, 1438, 1521]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [783, 793, 985]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [899, 902, 920]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [942, 942, 955]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [507, 558, 611]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [777, 810, 943]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [538, 549, 553]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2720, 2758, 2792]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3124, 3133, 3176]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3820, 3917, 4303]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [490, 523, 604]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [529, 539, 546]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [642, 687, 692]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [210, 217, 266]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [230, 244, 267]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [316, 319, 323]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [47, 47, 49]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [50, 55, 66]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [399, 408, 545]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1884, 1902, 1962]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2373, 2434, 2585]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2087, 2213, 2243]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [53, 57, 79]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [63, 64, 79]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [122, 135, 139]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [246, 250, 257]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [322, 342, 398]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [322, 332, 403]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1074, 1405, 1478]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1583, 1587, 1700]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1513, 1523, 1774]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1137, 1138, 1149]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1479, 1499, 1506]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2102, 2143, 2218]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [86, 92, 117]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [107, 110, 122]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [145, 147, 173]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [92, 92, 95]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [108, 108, 119]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [863, 880, 933]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [486, 500, 565]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [606, 610, 616]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [707, 720, 805]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [553, 558, 600]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [644, 649, 650]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [744, 809, 827]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [78, 84, 104]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [135, 136, 136]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [90, 125, 170]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [121, 125, 138]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [140, 143, 149]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [180, 191, 221]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [187, 202, 202]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [200, 200, 206]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [297, 306, 352]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1961, 1975, 2053]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2553, 2569, 2660]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2670, 2685, 3113]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [62, 64, 74]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [82, 82, 83]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [93, 93, 127]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [679, 689, 804]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [769, 772, 776]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [915, 923, 926]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [129, 144, 158]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [144, 144, 157]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [160, 176, 213]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [153, 161, 186]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [151, 154, 154]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [234, 240, 242]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [517, 525, 658]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [602, 605, 635]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [558, 587, 587]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [189, 196, 219]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [236, 236, 252]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [315, 320, 393]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4369, 4392, 4398]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5140, 5146, 5205]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5885, 6249, 6760]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [955, 1184, 1819]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1365, 1383, 1408]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1135, 1161, 1218]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [397, 408, 421]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [429, 438, 455]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1207, 1248, 1273]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [153, 166, 195]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [166, 169, 169]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [232, 248, 281]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [55, 56, 65]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [55, 58, 61]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [154, 155, 163]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1128, 1139, 1146]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1233, 1243, 1247]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1699, 1701, 1716]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [153, 157, 166]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [164, 166, 175]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [259, 280, 348]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [151, 158, 170]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [215, 216, 298]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [197, 201, 220]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [136, 143, 167]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [184, 194, 201]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [132, 140, 178]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [554, 565, 761]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [609, 614, 631]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [740, 748, 871]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [46, 47, 57]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [52, 53, 62]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [99, 100, 112]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [435, 439, 441]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [475, 475, 480]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [754, 777, 782]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [725, 731, 748]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1139, 1140, 1171]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [992, 1006, 1020]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1792, 2111, 2694]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2318, 2325, 2382]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2285, 2333, 2390]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [333, 342, 398]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [343, 344, 361]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [507, 510, 579]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [986, 993, 1029]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1073, 1086, 1108]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1522, 1532, 1560]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [57, 60, 60]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [80, 83, 85]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [91, 110, 130]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [158, 160, 173]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [230, 236, 241]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [276, 279, 285]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [160, 166, 293]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [293, 308, 335]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [226, 248, 253]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [130, 134, 171]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [252, 266, 268]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [209, 226, 287]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [169, 183, 275]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [194, 196, 199]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [423, 459, 473]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3030, 3348, 3931]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [35195, 35810, 36018]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [900, 904, 904]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [230, 232, 234]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [258, 259, 260]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [307, 308, 310]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [142, 153, 160]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [154, 161, 194]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [214, 251, 261]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [139, 142, 145]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [189, 195, 196]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [393, 411, 500]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1313, 1323, 1341]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1470, 1478, 1672]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1906, 1924, 1937]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [124, 125, 127]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [155, 155, 158]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [199, 208, 211]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [57, 59, 65]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [69, 69, 79]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [73, 76, 77]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [61, 62, 67]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [63, 64, 65]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [119, 122, 134]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [591, 597, 610]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [646, 649, 650]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [787, 801, 824]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [150, 166, 242]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [282, 286, 307]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [245, 246, 248]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [290, 297, 351]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [383, 386, 390]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [380, 387, 396]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [967, 971, 1046]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1332, 1352, 1408]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1116, 1140, 1392]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [141, 148, 198]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [224, 232, 239]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [191, 198, 213]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [433, 438, 444]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [458, 459, 464]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2148, 2156, 2180]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [605, 644, 788]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [757, 761, 805]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1304, 1305, 1544]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [493, 509, 769]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [567, 572, 596]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [651, 652, 660]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [298, 308, 363]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [352, 353, 360]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [447, 473, 503]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [44, 47, 75]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [56, 56, 57]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [78, 100, 110]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [765, 774, 860]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [950, 957, 964]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [635, 665, 665]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [567, 627, 724]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [741, 748, 752]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [815, 832, 852]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [167, 172, 531]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [417, 423, 430]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [415, 433, 460]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [127, 129, 136]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [192, 195, 203]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [190, 193, 231]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [517, 536, 640]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [567, 605, 693]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [901, 943, 1036]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1061, 1180, 1325]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1293, 1318, 1357]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1365, 1483, 1525]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [513, 531, 537]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [593, 593, 617]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1471, 1483, 1496]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [212, 233, 258]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [303, 305, 306]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [278, 290, 360]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [70, 75, 75]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [84, 86, 86]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [141, 144, 144]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1426, 1464, 1837]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1615, 1628, 1632]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1916, 1952, 2029]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [43, 44, 50]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [45, 45, 49]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [85, 87, 89]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [79, 82, 108]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [102, 104, 104]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [163, 163, 221]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [465, 490, 807]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [656, 659, 678]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [675, 689, 708]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1193, 1231, 1392]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1646, 1647, 1681]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1636, 1671, 1806]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [105, 107, 131]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [148, 152, 155]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [177, 184, 192]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [173, 178, 200]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [279, 280, 290]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [278, 299, 319]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1723, 1742, 1780]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2148, 2167, 2335]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1992, 2015, 2636]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [338, 362, 387]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [426, 427, 430]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [514, 557, 562]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [334, 337, 395]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [338, 340, 343]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [471, 497, 568]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [524, 532, 536]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [635, 675, 704]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [738, 743, 744]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [121, 131, 161]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [141, 142, 143]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [170, 176, 193]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1485, 1762, 2042]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3220, 3263, 3270]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1778, 1794, 1865]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [277, 279, 288]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [374, 377, 448]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [471, 491, 502]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [285, 297, 327]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [444, 450, 451]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [455, 459, 467]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [80, 84, 89]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [109, 137, 195]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [135, 135, 205]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3412, 3641, 3684]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [5157, 5163, 5199]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4122, 4145, 4756]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [318, 320, 333]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [344, 347, 361]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [595, 625, 639]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [483, 503, 649]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [591, 597, 599]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [679, 690, 693]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1715, 1723, 2221]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1885, 1888, 1917]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2283, 2291, 2317]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [201, 208, 264]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [226, 232, 237]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [280, 285, 299]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1518, 1723, 1766]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2087, 2111, 2259]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2123, 2214, 2235]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [268, 296, 326]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [395, 413, 441]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [395, 409, 412]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [36, 38, 39]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [57, 58, 59]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [113, 115, 121]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [232, 234, 293]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [272, 280, 281]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [513, 535, 545]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [210, 220, 228]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [408, 419, 468]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [290, 307, 317]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [62, 96, 114]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [91, 95, 96]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [101, 105, 107]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [234, 252, 318]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [290, 291, 297]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [325, 337, 373]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [31, 40, 40]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [34, 35, 43]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [30, 31, 42]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [786, 796, 802]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [824, 828, 830]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1884, 1890, 1980]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [679, 703, 705]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [723, 733, 736]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1262, 1275, 1494]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [40, 44, 46]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [48, 49, 54]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [75, 75, 75]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [295, 330, 341]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [346, 349, 359]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [371, 376, 386]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [417, 451, 519]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [814, 815, 960]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [470, 474, 493]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [528, 533, 660]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [633, 647, 653]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [703, 712, 731]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [763, 773, 837]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [859, 873, 905]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1014, 1027, 1077]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [530, 540, 667]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [605, 610, 664]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [756, 773, 781]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [140, 148, 175]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [182, 182, 185]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [218, 239, 254]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [161, 166, 172]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [188, 189, 192]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [281, 295, 368]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [749, 753, 782]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1662, 1672, 1704]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [937, 966, 1015]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [763, 766, 867]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [896, 902, 920]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1034, 1065, 1105]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [263, 265, 304]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [491, 505, 678]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [517, 522, 574]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [43, 43, 46]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [47, 47, 72]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [131, 147, 180]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [916, 921, 1113]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1130, 1136, 1143]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1340, 1348, 1367]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [138, 160, 218]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [155, 160, 174]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [191, 200, 252]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [112, 124, 167]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [153, 160, 163]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [147, 149, 158]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1359, 1373, 1417]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1659, 1660, 1661]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1926, 1927, 1954]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [192, 220, 227]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [249, 252, 253]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [287, 288, 319]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [82, 86, 88]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [89, 91, 100]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [212, 214, 218]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [581, 589, 714]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [838, 839, 851]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [681, 689, 691]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [413, 414, 451]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [454, 465, 472]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [422, 426, 434]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1441, 1557, 1834]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1645, 1674, 1682]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1817, 1861, 2166]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [304, 348, 464]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [460, 470, 492]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [387, 405, 518]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [280, 286, 342]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [319, 324, 353]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [351, 366, 369]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [192, 198, 204]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [251, 256, 257]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [273, 284, 293]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [498, 503, 524]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [551, 568, 577]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [727, 767, 769]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [906, 1010, 1254]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1868, 1899, 1909]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [739, 757, 769]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [106, 108, 122]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [115, 115, 120]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [196, 200, 200]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [224, 232, 248]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [307, 311, 312]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [312, 319, 320]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1345, 1399, 1467]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1945, 1982, 2757]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1178, 1182, 1323]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1211, 1261, 1601]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1524, 1524, 1564]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1675, 1733, 1844]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1385, 1417, 1536]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1483, 1486, 1488]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [3322, 3430, 3512]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [88, 91, 93]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [107, 114, 122]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [289, 340, 352]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [489, 493, 503]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [562, 564, 584]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1078, 1098, 1117]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [86, 88, 99]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [153, 154, 173]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [128, 132, 159]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [141, 142, 169]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [167, 171, 186]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [172, 188, 209]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [164, 175, 204]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [204, 211, 223]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [236, 247, 251]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2057, 2199, 2865]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [11241, 11689, 11815]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [823, 866, 873]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [101, 106, 112]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [129, 131, 132]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [155, 161, 164]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [345, 374, 401]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [537, 545, 546]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [479, 485, 500]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [312, 329, 338]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [541, 545, 553]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [882, 936, 999]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [47, 49, 67]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [52, 53, 54]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [72, 75, 111]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [333, 339, 348]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [378, 381, 434]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [438, 440, 490]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2448, 2494, 3018]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2839, 2840, 2894]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3226, 3298, 3417]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1306, 1318, 1321]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1388, 1411, 1516]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1629, 1636, 1669]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [539, 546, 570]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [909, 962, 996]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [637, 656, 662]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2190, 2241, 2568]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2887, 3010, 3125]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3024, 3060, 3310]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [407, 416, 600]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [627, 637, 665]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [310, 322, 329]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [446, 451, 577]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [517, 518, 534]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [595, 606, 608]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [104, 112, 118]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [134, 137, 141]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [163, 171, 182]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1843, 1923, 2319]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2017, 2041, 2045]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1410, 1501, 1566]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [96, 96, 111]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [151, 157, 180]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [126, 132, 137]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [72, 74, 89]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [86, 89, 98]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [133, 140, 147]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [575, 661, 942]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [796, 797, 803]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [837, 863, 877]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2075, 2089, 2151]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2629, 2656, 2830]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2704, 2766, 2781]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [81, 87, 94]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [84, 86, 93]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [285, 287, 338]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1148, 1152, 1290]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1245, 1272, 1446]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1737, 1847, 1990]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [52, 52, 52]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [65, 67, 82]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [109, 110, 127]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [176, 182, 216]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [209, 211, 318]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [312, 313, 415]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [52, 52, 55]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [53, 66, 74]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [146, 146, 147]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [983, 1027, 1145]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2207, 2208, 2213]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [847, 896, 915]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [81, 81, 91]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [84, 85, 115]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [167, 173, 188]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [163, 178, 184]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [248, 251, 301]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [386, 397, 404]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [209, 215, 217]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [238, 244, 246]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [577, 595, 618]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [159, 166, 168]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [183, 186, 254]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [317, 329, 333]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [503, 512, 516]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [617, 617, 732]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1302, 1307, 1336]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [100, 101, 102]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [102, 104, 107]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [142, 150, 172]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [53, 53, 54]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [72, 72, 107]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [162, 162, 215]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1877, 1896, 1979]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2033, 2050, 2095]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2360, 2403, 2423]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2389, 2440, 2500]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4362, 4363, 4371]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1292, 1317, 1386]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [321, 326, 341]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [345, 348, 354]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1081, 1095, 1169]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3780, 3792, 5098]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [6176, 6263, 6291]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4565, 4673, 4678]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [73, 78, 80]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [78, 79, 80]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [106, 109, 117]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [630, 633, 660]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [770, 786, 788]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [738, 770, 774]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [267, 272, 322]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [365, 366, 420]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [391, 391, 429]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [251, 254, 443]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [605, 609, 618]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [362, 379, 433]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [83, 88, 101]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [93, 93, 94]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [108, 120, 131]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1183, 1211, 1332]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2097, 2124, 2133]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1471, 1473, 1482]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [330, 333, 394]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [571, 579, 579]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [341, 351, 404]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [255, 267, 268]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [289, 297, 301]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [608, 619, 768]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [8888, 9107, 9252]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [15280, 15296, 15416]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [8640, 9040, 10374]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [54, 55, 55]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [56, 56, 61]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [81, 82, 93]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [233, 243, 293]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [344, 356, 379]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [289, 304, 315]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [590, 615, 713]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1014, 1034, 1041]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [695, 727, 939]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [307, 553, 672]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [787, 822, 850]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [507, 516, 528]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [208, 213, 250]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [267, 269, 272]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [370, 385, 404]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [122, 132, 135]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [121, 126, 144]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [301, 309, 325]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [36, 37, 40]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [48, 49, 75]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [56, 62, 62]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [97, 104, 107]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [129, 130, 156]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [150, 152, 239]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [221, 224, 273]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [247, 266, 270]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [315, 320, 325]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1482, 1715, 1810]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1782, 1804, 1818]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2149, 2174, 2181]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [942, 960, 997]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [987, 992, 1006]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [11242, 11385, 11503]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [830, 833, 855]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1173, 1184, 1378]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [853, 864, 895]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1081, 1111, 1512]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1205, 1219, 1676]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [915, 945, 945]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [183, 185, 203]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [235, 247, 249]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [435, 439, 451]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4469, 4507, 5423]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5041, 5049, 5049]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5646, 5659, 5664]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [117, 119, 123]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [128, 133, 177]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [753, 758, 902]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [338, 340, 431]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [450, 452, 452]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [440, 505, 533]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [161, 165, 188]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [184, 188, 209]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [210, 212, 254]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [397, 417, 473]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [491, 493, 524]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [537, 543, 543]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [192, 206, 207]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [259, 261, 263]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [291, 292, 305]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [210, 211, 226]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [223, 228, 229]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [276, 277, 286]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [202, 204, 210]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [230, 231, 278]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [404, 423, 430]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1874, 1972, 2208]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3400, 3427, 3622]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2381, 2405, 2437]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [79, 79, 83]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [88, 90, 91]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [248, 250, 259]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [475, 501, 647]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [683, 700, 706]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [762, 781, 820]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [950, 956, 1579]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1283, 1285, 1288]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1324, 1385, 1385]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [231, 233, 262]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [244, 253, 260]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [311, 334, 343]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [545, 551, 566]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [684, 693, 703]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [8037, 8098, 8145]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 1, "duration": [178589, 178642, 179092]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 1, "duration": [188, 191, 191]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 1, "duration": [32071, 32271, 33060]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 1, "duration": [9314, 9485, 10183]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 1, "duration": [215349, 218015, 223933]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 1, "duration": [249647, 256298, 263833]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1, "duration": [236142, 236932, 245700]}], "lucene-8.10.1": [{"query": "the", "tags": ["term"], "count": 1, "duration": [865, 886, 1142]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [186, 198, 198]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [237, 275, 353]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [502, 507, 537]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [126, 142, 163]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [144, 153, 465]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [373, 408, 455]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [344, 360, 431]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [452, 466, 481]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [501, 620, 897]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [280, 284, 363]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [361, 388, 398]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [549, 597, 898]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [918, 1036, 1060]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [877, 881, 889]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2770, 2930, 3310]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1300, 1376, 1379]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1275, 1392, 1412]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2509, 2536, 2550]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3243, 3471, 3931]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3889, 4135, 5190]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4975, 5208, 5277]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [122, 135, 198]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [157, 183, 281]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [303, 371, 390]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1077, 1082, 1178]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1163, 1277, 1407]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2374, 2428, 2470]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4660, 4712, 5185]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [11881, 12102, 13756]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [6497, 6807, 7086]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1373, 1431, 1602]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1809, 1809, 1859]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1816, 1841, 1883]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [638, 673, 700]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [675, 682, 732]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1334, 1336, 1461]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [466, 471, 516]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [530, 553, 557]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [882, 953, 971]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1460, 1467, 1488]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1431, 1457, 1641]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2657, 2762, 2818]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [520, 531, 551]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [570, 584, 596]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1088, 1107, 1182]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [300, 340, 615]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [255, 277, 280]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1188, 1208, 1252]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [216, 227, 320]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [244, 409, 520]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [633, 659, 689]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1739, 1799, 1868]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1709, 1775, 2360]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3242, 3282, 3408]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [288, 304, 409]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [355, 384, 506]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1282, 1316, 1332]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1431, 1444, 1550]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1860, 1893, 1976]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2507, 2530, 2732]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2291, 2315, 2358]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2179, 2215, 2469]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4076, 4128, 4865]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [939, 1033, 1036]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [580, 653, 658]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1461, 1484, 1589]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [436, 445, 457]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [451, 475, 494]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1261, 1268, 1347]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1962, 2016, 2079]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2124, 2124, 2163]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3507, 3750, 4069]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1658, 1739, 1866]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1607, 1657, 1676]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2815, 2892, 3144]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1546, 1550, 1593]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2150, 2168, 2198]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2852, 2863, 3024]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [557, 600, 639]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [542, 551, 590]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1193, 1264, 1347]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1156, 1178, 1385]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1284, 1290, 1384]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2730, 2732, 3025]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [537, 569, 649]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [720, 732, 757]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [807, 869, 923]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1262, 1303, 1331]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1469, 1522, 1790]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3214, 3372, 3374]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [496, 504, 544]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [578, 616, 1082]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1037, 1077, 1096]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [5036, 5255, 5263]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [9027, 9038, 9299]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [8725, 9032, 9262]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2170, 2214, 2225]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2127, 2145, 2676]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3645, 3702, 3761]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2683, 2819, 3085]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2995, 3024, 3354]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4685, 4936, 5055]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [139, 144, 187]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [207, 209, 215]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [289, 305, 412]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3258, 3312, 3322]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4185, 4269, 4762]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5783, 5996, 6008]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [7438, 7792, 7840]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [9027, 9202, 9202]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [14119, 14131, 14417]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2401, 2408, 2436]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3696, 3819, 4865]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4425, 4547, 4713]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [113, 134, 144]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [122, 140, 141]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [303, 317, 368]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [354, 369, 430]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [366, 388, 391]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1004, 1020, 1077]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [2396, 2528, 2829]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [4256, 4273, 5311]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2748, 2786, 3029]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3723, 3926, 3981]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5469, 5562, 5657]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5192, 5208, 5942]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [325, 330, 468]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [402, 417, 562]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [909, 965, 1088]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [714, 736, 1136]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [971, 995, 1013]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1161, 1212, 1256]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [10821, 11427, 11961]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [15819, 16443, 18238]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [15773, 15897, 16134]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [640, 646, 647]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [804, 851, 886]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1239, 1268, 1283]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1100, 1157, 1214]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1169, 1185, 1263]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2535, 2609, 2785]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1583, 1604, 1614]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1670, 1725, 1726]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3061, 3453, 3546]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [107, 121, 145]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [130, 141, 184]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [788, 790, 943]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [95, 106, 113]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [91, 103, 136]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [224, 244, 245]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [4595, 4657, 4898]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [5735, 5754, 6425]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [6242, 6305, 6535]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [290, 312, 357]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [404, 406, 422]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [513, 545, 555]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [750, 773, 780]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [734, 776, 908]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1291, 1391, 1432]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [5392, 5430, 5955]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [12216, 12857, 13140]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [6784, 7017, 8461]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [197, 202, 232]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [196, 200, 274]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [531, 549, 568]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [689, 717, 830]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1064, 1065, 1280]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1460, 1594, 1636]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [2993, 3104, 3137]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [5322, 5737, 5863]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [4052, 4144, 4195]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [685, 710, 897]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1040, 1056, 1214]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1266, 1276, 1372]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2067, 2142, 2420]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2661, 2689, 2770]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3054, 3220, 3436]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [144, 158, 160]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [133, 134, 136]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [360, 453, 461]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1222, 1272, 1765]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1461, 1529, 1549]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2402, 2618, 2663]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [101, 116, 128]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [204, 215, 284]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [218, 268, 340]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [553, 566, 607]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [692, 717, 809]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [930, 972, 1100]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2430, 2488, 2600]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3791, 3941, 4129]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4247, 4425, 4483]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [175, 182, 200]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [270, 360, 423]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [317, 342, 352]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [633, 664, 687]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [689, 727, 856]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [820, 861, 867]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [304, 328, 347]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [307, 320, 466]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [781, 872, 955]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [159, 176, 178]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [199, 230, 231]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [399, 439, 442]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1232, 1316, 1518]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1426, 1447, 1477]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1865, 1924, 1989]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [175, 324, 370]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [150, 163, 197]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [796, 802, 837]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1080, 1085, 1152]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1427, 1456, 1473]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1446, 1495, 1659]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1594, 1632, 1654]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1589, 1645, 1646]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [4458, 4595, 5805]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1753, 1791, 2032]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1714, 1725, 1831]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3426, 3455, 3639]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [317, 371, 467]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [405, 429, 433]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [578, 586, 619]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [553, 586, 743]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [647, 755, 6317]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1126, 1184, 1246]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [637, 665, 709]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [790, 802, 826]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1103, 1105, 1263]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [587, 590, 702]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [627, 643, 772]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1091, 1181, 1197]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1586, 1601, 2087]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1736, 1891, 2308]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2259, 2302, 2388]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3337, 3385, 3426]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3636, 3938, 4296]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [5392, 5406, 5804]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [959, 1098, 1198]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1168, 1227, 1364]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1615, 1684, 1807]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [7744, 7746, 8141]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [15321, 15458, 15747]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [13730, 13869, 14076]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2439, 2559, 2563]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2713, 2758, 2759]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4812, 4823, 5113]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [129, 131, 191]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [115, 123, 132]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [341, 386, 462]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1955, 2063, 2231]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4077, 4137, 4168]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3126, 3139, 3466]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [654, 667, 670]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [593, 636, 647]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1166, 1180, 1242]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1431, 1528, 1688]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1610, 1620, 1662]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2407, 2492, 2609]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [620, 628, 652]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [656, 809, 864]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [4749, 4846, 4974]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1496, 1635, 1745]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1675, 1774, 1844]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2325, 2425, 2453]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1139, 1252, 1277]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1201, 1226, 1370]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1578, 1599, 1600]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4890, 4906, 5048]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5637, 5696, 5732]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [9274, 9286, 9778]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [724, 734, 770]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [718, 728, 821]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1536, 1574, 1577]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [334, 334, 503]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [358, 380, 385]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [916, 931, 981]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [147, 161, 202]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [176, 231, 284]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1033, 1062, 1627]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [5560, 5761, 5953]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [9067, 9114, 9514]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [7078, 7223, 7507]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [169, 180, 183]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [188, 188, 228]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [415, 420, 424]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [451, 459, 481]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [530, 543, 614]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [867, 901, 943]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1777, 1847, 1898]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1966, 2111, 2565]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3242, 3296, 3506]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [3051, 3057, 3387]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [3783, 4252, 4288]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [5563, 5619, 5731]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [230, 232, 240]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [277, 278, 302]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [718, 784, 819]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [240, 253, 253]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [293, 297, 333]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2336, 2357, 2393]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [944, 1015, 1066]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1130, 1148, 1156]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1688, 1753, 1761]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [839, 874, 955]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [915, 946, 975]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1871, 1910, 1915]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [219, 231, 232]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [301, 314, 386]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [336, 342, 651]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [222, 268, 291]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [244, 257, 274]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [477, 514, 535]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [300, 322, 326]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [331, 348, 359]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [756, 776, 824]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4699, 4717, 5314]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [12864, 12930, 13779]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [6729, 6820, 7125]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [116, 127, 128]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [182, 197, 221]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [253, 260, 263]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1051, 1088, 1224]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1098, 1103, 1170]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1960, 2045, 2085]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [210, 211, 216]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [224, 225, 232]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [446, 466, 469]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [409, 430, 631]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [254, 263, 273]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [632, 694, 712]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [762, 839, 981]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [837, 919, 953]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1592, 1607, 1812]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [402, 408, 433]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [504, 545, 688]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [762, 828, 828]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [7289, 7335, 7752]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [7896, 7978, 8005]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [13351, 13527, 14408]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2185, 2211, 2451]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2378, 2428, 2686]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3189, 3268, 3733]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [708, 716, 728]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [721, 736, 791]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3688, 4129, 4200]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [253, 261, 278]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [271, 276, 280]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [531, 542, 736]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [93, 104, 104]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [103, 112, 220]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [287, 348, 361]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1858, 1859, 1970]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1935, 1983, 1999]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4629, 4651, 5329]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [287, 298, 335]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [309, 344, 539]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [574, 584, 590]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [334, 371, 609]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [337, 363, 393]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [515, 560, 725]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [372, 385, 395]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [468, 470, 526]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [700, 715, 728]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [876, 1115, 1676]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [811, 989, 1021]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1645, 1876, 1934]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [114, 120, 143]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [117, 161, 167]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [255, 263, 359]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [725, 752, 772]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [909, 951, 956]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1996, 2028, 2136]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1966, 2014, 2023]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3346, 3522, 3591]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2752, 2788, 2932]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2724, 2767, 3102]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2955, 2999, 3049]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [5051, 5558, 5783]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [468, 514, 552]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [495, 499, 538]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1099, 1170, 1175]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1509, 1631, 1782]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1624, 1651, 1712]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3799, 3818, 3945]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [134, 148, 155]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [159, 165, 174]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [287, 323, 499]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [359, 364, 384]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [474, 474, 770]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [749, 766, 857]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [448, 483, 509]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [683, 717, 746]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [731, 734, 832]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [381, 388, 404]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [579, 587, 599]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [586, 628, 716]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [433, 435, 623]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [584, 589, 592]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1881, 1935, 1937]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1783, 1823, 1951]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [12044, 12457, 12583]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1539, 1549, 1800]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [356, 357, 395]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [380, 412, 433]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [838, 912, 979]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [259, 264, 303]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [324, 332, 338]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [516, 567, 721]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [367, 369, 407]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [486, 491, 535]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1191, 1197, 1544]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2644, 2670, 2671]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3358, 3359, 3503]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4913, 5048, 5435]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [299, 565, 911]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [294, 295, 298]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [504, 544, 563]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [154, 155, 156]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [133, 144, 153]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [263, 266, 346]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [133, 142, 191]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [147, 165, 179]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [453, 643, 648]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [863, 932, 1446]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [904, 924, 1067]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1882, 1902, 1993]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [357, 398, 400]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [394, 418, 518]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [500, 527, 589]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [549, 569, 576]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [716, 721, 886]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [952, 955, 959]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3113, 3241, 3615]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4490, 4563, 4571]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3875, 4075, 4539]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [336, 352, 356]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [437, 475, 481]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [655, 681, 717]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [795, 867, 873]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [841, 843, 869]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [4754, 4795, 5185]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1173, 1202, 1374]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1433, 1458, 1759]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3224, 3287, 3793]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [749, 779, 885]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [844, 854, 916]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1696, 1706, 1985]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [484, 501, 572]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [538, 579, 605]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1153, 1184, 1238]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [127, 208, 228]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [168, 170, 181]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [656, 705, 916]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1088, 1121, 1272]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1315, 1360, 1394]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1948, 1987, 2089]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [889, 931, 1045]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1128, 1147, 1151]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1996, 2032, 2156]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [268, 275, 281]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [450, 477, 648]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [8154, 8416, 8597]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [371, 379, 394]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [490, 507, 638]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [606, 630, 1032]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1444, 1447, 1466]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1725, 1726, 1821]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2479, 2913, 3057]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1837, 1901, 2157]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1822, 1825, 1843]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3301, 3372, 3478]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1174, 1236, 1241]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1317, 1335, 1450]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [3883, 3952, 4001]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [557, 562, 643]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [672, 684, 705]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [852, 907, 918]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [156, 170, 196]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [204, 223, 230]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [364, 378, 412]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2306, 2381, 2491]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2427, 2442, 2451]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4437, 4739, 5080]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [116, 122, 246]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [119, 138, 141]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [622, 670, 709]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [218, 239, 257]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [255, 260, 336]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [445, 453, 467]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [991, 1016, 1178]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1224, 1270, 1274]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1650, 1721, 1843]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2398, 2424, 2445]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2577, 2641, 2717]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3789, 3864, 3920]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [196, 216, 262]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [250, 286, 289]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [466, 486, 503]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [524, 549, 558]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [692, 698, 700]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [821, 836, 879]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [5242, 5254, 5288]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [8888, 8962, 9243]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [6099, 6362, 6536]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [701, 702, 833]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [706, 737, 754]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1279, 1363, 1366]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [518, 549, 596]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [507, 569, 639]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1139, 1156, 1362]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [989, 1017, 1369]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1111, 1134, 1143]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1719, 1916, 1973]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [202, 209, 230]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [208, 235, 256]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [433, 450, 518]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3742, 3773, 4158]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [5539, 5541, 5762]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [5154, 5241, 5507]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [798, 804, 935]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [923, 937, 978]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1471, 1509, 1591]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [917, 917, 1016]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1077, 1078, 1102]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1376, 1386, 1480]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [156, 172, 222]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [230, 281, 329]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [362, 366, 368]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [5390, 5440, 5613]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [5763, 5849, 5962]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [10688, 10895, 10944]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [492, 509, 534]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [521, 528, 539]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1472, 1498, 1551]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1044, 1055, 1146]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1165, 1230, 1253]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1742, 1812, 1817]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3767, 4083, 4658]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [6282, 6284, 6605]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [6281, 6464, 6544]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [348, 354, 376]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [321, 362, 363]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [630, 636, 651]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3852, 3926, 4249]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [7978, 8320, 8470]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5426, 5865, 6303]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [644, 693, 713]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [806, 815, 897]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1088, 1103, 1284]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [125, 143, 144]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [153, 172, 317]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1312, 1359, 1581]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [657, 697, 937]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [848, 850, 898]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1541, 1570, 1719]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [447, 450, 457]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [593, 641, 673]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1398, 1489, 1492]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [151, 181, 252]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [256, 270, 328]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [310, 357, 372]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [438, 451, 719]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [559, 586, 652]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [890, 911, 931]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [86, 101, 114]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [108, 162, 237]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [95, 108, 126]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1311, 1329, 1481]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1352, 1387, 1426]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4665, 4670, 4775]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1160, 1164, 1171]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1253, 1312, 1481]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2795, 2851, 3304]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [91, 106, 112]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [95, 96, 134]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [354, 563, 618]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [588, 618, 682]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [748, 775, 938]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [958, 1009, 1063]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [799, 804, 899]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [715, 728, 735]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1134, 1152, 1153]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [794, 832, 921]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [826, 915, 1037]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1648, 1656, 1926]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1236, 1292, 1398]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1289, 1303, 1580]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2299, 2353, 2557]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [835, 858, 1080]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [980, 993, 1062]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1835, 1837, 1865]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [328, 332, 337]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [409, 409, 424]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [530, 532, 540]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [317, 336, 372]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [365, 369, 415]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [681, 688, 702]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1932, 1959, 2623]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [3618, 3622, 3638]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2858, 3175, 3328]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1736, 1752, 2079]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2614, 2629, 2651]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2664, 2688, 2968]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [569, 611, 613]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [939, 943, 1386]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1506, 1554, 1572]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [85, 102, 131]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [102, 109, 120]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [411, 438, 497]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2120, 2155, 2163]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2583, 2600, 2662]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3779, 3899, 4291]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [247, 277, 282]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [297, 356, 418]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [489, 540, 583]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [211, 217, 228]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [253, 262, 264]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [426, 433, 474]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2328, 2403, 2548]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2616, 2640, 2821]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4727, 4818, 5099]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [363, 383, 393]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [514, 532, 600]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [710, 726, 894]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [167, 191, 242]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [210, 229, 281]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [667, 693, 794]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1033, 1127, 1160]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1229, 1333, 1461]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1943, 1968, 1985]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [633, 634, 650]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [684, 699, 753]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1258, 1291, 1291]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2131, 2192, 2230]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1894, 1933, 2013]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4101, 4131, 4221]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [936, 1083, 1101]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1178, 1197, 1343]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1504, 1626, 1657]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [462, 534, 665]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [536, 575, 597]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [951, 956, 1013]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [543, 562, 570]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [706, 729, 749]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [861, 978, 1107]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [902, 903, 909]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1001, 1033, 1084]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2354, 2371, 2545]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2162, 2262, 2319]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2287, 2382, 2862]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2657, 2664, 2684]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [214, 261, 375]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [220, 222, 275]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [574, 684, 705]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [603, 614, 633]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [695, 729, 731]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [855, 898, 942]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2530, 2543, 2556]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2872, 2918, 3007]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4472, 4533, 4618]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2794, 2875, 2915]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4926, 5055, 5226]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4210, 4282, 4477]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [2308, 2390, 2476]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [2567, 2619, 2751]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [6194, 6419, 6775]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [205, 215, 229]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [235, 255, 369]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1253, 1254, 1600]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1103, 1123, 1159]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1499, 1518, 1559]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2441, 2468, 2484]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [243, 287, 370]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [342, 342, 355]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [383, 487, 495]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [224, 246, 260]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [239, 270, 331]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [549, 554, 619]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [392, 463, 557]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [494, 586, 614]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [643, 681, 954]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1379, 1394, 1515]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [8522, 8525, 8623]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1469, 1492, 1665]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [168, 179, 183]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [201, 215, 340]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [530, 706, 783]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1011, 1020, 1055]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1347, 1376, 1383]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1280, 1313, 1564]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [723, 742, 810]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [991, 1054, 1230]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2054, 2108, 2162]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [98, 125, 164]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [132, 198, 280]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [227, 267, 294]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [577, 585, 743]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [593, 605, 624]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1026, 1055, 1123]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3693, 3837, 4068]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3660, 3695, 3828]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [7349, 7372, 7658]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2471, 2512, 2826]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3129, 3249, 3373]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4542, 4579, 5123]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1671, 1706, 1732]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2520, 2561, 2616]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2089, 2149, 2218]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [5250, 5373, 5583]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [12428, 12623, 12655]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [7894, 7909, 8759]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [767, 801, 838]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [809, 850, 866]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1221, 1241, 1247]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [809, 820, 879]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [971, 983, 1005]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1470, 1509, 1540]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [274, 294, 303]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [361, 378, 382]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [550, 596, 629]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2294, 2338, 2348]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2278, 2315, 2338]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4049, 4098, 4295]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [279, 294, 309]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [382, 412, 424]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [500, 502, 505]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [138, 138, 143]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [193, 232, 483]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [402, 420, 421]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1461, 1462, 1563]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1606, 1619, 1713]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2119, 2128, 2299]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [5389, 5494, 5846]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [9330, 9546, 9660]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [7645, 7948, 8300]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [158, 160, 175]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [176, 177, 317]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [708, 746, 770]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2536, 2547, 2707]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3855, 3903, 4391]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4089, 4095, 4153]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [152, 159, 162]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [183, 225, 228]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [897, 902, 1105]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [486, 489, 499]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [535, 550, 571]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [919, 972, 985]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [102, 103, 115]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [99, 116, 119]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [312, 332, 464]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1952, 2015, 2034]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1757, 1837, 2273]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2610, 2647, 2829]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [167, 184, 203]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [185, 188, 194]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [388, 403, 458]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [551, 567, 723]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [768, 819, 837]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1118, 1138, 1292]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [482, 531, 536]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [667, 762, 785]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1927, 1995, 1996]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [473, 549, 562]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [514, 544, 550]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1227, 1232, 1458]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1523, 1541, 1549]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1857, 1895, 2198]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [6887, 6911, 7013]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [172, 200, 250]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [212, 244, 252]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [378, 401, 427]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [111, 127, 141]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [174, 198, 199]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [326, 347, 359]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3694, 3697, 3718]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4757, 4760, 4825]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [6308, 6343, 6807]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3295, 3379, 3390]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3129, 3165, 3593]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4552, 4579, 4847]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [637, 667, 804]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [652, 751, 812]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2448, 2551, 2657]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [5754, 6104, 11583]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [6732, 6967, 8281]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [11480, 11793, 11929]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [172, 184, 223]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [144, 161, 166]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [359, 369, 418]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1383, 1496, 1706]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1570, 1582, 1594]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1988, 2071, 2264]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [731, 736, 743]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [900, 916, 962]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1067, 1235, 1685]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [898, 943, 961]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1184, 1221, 1259]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1226, 1237, 1244]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [161, 166, 172]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [156, 171, 187]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [404, 417, 508]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3334, 3432, 3506]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [8116, 8157, 8497]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4508, 4604, 4620]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [670, 717, 742]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [953, 970, 1017]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1007, 1062, 1088]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [689, 695, 764]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [827, 834, 1177]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1908, 1918, 2426]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [24432, 24542, 26581]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [91614, 92130, 94752]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [34226, 35311, 35851]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [107, 117, 121]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [126, 141, 159]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [194, 253, 268]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [551, 593, 623]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [817, 829, 1002]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [953, 964, 1001]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1420, 1548, 2116]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1508, 1537, 1541]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2009, 2159, 2242]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [792, 803, 1103]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1507, 1515, 1572]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2162, 2203, 2307]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [408, 430, 444]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [545, 551, 579]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [923, 936, 960]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [243, 251, 352]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [276, 280, 446]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [568, 600, 606]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [119, 158, 269]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [141, 186, 207]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [426, 464, 476]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [302, 314, 380]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [364, 368, 370]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [505, 537, 659]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [353, 401, 409]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [371, 395, 442]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [694, 728, 742]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2947, 2954, 3134]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3031, 3077, 3135]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5859, 6193, 6317]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1808, 1894, 1997]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1805, 1824, 2012]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [19457, 19696, 19798]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1777, 1796, 1822]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2185, 2439, 2557]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2671, 2730, 2856]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1483, 1542, 1575]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1530, 1567, 1758]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2639, 2731, 2983]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [422, 426, 556]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [510, 536, 563]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1140, 1178, 1213]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [6931, 7012, 7323]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [6809, 6835, 6876]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [14971, 15584, 16428]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [247, 256, 286]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [254, 267, 275]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1959, 2003, 2234]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [609, 676, 681]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [705, 716, 777]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1117, 1139, 1196]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [284, 315, 319]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [383, 428, 498]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [584, 618, 687]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [732, 740, 768]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [843, 858, 920]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1230, 1231, 1348]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [476, 520, 532]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [601, 628, 812]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [818, 879, 911]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [329, 333, 339]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [357, 383, 443]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [722, 744, 850]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [392, 435, 453]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [507, 558, 573]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1112, 1149, 1156]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4929, 5032, 5330]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5648, 5966, 6592]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [7087, 7382, 7582]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [182, 191, 208]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [223, 261, 360]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5537, 5646, 5863]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1033, 1052, 1095]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1066, 1087, 1253]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1744, 1782, 1826]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1685, 1802, 1837]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1608, 1624, 1759]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3100, 3114, 3155]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [357, 371, 473]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [385, 386, 408]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [851, 879, 889]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1395, 1414, 1466]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1608, 1669, 1755]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [20275, 20625, 21568]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 1, "duration": [51539, 51774, 53224]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 1, "duration": [686, 744, 864]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 1, "duration": [1336, 1380, 1383]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 1, "duration": [6103, 6154, 6709]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 1, "duration": [667, 929, 948]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 1, "duration": [1421, 1469, 1494]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1, "duration": [6120, 6207, 6258]}]}, "TOP_10_COUNT": {"tantivy-0.18": [{"query": "the", "tags": ["term"], "count": 4168064, "duration": [10935, 11197, 11481]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 79, "duration": [121, 126, 149]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [128, 128, 130]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 15456, "duration": [305, 329, 366]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 195, "duration": [60, 61, 62]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 110, "duration": [76, 79, 93]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 4173, "duration": [163, 167, 197]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 856, "duration": [122, 139, 143]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 112, "duration": [189, 194, 197]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 104150, "duration": [1336, 1395, 1459]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [140, 141, 174]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [201, 215, 220]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 54291, "duration": [977, 1011, 1078]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 266, "duration": [482, 482, 490]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 18, "duration": [520, 521, 529]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 195119, "duration": [1902, 1987, 2073]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2173, "duration": [848, 848, 920]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [872, 882, 884]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 167943, "duration": [1757, 1764, 1927]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14165, "duration": [1297, 1346, 1380]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [2311, 2328, 2334]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 612165, "duration": [4516, 4690, 4809]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 85, "duration": [55, 58, 61]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 56, "duration": [72, 75, 112]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 7747, "duration": [213, 242, 271]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 693, "duration": [577, 589, 602]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [634, 660, 672]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 397912, "duration": [3512, 3629, 3695]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7346, "duration": [1736, 1760, 1967]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 201, "duration": [2513, 2584, 2655]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 4173861, "duration": [28978, 30435, 30641]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4496, "duration": [387, 388, 393]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 307, "duration": [752, 782, 809]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 454176, "duration": [3625, 3697, 3833]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 161, "duration": [245, 253, 356]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [260, 267, 340]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 336807, "duration": [2977, 3017, 3037]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1055, "duration": [236, 242, 247]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 177, "duration": [327, 328, 330]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 61359, "duration": [923, 947, 1930]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3760, "duration": [743, 763, 857]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 252, "duration": [1047, 1066, 1106]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 151582, "duration": [1557, 1559, 1569]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 569, "duration": [321, 328, 353]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [363, 370, 378]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 86776, "duration": [1170, 1204, 1448]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [88, 89, 90]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [84, 90, 116]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 249193, "duration": [2263, 2279, 2349]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 81, "duration": [131, 133, 135]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [141, 148, 203]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 20969, "duration": [408, 525, 703]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4617, "duration": [884, 887, 963]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 141, "duration": [1272, 1294, 1387]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 194083, "duration": [1807, 2019, 2022]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 107, "duration": [119, 120, 127]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 64, "duration": [151, 155, 156]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1192562, "duration": [8339, 8465, 8554]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1239, "duration": [619, 623, 670]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 566, "duration": [1029, 1035, 1041]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 510849, "duration": [3982, 3993, 3995]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7014, "duration": [1261, 1375, 1543]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 329, "duration": [1751, 1775, 1796]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 170364, "duration": [1670, 1685, 1713]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48653, "duration": [1177, 1179, 1212]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 44879, "duration": [3942, 4001, 4078]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 151349, "duration": [1645, 1656, 1693]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 137, "duration": [243, 243, 257]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 53, "duration": [267, 269, 273]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 95654, "duration": [1509, 1584, 1648]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7387, "duration": [952, 959, 994]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 302, "duration": [1508, 1510, 1520]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 260381, "duration": [2240, 2277, 2773]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5040, "duration": [847, 899, 1084]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 70, "duration": [1170, 1188, 1203]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 217122, "duration": [2001, 2047, 2118]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1917, "duration": [700, 715, 774]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 94, "duration": [930, 964, 979]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 584269, "duration": [4578, 4630, 4972]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 733, "duration": [384, 387, 389]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 76, "duration": [372, 396, 401]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 46081, "duration": [818, 869, 955]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 421, "duration": [644, 658, 675]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 61, "duration": [710, 748, 765]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 401520, "duration": [3284, 3417, 3546]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1187, "duration": [182, 190, 191]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [328, 332, 340]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 160168, "duration": [1577, 1601, 1626]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 475, "duration": [688, 693, 705]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [781, 781, 809]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 402259, "duration": [3421, 3633, 3637]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 604, "duration": [285, 285, 289]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [350, 354, 359]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 99117, "duration": [1185, 1205, 1213]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65770, "duration": [3326, 3333, 3380]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [7402, 7458, 7502]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 825043, "duration": [6029, 6037, 6118]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6146, "duration": [1033, 1052, 1092]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1478, 1517, 1537]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 298137, "duration": [2487, 2508, 2529]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 13581, "duration": [1323, 1347, 1473]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1894, "duration": [2446, 2457, 2461]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 229696, "duration": [2103, 2106, 2125]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 314, "duration": [70, 79, 101]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 288, "duration": [104, 105, 121]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 10040, "duration": [304, 336, 469]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6957, "duration": [1716, 1755, 1794]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [2136, 2141, 2143]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 702120, "duration": [5389, 5419, 5451]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13996, "duration": [3400, 3456, 3832]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [4573, 4611, 4619]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1251867, "duration": [9630, 9686, 9729]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4268, "duration": [1327, 1362, 1490]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 440, "duration": [1790, 1843, 1914]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 909970, "duration": [6690, 6707, 6757]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 23, "duration": [49, 49, 51]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [50, 52, 57]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 10684, "duration": [259, 295, 299]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 157, "duration": [222, 228, 239]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [247, 252, 265]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 35325, "duration": [652, 700, 1031]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1316, "duration": [725, 743, 991]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1156, "duration": [1960, 1965, 2211]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269120, "duration": [39381, 41417, 41605]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 43372, "duration": [4093, 4132, 4163]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15089, "duration": [11123, 11525, 11849]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806414, "duration": [27744, 29106, 29228]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 239, "duration": [108, 109, 121]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 124, "duration": [156, 156, 171]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 333268, "duration": [2657, 2696, 2698]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 618, "duration": [252, 276, 289]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 168, "duration": [361, 363, 375]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970283, "duration": [7463, 7465, 7511]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 44521, "duration": [4665, 4749, 4930]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 4100, "duration": [9025, 9111, 9342]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 3808757, "duration": [27626, 29147, 29508]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 960, "duration": [334, 344, 363]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 244, "duration": [467, 494, 521]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 134727, "duration": [1479, 1590, 1697]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1490, "duration": [743, 750, 836]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [833, 844, 869]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 106587, "duration": [1530, 1568, 1693]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3574, "duration": [1082, 1149, 1158]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1021, "duration": [1186, 1194, 1240]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 146818, "duration": [1544, 1568, 1713]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 20, "duration": [38, 43, 44]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [44, 46, 47]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 82708, "duration": [1202, 1242, 1335]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [46, 49, 63]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [44, 46, 50]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1791, "duration": [104, 113, 139]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 3397, "duration": [1605, 1625, 1751]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 12, "duration": [1912, 1951, 2040]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4053765, "duration": [34755, 36833, 36888]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 429, "duration": [88, 89, 89]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 41, "duration": [161, 162, 167]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 130601, "duration": [1401, 1436, 1613]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2860, "duration": [490, 502, 517]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 828, "duration": [509, 514, 518]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 54702, "duration": [999, 1038, 1101]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10899, "duration": [2241, 2264, 2287]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 922, "duration": [3177, 3184, 3205]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806986, "duration": [27172, 28832, 29371]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [109, 114, 117]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [114, 121, 123]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 11759, "duration": [255, 271, 301]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 443, "duration": [309, 313, 326]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [436, 445, 449]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798567, "duration": [25857, 26785, 26959]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1994, "duration": [1048, 1104, 1109]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1444, "duration": [2357, 2383, 2444]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269267, "duration": [39513, 41150, 41342]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 418, "duration": [328, 343, 343]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 224, "duration": [532, 536, 536]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798846, "duration": [25972, 27334, 27440]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10806, "duration": [810, 895, 976]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 831, "duration": [1575, 1595, 1637]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 401948, "duration": [3175, 3245, 3319]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 90, "duration": [70, 72, 73]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [69, 71, 72]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7731, "duration": [226, 241, 273]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3336, "duration": [662, 725, 821]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [915, 929, 939]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 237265, "duration": [2109, 2121, 2244]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48, "duration": [47, 49, 60]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [54, 55, 58]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 5320, "duration": [160, 169, 189]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1751, "duration": [222, 230, 267]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1335, "duration": [459, 469, 487]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 79894, "duration": [1122, 1182, 1224]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 19247, "duration": [2490, 2525, 2534]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 626, "duration": [3299, 3350, 3364]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 301066, "duration": [2542, 2578, 2617]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [78, 79, 80]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 81, "duration": [109, 120, 141]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 21776, "duration": [479, 557, 824]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3980, "duration": [148, 149, 150]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3891, "duration": [413, 493, 627]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 43534, "duration": [769, 907, 932]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 109, "duration": [142, 146, 152]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 97, "duration": [162, 162, 165]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 47760, "duration": [771, 784, 1339]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 61, "duration": [85, 87, 91]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [102, 108, 138]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 14465, "duration": [331, 418, 420]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2638, "duration": [594, 599, 637]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 60, "duration": [688, 726, 729]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 301693, "duration": [2500, 2588, 2825]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 12, "duration": [56, 61, 71]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [47, 51, 64]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 57879, "duration": [932, 957, 1031]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1238, "duration": [296, 297, 298]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 391, "duration": [587, 637, 924]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970192, "duration": [7373, 7481, 7561]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 415, "duration": [674, 687, 816]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [923, 936, 945]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4316960, "duration": [42105, 44071, 44402]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3896, "duration": [949, 987, 1043]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1242, 1333, 1337]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 153516, "duration": [1650, 1709, 1843]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 896, "duration": [138, 148, 153]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 475, "duration": [223, 228, 236]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 36406, "duration": [764, 787, 818]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1044, "duration": [326, 331, 340]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 74, "duration": [408, 414, 433]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 52377, "duration": [930, 1363, 1414]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1550, "duration": [275, 283, 345]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 131, "duration": [397, 403, 413]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 150258, "duration": [1632, 1632, 1886]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1246, "duration": [433, 434, 449]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 235, "duration": [402, 410, 418]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 66350, "duration": [1129, 1418, 1952]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5054, "duration": [654, 670, 839]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [953, 981, 986]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 310479, "duration": [2616, 2717, 3337]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 24403, "duration": [1618, 1817, 2227]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12115, "duration": [3676, 3747, 3867]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 503137, "duration": [3994, 4227, 4436]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2540, "duration": [402, 419, 458]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 59, "duration": [640, 649, 678]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 200883, "duration": [2066, 2159, 2451]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 96618, "duration": [7709, 7779, 7814]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1140, "duration": [14271, 14358, 14460]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1038231, "duration": [7638, 7914, 7922]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5964, "duration": [1253, 1286, 1449]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 256, "duration": [1757, 1760, 1768]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 402607, "duration": [3156, 3257, 3482]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 142, "duration": [40, 44, 47]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 142, "duration": [49, 50, 53]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 10007, "duration": [298, 306, 321]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2001, "duration": [893, 941, 1046]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [1194, 1202, 1211]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168649, "duration": [28349, 29830, 30062]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2315, "duration": [305, 313, 315]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [463, 481, 497]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 51200, "duration": [822, 847, 1103]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6825, "duration": [769, 874, 1174]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2155, "duration": [1247, 1270, 1282]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 114383, "duration": [1322, 1328, 1355]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 47, "duration": [378, 382, 405]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 33, "duration": [575, 584, 592]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4068900, "duration": [38981, 41259, 41367]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4125, "duration": [615, 654, 1000]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [946, 988, 1002]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 272980, "duration": [2307, 2322, 2322]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4710, "duration": [374, 379, 489]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2046, "duration": [725, 744, 769]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 193597, "duration": [1856, 1869, 1970]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8204, "duration": [2394, 2408, 2703]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [3274, 3293, 3298]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 854242, "duration": [6302, 6339, 6380]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1608, "duration": [420, 424, 449]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [527, 540, 553]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 66857, "duration": [1091, 1134, 1316]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 328, "duration": [209, 210, 224]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 97, "duration": [229, 233, 235]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 32425, "duration": [856, 857, 878]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [46, 46, 68]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [55, 59, 62]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 39428, "duration": [966, 1007, 1634]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10203, "duration": [1596, 1609, 1810]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [2412, 2426, 2481]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 2470107, "duration": [19848, 19928, 20124]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 55, "duration": [54, 59, 62]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 43, "duration": [63, 63, 65]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 58784, "duration": [915, 917, 919]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 901, "duration": [241, 245, 249]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 213, "duration": [320, 328, 360]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 73481, "duration": [1045, 1109, 1633]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7776, "duration": [882, 915, 916]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3077, "duration": [1468, 1549, 1604]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 127400, "duration": [1459, 1542, 1752]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1282, "duration": [1117, 1145, 1154]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 31, "duration": [1532, 1550, 1580]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 961109, "duration": [7663, 7716, 7932]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 155, "duration": [79, 80, 83]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 45, "duration": [111, 120, 121]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 280642, "duration": [2385, 2413, 2443]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 51, "duration": [88, 91, 96]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 35, "duration": [106, 110, 110]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 102668, "duration": [1275, 1283, 1310]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1997, "duration": [462, 498, 598]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 93, "duration": [645, 662, 664]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 212065, "duration": [1934, 1976, 2048]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1613, "duration": [536, 542, 581]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [642, 657, 677]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 109701, "duration": [1465, 1571, 1584]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 593, "duration": [66, 67, 71]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 373, "duration": [122, 123, 157]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 32570, "duration": [629, 648, 950]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 358, "duration": [105, 105, 134]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 89, "duration": [134, 138, 143]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 29690, "duration": [672, 712, 759]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [185, 203, 219]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [192, 196, 203]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 23089, "duration": [471, 525, 533]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7853, "duration": [1845, 1893, 2353]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 140, "duration": [2568, 2632, 2680]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169493, "duration": [29135, 30577, 30621]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 207, "duration": [63, 65, 81]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [112, 121, 132]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 8017, "duration": [208, 209, 226]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3053, "duration": [532, 547, 590]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 100, "duration": [769, 770, 792]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 132425, "duration": [1414, 1486, 1734]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 357, "duration": [106, 107, 123]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 328, "duration": [149, 150, 155]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 10614, "duration": [320, 377, 419]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 158, "duration": [221, 237, 275]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [152, 155, 163]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 22473, "duration": [411, 432, 656]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1927, "duration": [431, 439, 461]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 681, "duration": [601, 607, 621]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 88332, "duration": [1143, 1234, 1632]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 644, "duration": [158, 171, 187]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 73, "duration": [246, 257, 302]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 103711, "duration": [1526, 1541, 1565]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13480, "duration": [4066, 4122, 4506]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 969, "duration": [5147, 5157, 5165]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 918169, "duration": [6762, 6871, 6942]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 8141, "duration": [868, 993, 1326]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1392, 1466, 1481]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 375689, "duration": [2977, 2989, 2996]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 278, "duration": [386, 401, 426]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [424, 430, 441]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 212074, "duration": [1975, 1991, 2053]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 266, "duration": [134, 140, 154]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 135, "duration": [160, 165, 171]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 16569, "duration": [340, 365, 576]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 22, "duration": [54, 55, 56]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [57, 57, 63]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 6674, "duration": [253, 267, 336]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1329, "duration": [1115, 1139, 1142]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 42, "duration": [1245, 1248, 1252]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 281073, "duration": [2541, 2545, 2711]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 240, "duration": [146, 153, 156]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [167, 174, 181]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 38213, "duration": [1020, 1045, 1081]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 867, "duration": [150, 157, 184]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [219, 228, 229]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 28879, "duration": [825, 898, 906]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 406, "duration": [122, 124, 125]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 318, "duration": [189, 197, 197]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 345824, "duration": [2724, 2732, 2812]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1913, "duration": [473, 476, 546]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 171, "duration": [606, 634, 643]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 70020, "duration": [991, 1209, 1348]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 84, "duration": [47, 48, 78]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [53, 53, 66]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 10103, "duration": [222, 227, 237]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 444, "duration": [422, 423, 441]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [482, 492, 498]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 165540, "duration": [1822, 1901, 2238]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1457, "duration": [691, 693, 708]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 131, "duration": [1112, 1123, 1128]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 4174359, "duration": [28837, 30408, 30538]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11192, "duration": [1416, 1443, 1475]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [2310, 2365, 2374]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 264631, "duration": [2378, 2421, 2520]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 466, "duration": [302, 307, 312]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [344, 345, 357]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 55152, "duration": [919, 926, 1058]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1061, "duration": [1073, 1116, 1134]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 74, "duration": [1080, 1087, 1107]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 194085, "duration": [1915, 2009, 2057]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 164, "duration": [53, 54, 57]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 121, "duration": [78, 83, 96]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 12785, "duration": [347, 438, 500]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 290, "duration": [146, 155, 157]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 277, "duration": [238, 244, 245]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 352602, "duration": [2903, 3098, 3253]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1111, "duration": [135, 137, 164]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 963, "duration": [269, 273, 274]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 162074, "duration": [1731, 1768, 1888]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 608, "duration": [161, 165, 185]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 485, "duration": [259, 262, 266]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 231765, "duration": [2221, 2232, 2255]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 122, "duration": [166, 168, 179]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 10, "duration": [199, 203, 211]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 217412, "duration": [2163, 2234, 2300]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 118291, "duration": [3297, 3310, 3321]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21737, "duration": [33609, 33687, 33823]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168234, "duration": [28474, 29554, 29618]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 367, "duration": [218, 222, 224]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [252, 254, 269]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 33310, "duration": [612, 670, 781]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 192, "duration": [134, 138, 147]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [160, 161, 163]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 46274, "duration": [789, 815, 1020]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 180, "duration": [131, 138, 139]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 143, "duration": [173, 182, 184]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 268624, "duration": [2310, 2344, 2368]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2130, "duration": [1290, 1365, 1383]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1490, 1539, 1566]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 2372213, "duration": [17179, 18230, 18244]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 248, "duration": [136, 141, 143]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 68, "duration": [150, 153, 155]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 47084, "duration": [936, 1003, 1170]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [58, 63, 63]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 226, "duration": [70, 74, 102]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 4838, "duration": [179, 187, 189]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 78, "duration": [59, 63, 66]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [64, 67, 92]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 17211, "duration": [560, 571, 597]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1532, "duration": [545, 547, 624]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 173, "duration": [646, 663, 666]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 76229, "duration": [1112, 1205, 1222]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2422, "duration": [104, 106, 178]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2381, "duration": [255, 266, 270]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 6515, "duration": [179, 187, 223]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1633, "duration": [244, 255, 257]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 123, "duration": [381, 384, 393]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 73305, "duration": [997, 1298, 1373]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4110, "duration": [985, 1056, 1080]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 60, "duration": [1393, 1452, 1465]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 2315795, "duration": [17652, 18581, 18654]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [147, 161, 171]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [237, 237, 271]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 92901, "duration": [1164, 1269, 1321]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 131, "duration": [428, 433, 440]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [456, 458, 474]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 226887, "duration": [2464, 2549, 2603]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1539, "duration": [598, 604, 653]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 79, "duration": [780, 791, 918]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 322018, "duration": [2782, 2952, 3045]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1358, "duration": [466, 474, 485]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [567, 574, 576]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 68175, "duration": [1157, 1361, 1618]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 813, "duration": [286, 295, 309]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 67, "duration": [352, 364, 374]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 62207, "duration": [1094, 1106, 1497]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [65, 74, 108]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [55, 75, 89]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 33193, "duration": [588, 622, 756]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3401, "duration": [755, 758, 782]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 821, "duration": [947, 958, 964]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 134076, "duration": [1476, 1584, 2066]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2416, "duration": [552, 587, 615]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [740, 744, 754]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 105084, "duration": [1240, 1246, 1247]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 162, "duration": [164, 165, 170]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [417, 431, 488]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168064, "duration": [28005, 29738, 30139]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 361, "duration": [117, 134, 166]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [191, 199, 207]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 167104, "duration": [1780, 1783, 1822]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 679, "duration": [529, 539, 549]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [572, 591, 602]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 730213, "duration": [5525, 5574, 5817]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5744, "duration": [892, 962, 1061]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [1302, 1329, 1335]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 222790, "duration": [2020, 2022, 2035]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 377, "duration": [493, 510, 516]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 16, "duration": [611, 626, 697]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 774500, "duration": [6256, 6650, 6800]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 639, "duration": [191, 193, 199]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [302, 315, 322]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 188645, "duration": [1899, 1994, 2147]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 138, "duration": [109, 116, 125]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [85, 85, 87]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 14092, "duration": [432, 441, 442]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5577, "duration": [1243, 1257, 1354]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [1618, 1656, 1660]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 310569, "duration": [2580, 2605, 2610]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 29, "duration": [42, 42, 46]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [44, 44, 47]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 14156, "duration": [351, 358, 393]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 144, "duration": [78, 79, 79]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [106, 111, 112]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 69112, "duration": [1048, 1060, 1106]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2936, "duration": [425, 434, 590]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 611, "duration": [657, 664, 727]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 192280, "duration": [1814, 1823, 1900]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9630, "duration": [980, 1014, 1200]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 181, "duration": [1631, 1648, 1655]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 389360, "duration": [3036, 3055, 3056]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 490, "duration": [94, 96, 96]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 414, "duration": [149, 149, 158]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 11304, "duration": [394, 422, 431]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 431, "duration": [179, 180, 183]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 115, "duration": [295, 315, 372]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 308550, "duration": [2571, 2705, 2806]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6560, "duration": [1422, 1437, 1871]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 16, "duration": [2178, 2197, 2222]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 4014085, "duration": [29352, 30896, 30971]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1218, "duration": [352, 357, 400]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [424, 433, 437]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 119020, "duration": [1400, 1446, 1449]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 531, "duration": [302, 334, 337]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 82, "duration": [348, 350, 365]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 43329, "duration": [773, 777, 924]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2111, "duration": [466, 479, 479]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [637, 658, 660]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 159993, "duration": [1582, 1594, 1817]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 370, "duration": [119, 130, 133]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [137, 140, 141]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 11717, "duration": [424, 447, 455]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 25282, "duration": [1362, 1377, 1459]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 210, "duration": [3294, 3326, 3336]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 909593, "duration": [6424, 6661, 7091]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 350, "duration": [293, 304, 310]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 141, "duration": [373, 374, 378]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 758590, "duration": [5708, 5811, 6293]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1273, "duration": [274, 298, 308]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [497, 506, 512]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 349637, "duration": [2844, 3003, 3007]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 220, "duration": [76, 81, 104]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 206, "duration": [95, 97, 97]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 7958, "duration": [213, 213, 220]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 30970, "duration": [3331, 3403, 3525]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 272, "duration": [5211, 5414, 5446]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 446943, "duration": [3472, 3481, 3661]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 112, "duration": [350, 354, 355]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [335, 339, 346]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 51473, "duration": [1331, 1349, 1461]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1763, "duration": [582, 590, 608]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [596, 641, 661]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 266528, "duration": [2258, 2267, 2289]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5003, "duration": [1788, 1846, 1908]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [1905, 1929, 1960]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980371, "duration": [27572, 28474, 28790]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [176, 180, 182]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 158, "duration": [219, 225, 225]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 21196, "duration": [410, 411, 461]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5094, "duration": [1728, 1895, 1902]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 419, "duration": [2122, 2179, 2278]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169609, "duration": [28619, 30261, 30416]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1216, "duration": [266, 271, 280]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 50, "duration": [380, 407, 409]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 196687, "duration": [1822, 1826, 1854]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 56, "duration": [35, 35, 43]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 53, "duration": [54, 56, 57]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 144768, "duration": [1452, 1525, 1968]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [247, 255, 279]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [262, 265, 268]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 727128, "duration": [5523, 5638, 5881]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 176, "duration": [202, 208, 221]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [418, 424, 428]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168609, "duration": [28394, 30512, 30540]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 521, "duration": [59, 61, 96]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 516, "duration": [101, 104, 146]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 11727, "duration": [280, 285, 417]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [216, 223, 226]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [306, 327, 353]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 100754, "duration": [1236, 1259, 1279]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [32, 32, 66]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 35, "duration": [35, 36, 39]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 63, "duration": [36, 36, 37]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 425, "duration": [754, 761, 771]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [834, 836, 842]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 279042, "duration": [2725, 2736, 2934]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 757, "duration": [648, 664, 702]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [738, 738, 749]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 292410, "duration": [2579, 2696, 2805]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 74, "duration": [38, 39, 41]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 52, "duration": [63, 63, 64]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1372, "duration": [112, 132, 186]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1159, "duration": [241, 244, 251]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 120, "duration": [342, 355, 428]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 146946, "duration": [1470, 1507, 1706]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6552, "duration": [361, 434, 439]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 6339, "duration": [611, 611, 624]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 63852, "duration": [919, 954, 1024]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1950, "duration": [490, 525, 552]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [616, 646, 649]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 67801, "duration": [1334, 1343, 1377]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2956, "duration": [653, 658, 666]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [877, 880, 894]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 172197, "duration": [1818, 1883, 2409]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1145, "duration": [510, 526, 649]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 133, "duration": [616, 628, 652]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 139608, "duration": [1487, 1491, 1696]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 330, "duration": [128, 131, 135]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [177, 180, 184]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 75177, "duration": [1282, 1388, 1490]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 341, "duration": [178, 189, 210]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [186, 193, 197]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 65937, "duration": [1174, 1202, 1227]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 983, "duration": [706, 745, 770]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 603, "duration": [1659, 1661, 1891]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269185, "duration": [39024, 40865, 40996]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1514, "duration": [688, 697, 731]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 44, "duration": [954, 956, 958]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 3107761, "duration": [21747, 22735, 22878]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 240, "duration": [261, 262, 274]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 27, "duration": [490, 514, 552]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168301, "duration": [28497, 29952, 30117]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 14, "duration": [43, 43, 45]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [47, 47, 55]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 16308, "duration": [345, 393, 481]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2705, "duration": [947, 966, 1177]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 26, "duration": [1118, 1138, 1250]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 651176, "duration": [4942, 4943, 5004]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 125, "duration": [136, 138, 154]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [156, 157, 163]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 38349, "duration": [631, 647, 694]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 606, "duration": [97, 99, 116]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 348, "duration": [138, 142, 156]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 8849, "duration": [311, 341, 361]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2771, "duration": [1289, 1296, 1307]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 393, "duration": [1694, 1742, 1759]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 337147, "duration": [2860, 2955, 3002]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 537, "duration": [182, 183, 186]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [266, 266, 287]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 90307, "duration": [1227, 1247, 1374]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 94, "duration": [72, 81, 84]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 69, "duration": [91, 95, 99]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 53641, "duration": [895, 919, 941]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2723, "duration": [565, 582, 604]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 638, "duration": [832, 839, 856]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 132261, "duration": [1778, 1853, 1889]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 489, "duration": [394, 398, 414]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [455, 457, 465]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 75263, "duration": [1050, 1073, 1182]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9989, "duration": [1116, 1149, 1350]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1673, 1774, 1807]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 178211, "duration": [1790, 1813, 1850]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1195, "duration": [268, 272, 284]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [465, 475, 491]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 477882, "duration": [3662, 3838, 3877]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 834, "duration": [270, 284, 293]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [329, 333, 334]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 68527, "duration": [971, 1064, 1254]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 424, "duration": [195, 221, 223]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 39, "duration": [259, 269, 292]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 294537, "duration": [2446, 2464, 2543]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 400, "duration": [473, 488, 492]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 137, "duration": [540, 552, 554]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 555477, "duration": [4367, 4429, 4624]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10926, "duration": [658, 659, 667]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 4589, "duration": [1900, 1931, 2068]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 962508, "duration": [6712, 6731, 6770]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 44, "duration": [107, 109, 113]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [151, 154, 180]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 22177, "duration": [572, 620, 840]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1249, "duration": [203, 214, 217]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 55, "duration": [303, 307, 320]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 183559, "duration": [1738, 1769, 2089]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6482, "duration": [1154, 1157, 1165]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2037, "duration": [1848, 1852, 1865]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 318670, "duration": [2717, 2769, 2771]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3112, "duration": [1124, 1150, 1160]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1533, 1542, 1551]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3802855, "duration": [26430, 27982, 27995]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 2192, "duration": [1258, 1403, 1410]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 163, "duration": [1535, 1605, 1619]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 254583, "duration": [2589, 2689, 2759]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 76, "duration": [95, 102, 103]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [107, 109, 119]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 162351, "duration": [1798, 2124, 2368]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 571, "duration": [468, 484, 492]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [572, 584, 588]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 620188, "duration": [4714, 4981, 4983]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 415, "duration": [76, 82, 85]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 117, "duration": [146, 152, 152]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 91128, "duration": [1178, 1238, 1286]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 739, "duration": [138, 142, 175]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 298, "duration": [158, 168, 171]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 9778, "duration": [281, 284, 308]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 301, "duration": [166, 169, 176]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 24, "duration": [205, 207, 207]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 140156, "duration": [1477, 1525, 1662]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 31324, "duration": [1800, 1876, 1982]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8245, "duration": [10876, 10912, 10975]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168226, "duration": [29080, 29222, 29481]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 381, "duration": [91, 91, 91]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 341, "duration": [120, 144, 146]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 11347, "duration": [411, 440, 445]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1929, "duration": [294, 347, 384]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 34, "duration": [546, 554, 563]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 485132, "duration": [3673, 3774, 3793]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 293, "duration": [309, 312, 357]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 251, "duration": [584, 614, 618]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3800825, "duration": [26623, 28043, 28346]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 40, "duration": [47, 48, 53]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [87, 89, 105]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 4010, "duration": [159, 161, 202]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1002, "duration": [401, 407, 427]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [379, 402, 404]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 57181, "duration": [857, 941, 978]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11227, "duration": [2211, 2214, 2516]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [2849, 2888, 2931]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 324999, "duration": [2786, 2893, 2928]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2871, "duration": [1304, 1327, 1448]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 48, "duration": [1393, 1411, 1520]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1012784, "duration": [7385, 7394, 7661]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1241, "duration": [489, 490, 630]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 443, "duration": [911, 931, 990]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806173, "duration": [26975, 28702, 28877]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8686, "duration": [2069, 2084, 2211]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [2875, 2877, 3043]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168904, "duration": [28593, 29377, 29520]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2488, "duration": [339, 344, 465]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1598, "duration": [564, 576, 583]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 121970, "duration": [1396, 1414, 1424]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1791, "duration": [482, 493, 502]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [522, 527, 534]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 152743, "duration": [1529, 1538, 1549]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [114, 122, 133]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [142, 143, 161]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 126726, "duration": [1484, 1572, 1740]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9823, "duration": [1802, 1891, 1923]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1790, "duration": [2036, 2197, 2244]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 212022, "duration": [1997, 2007, 2046]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 373, "duration": [97, 99, 103]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [159, 163, 196]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 148462, "duration": [1500, 1502, 1517]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 97, "duration": [75, 76, 78]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [91, 93, 99]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 7393, "duration": [211, 219, 226]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3519, "duration": [534, 537, 663]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [800, 812, 815]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 355372, "duration": [2818, 2867, 2907]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7697, "duration": [1858, 1871, 1908]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 55, "duration": [2662, 2663, 2785]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 4015608, "duration": [28902, 29765, 29933]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 55, "duration": [79, 81, 83]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [84, 84, 88]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 11520, "duration": [442, 451, 469]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2703, "duration": [1024, 1086, 1322]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [1259, 1277, 1336]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980777, "duration": [27415, 28453, 28618]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 66, "duration": [49, 53, 55]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [70, 75, 77]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 178640, "duration": [1707, 1738, 1841]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 136, "duration": [184, 192, 207]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 25, "duration": [212, 215, 218]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748828, "duration": [5902, 6065, 6097]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 47, "duration": [60, 74, 79]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [52, 52, 56]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 3783, "duration": [234, 292, 295]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14379, "duration": [983, 985, 1100]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8754, "duration": [1761, 1773, 2065]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 273351, "duration": [2312, 2324, 2349]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65, "duration": [79, 86, 86]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [86, 91, 125]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 29487, "duration": [529, 548, 580]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 426, "duration": [240, 245, 265]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 52, "duration": [251, 254, 281]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 463674, "duration": [3862, 4097, 4200]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 128, "duration": [212, 223, 228]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [247, 254, 260]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 687518, "duration": [5054, 5134, 5157]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 88, "duration": [207, 208, 208]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 33, "duration": [184, 186, 190]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 638451, "duration": [4797, 4920, 5034]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 339, "duration": [497, 500, 506]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 58, "duration": [612, 614, 710]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1424119, "duration": [11871, 12027, 12034]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 114, "duration": [98, 101, 108]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 42, "duration": [110, 113, 116]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 16349, "duration": [385, 425, 587]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 129, "duration": [47, 47, 47]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 122, "duration": [70, 70, 116]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 16639, "duration": [587, 589, 624]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5942, "duration": [1671, 1698, 1841]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 20, "duration": [2065, 2079, 2079]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1004290, "duration": [7869, 7959, 7965]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 9831, "duration": [2442, 2479, 2531]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 5175, "duration": [4272, 4298, 4305]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 3815913, "duration": [26262, 27289, 27413]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 101, "duration": [311, 323, 323]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 26, "duration": [340, 365, 368]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 621002, "duration": [4784, 4821, 4913]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 42326, "duration": [3591, 3661, 3672]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 105, "duration": [6195, 6303, 6420]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 506318, "duration": [3887, 3915, 4062]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 110, "duration": [75, 82, 91]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 46, "duration": [74, 76, 77]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7141, "duration": [204, 285, 294]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3633, "duration": [515, 534, 566]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [780, 786, 789]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 341994, "duration": [2709, 2797, 2837]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 861, "duration": [255, 258, 347]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 98, "duration": [359, 360, 363]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 236925, "duration": [2146, 2237, 2263]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2784, "duration": [281, 294, 377]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 853, "duration": [573, 578, 591]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 254858, "duration": [2443, 2545, 2639]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 218, "duration": [75, 80, 83]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [90, 92, 94]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 7833, "duration": [206, 226, 255]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4083, "duration": [1085, 1190, 1396]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 877, "duration": [2037, 2058, 2244]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 4171625, "duration": [29379, 30573, 30885]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2520, "duration": [230, 240, 285]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1404, "duration": [498, 514, 563]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 138987, "duration": [1503, 1579, 1611]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [252, 256, 262]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 28, "duration": [295, 295, 296]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1078395, "duration": [7720, 8088, 8149]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 92527, "duration": [9087, 9260, 9277]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 95, "duration": [15210, 15347, 15443]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4270464, "duration": [40939, 42894, 43140]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 60, "duration": [52, 52, 52]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [56, 57, 60]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 7172, "duration": [194, 198, 203]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1015, "duration": [215, 220, 229]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 86, "duration": [364, 366, 367]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 200981, "duration": [1863, 1909, 1920]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4474, "duration": [495, 555, 629]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3236, "duration": [870, 925, 961]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 360654, "duration": [2854, 2861, 2949]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 980, "duration": [305, 306, 406]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 784, "duration": [751, 782, 786]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168065, "duration": [27996, 29260, 29496]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 284, "duration": [201, 215, 220]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 214, "duration": [267, 278, 302]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 126816, "duration": [1448, 1459, 1465]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 83, "duration": [109, 110, 120]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 16, "duration": [126, 134, 135]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 55586, "duration": [1053, 1101, 1134]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 58, "duration": [33, 41, 44]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 54, "duration": [50, 52, 60]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 15162, "duration": [303, 315, 379]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 201, "duration": [121, 149, 150]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [125, 136, 141]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 170597, "duration": [1666, 1676, 1682]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 434, "duration": [204, 206, 226]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [243, 244, 273]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 26300, "duration": [499, 520, 721]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3258, "duration": [1457, 1478, 1491]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 244, "duration": [1785, 1798, 1856]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 467039, "duration": [3783, 3861, 3956]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 121, "duration": [978, 1041, 1050]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 20, "duration": [1005, 1057, 1065]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 635117, "duration": [4977, 5044, 5132]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4708, "duration": [663, 670, 690]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1322, "duration": [1119, 1127, 1142]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 487676, "duration": [3693, 3832, 3888]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3919, "duration": [912, 953, 1001]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1515, "duration": [1170, 1198, 1217]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 144566, "duration": [1574, 1669, 1819]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 234, "duration": [171, 182, 185]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 151, "duration": [229, 232, 256]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 192019, "duration": [1792, 1828, 1845]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8481, "duration": [4138, 4269, 4287]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 82, "duration": [5101, 5101, 5108]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 778663, "duration": [5769, 5802, 5880]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 24, "duration": [122, 154, 157]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 19, "duration": [131, 138, 140]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 231009, "duration": [2108, 2130, 2160]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2050, "duration": [282, 311, 321]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 314, "duration": [440, 444, 445]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 89056, "duration": [1118, 1121, 1148]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 319, "duration": [146, 151, 152]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [181, 183, 186]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 41550, "duration": [716, 749, 815]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1982, "duration": [325, 337, 342]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [505, 539, 560]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 126649, "duration": [1390, 1430, 1453]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 652, "duration": [181, 184, 204]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [262, 262, 291]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 148177, "duration": [1529, 1552, 1564]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 372, "duration": [196, 198, 203]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 115, "duration": [228, 231, 236]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 27089, "duration": [527, 541, 644]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 169, "duration": [192, 194, 197]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 65, "duration": [236, 245, 264]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 536978, "duration": [4139, 4429, 4721]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 16193, "duration": [1732, 1821, 1942]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2840, "duration": [3400, 3659, 3665]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 686232, "duration": [6148, 6216, 7485]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 21, "duration": [79, 90, 104]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [88, 90, 91]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748534, "duration": [6001, 6074, 6267]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2570, "duration": [466, 486, 743]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 33, "duration": [680, 690, 714]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 155369, "duration": [1661, 1713, 2077]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6165, "duration": [898, 920, 956]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 255, "duration": [1285, 1298, 1305]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 126586, "duration": [1474, 1571, 1601]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 425, "duration": [211, 211, 213]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [244, 254, 257]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 36113, "duration": [624, 637, 758]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 237, "duration": [555, 571, 574]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 37, "duration": [705, 725, 743]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3837687, "duration": [29640, 30872, 30946]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 660, "duration": [169040, 170270, 170409]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 79, "duration": [181, 202, 205]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 4168064, "duration": [39812, 41874, 42070]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 748535, "duration": [11112, 11210, 11290]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 79, "duration": [211414, 217380, 218200]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 4168064, "duration": [258593, 259510, 267284]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1950439, "duration": [237618, 239222, 240156]}], "tantivy-0.19": [{"query": "the", "tags": ["term"], "count": 4168064, "duration": [16712, 17022, 18496]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 79, "duration": [128, 128, 150]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [131, 136, 138]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 15456, "duration": [301, 317, 353]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 195, "duration": [61, 65, 74]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 110, "duration": [85, 88, 93]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 4173, "duration": [181, 191, 269]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 856, "duration": [133, 142, 148]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 112, "duration": [189, 197, 201]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 104150, "duration": [1611, 1742, 1744]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [140, 145, 146]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [202, 203, 206]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 54291, "duration": [1052, 1061, 1580]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 266, "duration": [490, 503, 505]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 18, "duration": [519, 527, 548]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 195119, "duration": [1928, 2070, 2285]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2173, "duration": [938, 970, 977]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [870, 890, 917]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 167943, "duration": [1672, 1805, 1955]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14165, "duration": [1348, 1509, 1794]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [2332, 2363, 2382]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 612165, "duration": [4431, 4873, 5300]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 85, "duration": [57, 57, 57]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 56, "duration": [69, 71, 79]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 7747, "duration": [224, 264, 275]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 693, "duration": [597, 599, 658]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [662, 681, 708]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 397912, "duration": [3403, 3507, 3808]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7346, "duration": [1784, 1796, 2846]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 201, "duration": [2474, 2588, 2670]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 4173861, "duration": [28451, 28876, 29043]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4496, "duration": [385, 418, 584]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 307, "duration": [751, 758, 820]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 454176, "duration": [3434, 3629, 3712]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 161, "duration": [253, 268, 273]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [261, 269, 386]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 336807, "duration": [2826, 3059, 3070]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1055, "duration": [242, 245, 274]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 177, "duration": [334, 345, 346]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 61359, "duration": [994, 1073, 1533]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3760, "duration": [764, 945, 1010]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 252, "duration": [1086, 1096, 1153]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 151582, "duration": [1611, 1626, 1945]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 569, "duration": [321, 333, 345]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [371, 382, 384]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 86776, "duration": [1194, 1322, 1432]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [89, 141, 268]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [93, 122, 123]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 249193, "duration": [2252, 2283, 2469]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 81, "duration": [136, 138, 147]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [145, 149, 164]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 20969, "duration": [407, 498, 550]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4617, "duration": [913, 923, 1152]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 141, "duration": [1266, 1283, 1333]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 194083, "duration": [1904, 1942, 2574]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 107, "duration": [117, 126, 127]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 64, "duration": [158, 163, 179]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1192562, "duration": [7934, 8018, 8636]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1239, "duration": [624, 635, 664]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 566, "duration": [1031, 1076, 1142]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 510849, "duration": [3721, 3887, 3914]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7014, "duration": [1444, 1510, 1572]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 329, "duration": [1797, 1801, 1828]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 170364, "duration": [1728, 1781, 1908]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48653, "duration": [1186, 1214, 1235]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 44879, "duration": [3996, 4046, 4320]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 151349, "duration": [1709, 1716, 1969]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 137, "duration": [249, 265, 320]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 53, "duration": [268, 270, 271]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 95654, "duration": [1368, 1671, 2235]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7387, "duration": [981, 1090, 1151]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 302, "duration": [1497, 1538, 1550]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 260381, "duration": [2438, 2515, 2524]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5040, "duration": [909, 938, 1067]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 70, "duration": [1178, 1195, 1207]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 217122, "duration": [2156, 2247, 2497]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1917, "duration": [722, 731, 738]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 94, "duration": [934, 988, 997]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 584269, "duration": [4430, 4452, 5466]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 733, "duration": [368, 448, 495]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 76, "duration": [399, 403, 411]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 46081, "duration": [906, 941, 1358]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 421, "duration": [667, 707, 898]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 61, "duration": [713, 751, 833]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 401520, "duration": [3388, 3394, 3522]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1187, "duration": [180, 184, 231]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [341, 342, 458]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 160168, "duration": [1634, 1688, 1799]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 475, "duration": [717, 731, 735]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [776, 798, 836]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 402259, "duration": [3352, 3594, 6584]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 604, "duration": [299, 301, 326]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [350, 364, 375]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 99117, "duration": [1262, 1344, 1352]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65770, "duration": [3308, 3399, 3474]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [7522, 7550, 7654]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 825043, "duration": [6009, 6321, 6386]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6146, "duration": [1050, 1150, 1490]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1517, 1537, 1673]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 298137, "duration": [2490, 2508, 2539]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 13581, "duration": [1316, 1329, 1385]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1894, "duration": [2481, 2499, 2518]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 229696, "duration": [2198, 2216, 2233]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 314, "duration": [76, 82, 82]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 288, "duration": [102, 107, 108]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 10040, "duration": [303, 330, 355]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6957, "duration": [1813, 1820, 1918]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [2132, 2220, 2220]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 702120, "duration": [5010, 5083, 5281]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13996, "duration": [3446, 3505, 4389]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [4567, 4607, 4698]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1251867, "duration": [9036, 9089, 9110]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4268, "duration": [1343, 1359, 1408]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 440, "duration": [1891, 1908, 1918]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 909970, "duration": [6459, 6463, 6843]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 23, "duration": [52, 54, 60]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [50, 51, 59]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 10684, "duration": [262, 273, 302]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 157, "duration": [235, 247, 251]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [241, 251, 276]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 35325, "duration": [684, 735, 838]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1316, "duration": [745, 761, 768]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1156, "duration": [1991, 2180, 2271]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269120, "duration": [38083, 38378, 39159]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 43372, "duration": [4110, 4220, 5798]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15089, "duration": [11868, 12045, 14150]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806414, "duration": [25333, 26922, 27514]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 239, "duration": [110, 111, 177]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 124, "duration": [157, 159, 161]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 333268, "duration": [2695, 2720, 2807]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 618, "duration": [262, 265, 295]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 168, "duration": [379, 380, 400]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970283, "duration": [6974, 7120, 7400]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 44521, "duration": [4479, 4732, 4925]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 4100, "duration": [9189, 9383, 9441]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 3808757, "duration": [26804, 27181, 27235]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 960, "duration": [340, 357, 376]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 244, "duration": [460, 476, 481]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 134727, "duration": [1520, 1640, 1870]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1490, "duration": [723, 776, 794]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [843, 858, 896]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 106587, "duration": [1638, 1690, 2103]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3574, "duration": [1107, 1155, 1177]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1021, "duration": [1202, 1240, 1388]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 146818, "duration": [1695, 1754, 2494]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 20, "duration": [38, 63, 73]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [45, 46, 52]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 82708, "duration": [1209, 1222, 1364]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [53, 59, 80]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [46, 48, 52]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1791, "duration": [97, 110, 132]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 3397, "duration": [1626, 2025, 2246]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 12, "duration": [1860, 1933, 1986]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4053765, "duration": [34013, 34114, 34296]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 429, "duration": [97, 104, 106]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 41, "duration": [161, 164, 167]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 130601, "duration": [1438, 1496, 1529]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2860, "duration": [486, 490, 524]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 828, "duration": [507, 514, 549]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 54702, "duration": [1062, 1072, 1094]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10899, "duration": [2255, 2279, 2366]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 922, "duration": [3266, 3332, 3568]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806986, "duration": [25498, 26731, 29025]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [107, 109, 168]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [116, 117, 138]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 11759, "duration": [264, 270, 279]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 443, "duration": [315, 319, 488]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [432, 443, 487]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798567, "duration": [23766, 24720, 24906]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1994, "duration": [1082, 1198, 2130]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1444, "duration": [2405, 2455, 2646]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269267, "duration": [36200, 37856, 39867]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 418, "duration": [344, 351, 423]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 224, "duration": [536, 575, 620]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798846, "duration": [25263, 27260, 27410]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10806, "duration": [815, 1091, 1473]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 831, "duration": [1585, 1605, 1631]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 401948, "duration": [3124, 3349, 3440]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 90, "duration": [77, 78, 80]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [73, 75, 76]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7731, "duration": [223, 276, 280]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3336, "duration": [748, 859, 903]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [905, 938, 1053]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 237265, "duration": [2127, 2247, 2598]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48, "duration": [53, 53, 90]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [54, 70, 71]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 5320, "duration": [158, 181, 192]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1751, "duration": [222, 238, 292]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1335, "duration": [466, 481, 497]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 79894, "duration": [1141, 1179, 1491]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 19247, "duration": [2530, 2713, 3099]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 626, "duration": [3306, 3374, 3472]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 301066, "duration": [2414, 2501, 3118]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [79, 81, 89]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 81, "duration": [111, 131, 141]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 21776, "duration": [429, 623, 653]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3980, "duration": [181, 196, 209]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3891, "duration": [421, 460, 506]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 43534, "duration": [865, 931, 1120]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 109, "duration": [143, 144, 145]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 97, "duration": [161, 165, 178]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 47760, "duration": [864, 1182, 1228]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 61, "duration": [86, 89, 89]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [108, 114, 143]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 14465, "duration": [348, 470, 537]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2638, "duration": [586, 650, 678]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 60, "duration": [732, 767, 850]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 301693, "duration": [2521, 2588, 4394]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 12, "duration": [77, 78, 83]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [50, 50, 57]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 57879, "duration": [971, 1020, 1066]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1238, "duration": [305, 344, 518]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 391, "duration": [558, 598, 599]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970192, "duration": [7187, 7622, 8152]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 415, "duration": [702, 782, 818]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [961, 970, 978]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4316960, "duration": [38830, 40752, 40958]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3896, "duration": [988, 1037, 1061]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1351, 1360, 1374]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 153516, "duration": [1829, 1859, 2097]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 896, "duration": [144, 150, 181]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 475, "duration": [228, 229, 234]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 36406, "duration": [855, 872, 1181]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1044, "duration": [332, 341, 347]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 74, "duration": [425, 432, 438]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 52377, "duration": [938, 959, 1287]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1550, "duration": [282, 289, 527]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 131, "duration": [405, 462, 500]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 150258, "duration": [1700, 1705, 1723]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1246, "duration": [420, 445, 510]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 235, "duration": [410, 422, 432]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 66350, "duration": [1102, 1160, 1361]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5054, "duration": [722, 923, 1160]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [986, 994, 1040]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 310479, "duration": [2651, 2652, 2767]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 24403, "duration": [1655, 1957, 1963]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12115, "duration": [3884, 4173, 4306]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 503137, "duration": [4091, 4422, 4867]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2540, "duration": [407, 451, 491]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 59, "duration": [639, 679, 761]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 200883, "duration": [2252, 2267, 2274]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 96618, "duration": [7875, 7890, 7926]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1140, "duration": [14505, 14526, 14718]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1038231, "duration": [7574, 7644, 7776]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5964, "duration": [1277, 1294, 1448]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 256, "duration": [1814, 1816, 1818]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 402607, "duration": [3143, 3222, 3310]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 142, "duration": [40, 48, 75]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 142, "duration": [50, 51, 51]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 10007, "duration": [317, 376, 610]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2001, "duration": [919, 942, 990]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [1167, 1193, 1206]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168649, "duration": [28566, 29985, 30419]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2315, "duration": [301, 318, 359]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [493, 499, 506]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 51200, "duration": [841, 844, 904]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6825, "duration": [813, 951, 1000]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2155, "duration": [1257, 1297, 1301]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 114383, "duration": [1360, 1370, 1417]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 47, "duration": [384, 384, 396]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 33, "duration": [580, 630, 634]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4068900, "duration": [37867, 38651, 40560]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4125, "duration": [675, 710, 736]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [999, 1024, 1025]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 272980, "duration": [2339, 2342, 2478]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4710, "duration": [409, 506, 632]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2046, "duration": [710, 721, 764]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 193597, "duration": [1853, 1930, 2051]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8204, "duration": [2473, 2546, 2790]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [3265, 3294, 3303]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 854242, "duration": [6224, 6437, 6867]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1608, "duration": [429, 432, 434]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [532, 532, 534]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 66857, "duration": [1244, 1351, 1637]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 328, "duration": [217, 230, 262]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 97, "duration": [236, 236, 320]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 32425, "duration": [847, 869, 964]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [50, 51, 56]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [54, 54, 55]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 39428, "duration": [1015, 1048, 1312]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10203, "duration": [1630, 1950, 2016]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [2413, 2468, 2540]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 2470107, "duration": [18449, 18560, 18715]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 55, "duration": [53, 56, 57]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 43, "duration": [63, 70, 81]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 58784, "duration": [965, 976, 1087]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 901, "duration": [238, 245, 257]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 213, "duration": [329, 339, 391]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 73481, "duration": [1069, 1209, 1512]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7776, "duration": [896, 1034, 1043]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3077, "duration": [1595, 1754, 1998]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 127400, "duration": [1613, 1614, 1779]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1282, "duration": [1117, 1171, 1215]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 31, "duration": [1545, 1607, 1611]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 961109, "duration": [7226, 7397, 7654]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 155, "duration": [84, 86, 104]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 45, "duration": [120, 124, 126]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 280642, "duration": [2505, 2508, 2548]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 51, "duration": [93, 94, 119]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 35, "duration": [109, 111, 138]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 102668, "duration": [1394, 1464, 1919]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1997, "duration": [445, 497, 513]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 93, "duration": [605, 666, 681]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 212065, "duration": [2052, 2070, 2197]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1613, "duration": [544, 556, 619]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [644, 656, 659]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 109701, "duration": [1459, 1528, 1656]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 593, "duration": [85, 87, 89]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 373, "duration": [123, 127, 138]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 32570, "duration": [642, 691, 1015]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 358, "duration": [105, 112, 116]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 89, "duration": [134, 139, 144]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 29690, "duration": [633, 686, 712]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [203, 219, 221]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [195, 198, 201]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 23089, "duration": [530, 589, 613]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7853, "duration": [1885, 1901, 1948]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 140, "duration": [2619, 2692, 2692]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169493, "duration": [28486, 30146, 32730]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 207, "duration": [62, 66, 68]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [117, 138, 150]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 8017, "duration": [204, 209, 228]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3053, "duration": [544, 552, 579]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 100, "duration": [770, 772, 813]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 132425, "duration": [1548, 1580, 1656]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 357, "duration": [105, 112, 127]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 328, "duration": [149, 156, 181]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 10614, "duration": [369, 394, 422]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 158, "duration": [213, 218, 221]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [155, 163, 164]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 22473, "duration": [580, 662, 672]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1927, "duration": [469, 609, 784]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 681, "duration": [597, 636, 646]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 88332, "duration": [1158, 1588, 2027]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 644, "duration": [157, 165, 186]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 73, "duration": [250, 258, 275]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 103711, "duration": [1645, 1670, 2117]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13480, "duration": [4164, 4283, 4462]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 969, "duration": [5199, 5199, 5316]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 918169, "duration": [6326, 6463, 6836]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 8141, "duration": [1029, 1037, 1394]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1488, 1616, 1751]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 375689, "duration": [2968, 2977, 3335]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 278, "duration": [393, 415, 439]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [421, 431, 449]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 212074, "duration": [1972, 2101, 2193]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 266, "duration": [142, 169, 178]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 135, "duration": [172, 173, 178]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 16569, "duration": [356, 362, 409]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 22, "duration": [56, 59, 60]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [57, 57, 59]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 6674, "duration": [265, 276, 297]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1329, "duration": [1134, 1170, 1220]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 42, "duration": [1246, 1256, 1621]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 281073, "duration": [2544, 2665, 2706]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 240, "duration": [155, 196, 207]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [175, 216, 237]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 38213, "duration": [996, 1058, 1082]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 867, "duration": [143, 148, 156]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [228, 245, 262]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 28879, "duration": [796, 865, 907]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 406, "duration": [123, 152, 341]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 318, "duration": [186, 190, 207]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 345824, "duration": [2724, 2730, 4133]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1913, "duration": [509, 533, 543]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 171, "duration": [618, 648, 672]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 70020, "duration": [1066, 1159, 1247]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 84, "duration": [52, 54, 65]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [57, 57, 72]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 10103, "duration": [221, 248, 358]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 444, "duration": [419, 430, 445]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [483, 486, 494]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 165540, "duration": [1958, 1975, 2032]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1457, "duration": [680, 682, 790]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 131, "duration": [1134, 1156, 1190]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 4174359, "duration": [26408, 28571, 30435]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11192, "duration": [1412, 1431, 1755]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [2368, 2378, 2380]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 264631, "duration": [2472, 2539, 2557]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 466, "duration": [306, 317, 332]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [342, 346, 351]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 55152, "duration": [1097, 1116, 1123]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1061, "duration": [1136, 1142, 1225]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 74, "duration": [1083, 1096, 1397]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 194085, "duration": [1993, 2076, 2283]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 164, "duration": [58, 58, 66]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 121, "duration": [80, 87, 93]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 12785, "duration": [348, 413, 484]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 290, "duration": [148, 158, 170]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 277, "duration": [244, 248, 271]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 352602, "duration": [2853, 3068, 3091]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1111, "duration": [135, 137, 189]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 963, "duration": [274, 283, 390]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 162074, "duration": [1825, 1905, 1985]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 608, "duration": [174, 192, 298]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 485, "duration": [260, 264, 282]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 231765, "duration": [2429, 2489, 2489]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 122, "duration": [162, 168, 173]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 10, "duration": [212, 216, 220]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 217412, "duration": [2267, 2320, 2333]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 118291, "duration": [3332, 3361, 3621]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21737, "duration": [36033, 37656, 41247]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168234, "duration": [26223, 27610, 29792]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 367, "duration": [219, 227, 229]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [249, 262, 323]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 33310, "duration": [646, 669, 735]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 192, "duration": [135, 136, 143]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [159, 159, 163]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 46274, "duration": [817, 1136, 1346]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 180, "duration": [131, 138, 140]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 143, "duration": [197, 200, 216]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 268624, "duration": [2209, 2356, 2431]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2130, "duration": [1310, 1423, 1752]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1548, 1599, 1604]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 2372213, "duration": [15790, 17034, 17456]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 248, "duration": [143, 143, 183]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 68, "duration": [149, 153, 155]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 47084, "duration": [1076, 1461, 1713]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [59, 70, 73]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 226, "duration": [88, 101, 102]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 4838, "duration": [219, 234, 414]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 78, "duration": [59, 69, 74]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [67, 69, 70]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 17211, "duration": [537, 577, 617]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1532, "duration": [541, 553, 610]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 173, "duration": [641, 656, 670]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 76229, "duration": [1161, 1199, 1275]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2422, "duration": [111, 112, 291]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2381, "duration": [257, 272, 444]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 6515, "duration": [210, 211, 276]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1633, "duration": [244, 263, 355]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 123, "duration": [391, 394, 427]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 73305, "duration": [1049, 1190, 1220]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4110, "duration": [1038, 1095, 1136]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 60, "duration": [1434, 1437, 1629]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 2315795, "duration": [17408, 17614, 18847]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [162, 232, 242]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [240, 277, 341]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 92901, "duration": [1225, 1385, 1499]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 131, "duration": [430, 445, 457]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [455, 462, 465]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 226887, "duration": [2545, 2645, 2804]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1539, "duration": [604, 607, 633]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 79, "duration": [793, 799, 815]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 322018, "duration": [2951, 3013, 3288]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1358, "duration": [459, 484, 518]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [569, 570, 577]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 68175, "duration": [1351, 1466, 1536]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 813, "duration": [299, 331, 353]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 67, "duration": [380, 385, 397]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 62207, "duration": [1057, 1240, 1786]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [88, 92, 154]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [70, 73, 97]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 33193, "duration": [577, 630, 905]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3401, "duration": [781, 788, 935]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 821, "duration": [954, 1006, 1015]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 134076, "duration": [1494, 1627, 1725]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2416, "duration": [556, 573, 634]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [733, 742, 751]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 105084, "duration": [1228, 1506, 1876]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 162, "duration": [165, 166, 168]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [415, 421, 436]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168064, "duration": [27640, 27791, 28184]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 361, "duration": [114, 124, 126]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [198, 199, 214]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 167104, "duration": [1828, 1909, 1974]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 679, "duration": [527, 579, 634]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [598, 602, 685]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 730213, "duration": [5299, 5356, 5878]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5744, "duration": [917, 953, 986]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [1313, 1349, 1359]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 222790, "duration": [2041, 2084, 2212]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 377, "duration": [506, 517, 536]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 16, "duration": [632, 644, 658]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 774500, "duration": [6047, 6591, 7234]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 639, "duration": [205, 211, 220]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [309, 316, 319]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 188645, "duration": [1992, 2079, 2290]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 138, "duration": [117, 118, 199]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [88, 94, 108]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 14092, "duration": [439, 442, 447]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5577, "duration": [1301, 1313, 1377]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [1617, 1667, 1690]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 310569, "duration": [2631, 2724, 2795]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 29, "duration": [46, 47, 50]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [47, 48, 48]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 14156, "duration": [393, 396, 444]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 144, "duration": [78, 87, 96]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [107, 108, 118]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 69112, "duration": [1056, 1156, 1571]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2936, "duration": [413, 437, 461]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 611, "duration": [653, 668, 673]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 192280, "duration": [1903, 2042, 2062]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9630, "duration": [952, 978, 1150]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 181, "duration": [1661, 1668, 1688]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 389360, "duration": [3029, 3034, 3771]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 490, "duration": [99, 110, 125]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 414, "duration": [163, 179, 333]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 11304, "duration": [433, 500, 517]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 431, "duration": [175, 181, 183]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 115, "duration": [282, 299, 302]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 308550, "duration": [2562, 2847, 2880]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6560, "duration": [1596, 1643, 1657]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 16, "duration": [2212, 2394, 4173]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 4014085, "duration": [26867, 28760, 30808]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1218, "duration": [347, 371, 417]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [423, 431, 450]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 119020, "duration": [1413, 1697, 1824]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 531, "duration": [333, 340, 490]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 82, "duration": [368, 371, 404]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 43329, "duration": [989, 1030, 1179]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2111, "duration": [480, 523, 559]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [635, 666, 666]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 159993, "duration": [1709, 1828, 2599]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 370, "duration": [124, 147, 160]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [141, 144, 150]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 11717, "duration": [292, 427, 460]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 25282, "duration": [1416, 1465, 1728]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 210, "duration": [3350, 3401, 3408]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 909593, "duration": [6073, 6122, 6827]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 350, "duration": [290, 302, 406]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 141, "duration": [367, 375, 378]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 758590, "duration": [5373, 5553, 5630]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1273, "duration": [283, 285, 302]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [487, 509, 556]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 349637, "duration": [2800, 3052, 3366]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 220, "duration": [82, 84, 93]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 206, "duration": [105, 117, 120]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 7958, "duration": [262, 332, 362]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 30970, "duration": [3372, 3380, 3609]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 272, "duration": [5161, 5441, 5534]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 446943, "duration": [3475, 3555, 3689]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 112, "duration": [344, 344, 377]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [343, 344, 346]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 51473, "duration": [1285, 1290, 1306]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1763, "duration": [573, 643, 705]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [627, 640, 729]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 266528, "duration": [2268, 2321, 2392]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5003, "duration": [1841, 1900, 1968]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [1934, 1937, 2038]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980371, "duration": [26030, 26184, 26631]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [186, 192, 227]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 158, "duration": [224, 225, 249]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 21196, "duration": [393, 418, 449]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5094, "duration": [1648, 1894, 1917]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 419, "duration": [2286, 2332, 2474]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169609, "duration": [26081, 27654, 29545]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1216, "duration": [273, 284, 287]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 50, "duration": [397, 405, 416]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 196687, "duration": [1831, 1905, 1941]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 56, "duration": [36, 37, 37]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 53, "duration": [56, 70, 90]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 144768, "duration": [1500, 1582, 1630]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [254, 273, 295]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [266, 276, 281]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 727128, "duration": [5395, 5402, 5455]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 176, "duration": [208, 213, 223]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [411, 427, 439]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168609, "duration": [25808, 27744, 30498]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 521, "duration": [62, 66, 69]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 516, "duration": [95, 96, 107]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 11727, "duration": [324, 398, 402]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [212, 220, 238]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [304, 312, 350]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 100754, "duration": [1223, 1569, 1729]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [36, 41, 42]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 35, "duration": [34, 37, 55]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 63, "duration": [42, 44, 47]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 425, "duration": [783, 798, 810]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [827, 832, 847]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 279042, "duration": [2608, 2648, 2885]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 757, "duration": [659, 671, 709]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [730, 749, 773]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 292410, "duration": [2716, 2865, 3129]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 74, "duration": [39, 43, 55]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 52, "duration": [49, 57, 66]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1372, "duration": [108, 114, 137]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1159, "duration": [243, 246, 272]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 120, "duration": [352, 360, 365]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 146946, "duration": [1539, 1579, 1585]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6552, "duration": [433, 487, 667]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 6339, "duration": [644, 675, 704]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 63852, "duration": [965, 1025, 1216]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1950, "duration": [508, 560, 720]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [630, 640, 650]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 67801, "duration": [1362, 1445, 1683]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2956, "duration": [649, 665, 800]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [883, 888, 901]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 172197, "duration": [1879, 1952, 2077]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1145, "duration": [507, 533, 550]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 133, "duration": [614, 620, 629]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 139608, "duration": [1618, 1633, 1749]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 330, "duration": [141, 149, 154]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [185, 186, 192]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 75177, "duration": [1352, 1397, 1532]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 341, "duration": [164, 182, 215]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [191, 195, 205]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 65937, "duration": [1130, 1214, 1877]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 983, "duration": [748, 808, 1149]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 603, "duration": [1679, 1691, 1852]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269185, "duration": [37760, 38344, 38998]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1514, "duration": [689, 735, 792]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 44, "duration": [923, 940, 957]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 3107761, "duration": [21259, 21644, 22919]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 240, "duration": [259, 273, 298]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 27, "duration": [494, 523, 626]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168301, "duration": [27498, 27980, 28069]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 14, "duration": [43, 44, 54]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [48, 49, 64]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 16308, "duration": [344, 354, 440]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2705, "duration": [909, 972, 1072]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 26, "duration": [1146, 1151, 1151]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 651176, "duration": [4785, 4820, 4884]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 125, "duration": [142, 150, 160]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [158, 160, 175]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 38349, "duration": [639, 641, 686]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 606, "duration": [96, 106, 135]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 348, "duration": [146, 149, 202]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 8849, "duration": [355, 358, 363]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2771, "duration": [1313, 1510, 1783]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 393, "duration": [1693, 1728, 1760]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 337147, "duration": [2953, 2975, 3272]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 537, "duration": [183, 188, 202]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [254, 257, 263]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 90307, "duration": [1240, 1334, 1375]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 94, "duration": [82, 87, 95]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 69, "duration": [97, 98, 99]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 53641, "duration": [1046, 1104, 1441]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2723, "duration": [579, 646, 662]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 638, "duration": [852, 852, 869]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 132261, "duration": [1784, 1822, 2375]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 489, "duration": [405, 407, 416]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [459, 468, 481]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 75263, "duration": [1114, 1176, 1668]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9989, "duration": [1167, 1172, 1479]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1674, 1775, 2459]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 178211, "duration": [1740, 1795, 1920]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1195, "duration": [275, 346, 366]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [485, 493, 520]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 477882, "duration": [3833, 3836, 4299]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 834, "duration": [273, 274, 291]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [327, 339, 356]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 68527, "duration": [960, 1095, 1342]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 424, "duration": [208, 209, 216]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 39, "duration": [312, 325, 351]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 294537, "duration": [2456, 2466, 3056]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 400, "duration": [488, 491, 500]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 137, "duration": [555, 555, 558]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 555477, "duration": [4108, 4342, 4461]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10926, "duration": [673, 695, 819]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 4589, "duration": [1875, 1950, 2441]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 962508, "duration": [6357, 6365, 6516]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 44, "duration": [116, 127, 138]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [154, 160, 196]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 22177, "duration": [536, 543, 606]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1249, "duration": [200, 206, 218]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 55, "duration": [303, 315, 317]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 183559, "duration": [1787, 1859, 1994]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6482, "duration": [1160, 1261, 1300]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2037, "duration": [1870, 1887, 2073]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 318670, "duration": [2740, 2770, 3167]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3112, "duration": [1212, 1224, 1258]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1541, 1652, 1655]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3802855, "duration": [24058, 26160, 29331]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 2192, "duration": [1300, 1403, 1434]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 163, "duration": [1509, 1628, 1787]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 254583, "duration": [2569, 2590, 2647]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 76, "duration": [91, 98, 135]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [107, 118, 148]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 162351, "duration": [2101, 2118, 2184]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 571, "duration": [472, 489, 512]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [585, 588, 597]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 620188, "duration": [4521, 4834, 5275]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 415, "duration": [77, 81, 100]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 117, "duration": [155, 167, 200]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 91128, "duration": [1206, 1227, 1576]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 739, "duration": [137, 143, 151]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 298, "duration": [165, 166, 173]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 9778, "duration": [344, 354, 389]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 301, "duration": [177, 193, 194]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 24, "duration": [200, 203, 209]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 140156, "duration": [1502, 1550, 1683]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 31324, "duration": [1761, 1904, 2184]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8245, "duration": [11164, 11435, 12463]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168226, "duration": [26753, 27261, 29452]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 381, "duration": [90, 93, 94]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 341, "duration": [124, 126, 223]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 11347, "duration": [460, 463, 668]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1929, "duration": [303, 312, 348]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 34, "duration": [543, 554, 789]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 485132, "duration": [3534, 3614, 3702]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 293, "duration": [315, 321, 324]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 251, "duration": [580, 603, 660]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3800825, "duration": [26558, 27190, 28371]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 40, "duration": [51, 56, 59]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [89, 93, 122]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 4010, "duration": [155, 171, 213]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1002, "duration": [342, 374, 437]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [388, 401, 520]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 57181, "duration": [930, 933, 2338]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11227, "duration": [2133, 2641, 2793]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [2870, 2915, 2923]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 324999, "duration": [2857, 2924, 3833]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2871, "duration": [1291, 1312, 1348]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 48, "duration": [1385, 1396, 1786]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1012784, "duration": [6947, 7012, 7659]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1241, "duration": [500, 521, 565]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 443, "duration": [923, 944, 950]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806173, "duration": [26597, 27039, 29018]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8686, "duration": [2116, 2129, 2804]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [2890, 2892, 3032]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168904, "duration": [26178, 27284, 27840]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2488, "duration": [347, 374, 499]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1598, "duration": [602, 607, 629]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 121970, "duration": [1415, 1564, 1618]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1791, "duration": [476, 530, 601]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [521, 528, 535]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 152743, "duration": [1685, 1692, 1728]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [113, 125, 155]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [139, 144, 144]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 126726, "duration": [1642, 1652, 2018]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9823, "duration": [1823, 1911, 1946]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1790, "duration": [2244, 2261, 2361]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 212022, "duration": [1931, 1977, 2204]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 373, "duration": [94, 103, 109]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [168, 183, 213]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 148462, "duration": [1573, 1578, 1678]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 97, "duration": [74, 79, 85]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [93, 98, 101]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 7393, "duration": [243, 252, 258]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3519, "duration": [528, 534, 576]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [808, 812, 875]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 355372, "duration": [2789, 2832, 2993]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7697, "duration": [1902, 1944, 2234]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 55, "duration": [2661, 2665, 2671]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 4015608, "duration": [26346, 27392, 28309]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 55, "duration": [82, 85, 86]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [85, 87, 130]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 11520, "duration": [472, 506, 531]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2703, "duration": [1048, 1064, 1226]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [1247, 1272, 1278]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980777, "duration": [25197, 25943, 28928]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 66, "duration": [51, 51, 53]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [84, 111, 119]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 178640, "duration": [1854, 1885, 1891]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 136, "duration": [185, 202, 214]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 25, "duration": [206, 211, 218]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748828, "duration": [5570, 6326, 6335]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 47, "duration": [60, 63, 65]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [52, 53, 55]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 3783, "duration": [232, 237, 264]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14379, "duration": [975, 1293, 1449]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8754, "duration": [1781, 1790, 1929]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 273351, "duration": [2348, 2449, 2494]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65, "duration": [87, 87, 90]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [89, 99, 116]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 29487, "duration": [512, 611, 647]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 426, "duration": [210, 248, 271]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 52, "duration": [248, 252, 260]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 463674, "duration": [4055, 4170, 4627]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 128, "duration": [233, 253, 313]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [255, 264, 290]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 687518, "duration": [4814, 4831, 6129]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 88, "duration": [210, 237, 282]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 33, "duration": [178, 189, 195]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 638451, "duration": [4693, 4945, 4949]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 339, "duration": [488, 489, 510]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 58, "duration": [604, 624, 642]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1424119, "duration": [11162, 11563, 11655]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 114, "duration": [99, 113, 134]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 42, "duration": [109, 111, 121]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 16349, "duration": [401, 471, 743]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 129, "duration": [47, 52, 53]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 122, "duration": [67, 102, 110]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 16639, "duration": [576, 606, 615]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5942, "duration": [1677, 1860, 2064]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 20, "duration": [2069, 2093, 2119]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1004290, "duration": [7714, 8218, 9496]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 9831, "duration": [2353, 2357, 2884]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 5175, "duration": [4303, 4327, 5505]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 3815913, "duration": [24956, 25994, 27919]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 101, "duration": [313, 320, 327]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 26, "duration": [362, 375, 405]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 621002, "duration": [4564, 4617, 4963]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 42326, "duration": [3678, 3855, 3868]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 105, "duration": [6437, 6478, 6659]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 506318, "duration": [3835, 3945, 4006]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 110, "duration": [75, 77, 96]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 46, "duration": [78, 81, 85]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7141, "duration": [206, 224, 479]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3633, "duration": [553, 556, 933]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [776, 780, 781]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 341994, "duration": [2801, 2865, 2884]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 861, "duration": [261, 267, 292]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 98, "duration": [362, 372, 375]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 236925, "duration": [2238, 2266, 2767]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2784, "duration": [265, 285, 299]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 853, "duration": [565, 598, 663]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 254858, "duration": [2430, 2570, 2653]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 218, "duration": [79, 80, 94]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [94, 95, 127]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 7833, "duration": [254, 281, 424]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4083, "duration": [1093, 1103, 1220]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 877, "duration": [2091, 2542, 2930]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 4171625, "duration": [28037, 28124, 28430]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2520, "duration": [267, 291, 297]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1404, "duration": [532, 554, 561]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 138987, "duration": [1546, 1863, 2031]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [255, 260, 262]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 28, "duration": [289, 307, 418]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1078395, "duration": [7507, 7854, 8181]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 92527, "duration": [9179, 9213, 10175]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 95, "duration": [15433, 15520, 16116]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4270464, "duration": [37675, 39937, 44332]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 60, "duration": [53, 56, 59]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [56, 60, 88]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 7172, "duration": [190, 197, 210]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1015, "duration": [217, 224, 227]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 86, "duration": [346, 352, 362]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 200981, "duration": [1891, 1896, 2116]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4474, "duration": [469, 563, 647]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3236, "duration": [953, 978, 1128]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 360654, "duration": [2864, 2973, 2993]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 980, "duration": [288, 306, 322]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 784, "duration": [751, 785, 968]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168065, "duration": [27521, 28290, 29458]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 284, "duration": [210, 214, 245]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 214, "duration": [266, 270, 279]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 126816, "duration": [1552, 1584, 1611]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 83, "duration": [115, 118, 120]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 16, "duration": [130, 132, 145]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 55586, "duration": [998, 1052, 1306]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 58, "duration": [35, 35, 37]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 54, "duration": [44, 53, 61]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 15162, "duration": [319, 329, 476]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 201, "duration": [125, 146, 164]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [123, 126, 131]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 170597, "duration": [1692, 1701, 2008]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 434, "duration": [207, 214, 218]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [250, 274, 280]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 26300, "duration": [560, 690, 869]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3258, "duration": [1483, 1488, 1571]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 244, "duration": [1793, 1816, 1842]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 467039, "duration": [3750, 3913, 4065]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 121, "duration": [997, 1055, 1451]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 20, "duration": [994, 1003, 1014]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 635117, "duration": [4745, 4885, 5197]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4708, "duration": [662, 678, 688]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1322, "duration": [1144, 1148, 1222]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 487676, "duration": [3595, 3784, 3932]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3919, "duration": [979, 1149, 1192]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1515, "duration": [1175, 1180, 1323]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 144566, "duration": [1654, 1811, 1825]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 234, "duration": [181, 185, 209]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 151, "duration": [230, 234, 239]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 192019, "duration": [1949, 1982, 2250]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8481, "duration": [4331, 4487, 4990]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 82, "duration": [5092, 5138, 5275]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 778663, "duration": [5613, 5635, 6125]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 24, "duration": [132, 139, 153]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 19, "duration": [130, 135, 137]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 231009, "duration": [2496, 2636, 3877]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2050, "duration": [294, 297, 335]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 314, "duration": [436, 451, 457]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 89056, "duration": [1147, 1173, 1301]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 319, "duration": [153, 157, 169]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [183, 185, 185]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 41550, "duration": [840, 867, 945]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1982, "duration": [325, 339, 360]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [529, 547, 565]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 126649, "duration": [1411, 1487, 1797]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 652, "duration": [183, 186, 220]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [260, 265, 282]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 148177, "duration": [1485, 1605, 1641]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 372, "duration": [203, 205, 211]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 115, "duration": [227, 239, 288]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 27089, "duration": [533, 794, 834]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 169, "duration": [200, 203, 212]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 65, "duration": [230, 231, 248]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 536978, "duration": [4246, 4327, 4362]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 16193, "duration": [1836, 1886, 2177]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2840, "duration": [3652, 3766, 4275]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 686232, "duration": [5791, 5895, 6538]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 21, "duration": [83, 88, 112]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [92, 94, 106]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748534, "duration": [5757, 6061, 6157]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2570, "duration": [484, 489, 547]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 33, "duration": [681, 722, 813]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 155369, "duration": [1820, 1852, 2018]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6165, "duration": [1004, 1010, 1079]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 255, "duration": [1284, 1286, 1292]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 126586, "duration": [1502, 1590, 1841]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 425, "duration": [211, 224, 263]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [247, 247, 251]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 36113, "duration": [645, 646, 772]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 237, "duration": [590, 593, 598]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 37, "duration": [728, 749, 756]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3837687, "duration": [28996, 29217, 29688]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 660, "duration": [176896, 181575, 182528]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 79, "duration": [189, 191, 196]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 4168064, "duration": [40345, 41341, 41657]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 748535, "duration": [11100, 11207, 11630]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 79, "duration": [220873, 224631, 229382]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 4168064, "duration": [272074, 273495, 274026]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1950439, "duration": [246228, 250372, 253009]}], "lucene-8.10.1": [{"query": "the", "tags": ["term"], "count": 4168064, "duration": [39770, 41127, 41353]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 79, "duration": [159, 169, 219]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [225, 270, 279]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 15456, "duration": [610, 906, 1043]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 195, "duration": [108, 117, 159]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 110, "duration": [127, 131, 180]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 4173, "duration": [361, 378, 456]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 856, "duration": [351, 366, 427]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 112, "duration": [433, 471, 481]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 104150, "duration": [1571, 1643, 1724]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [262, 290, 297]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [372, 415, 422]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 54291, "duration": [1460, 1508, 1689]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 266, "duration": [629, 638, 1091]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 18, "duration": [790, 811, 934]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 195119, "duration": [3795, 3797, 4028]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2173, "duration": [1122, 1144, 1175]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [1191, 1198, 1203]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 167943, "duration": [3099, 3140, 3446]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14165, "duration": [2649, 2875, 2974]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [3642, 4069, 4816]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 612165, "duration": [9966, 10012, 10258]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 85, "duration": [99, 111, 126]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 56, "duration": [160, 170, 192]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 7747, "duration": [399, 413, 511]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 693, "duration": [919, 999, 1168]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [1050, 1089, 1306]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 397912, "duration": [7006, 7089, 7749]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7346, "duration": [4028, 5110, 6278]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 201, "duration": [11546, 11595, 11616]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 4173861, "duration": [63645, 68365, 70628]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4496, "duration": [1083, 1083, 1086]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 307, "duration": [1657, 1675, 1717]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 454176, "duration": [7413, 7470, 8793]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 161, "duration": [608, 639, 664]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [632, 640, 685]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 336807, "duration": [5740, 5883, 7018]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1055, "duration": [336, 353, 436]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 177, "duration": [488, 500, 561]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 61359, "duration": [1689, 1747, 1915]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3760, "duration": [1076, 1112, 1560]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 252, "duration": [1401, 1426, 1642]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 151582, "duration": [2932, 2939, 3384]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 569, "duration": [413, 442, 573]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [518, 546, 584]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 86776, "duration": [1966, 2028, 2112]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [239, 313, 479]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [259, 298, 325]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 249193, "duration": [4474, 4600, 5242]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 81, "duration": [163, 175, 205]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [213, 215, 217]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 20969, "duration": [1253, 1600, 1651]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4617, "duration": [1366, 1402, 1413]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 141, "duration": [1664, 1696, 1775]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 194083, "duration": [3614, 3702, 3751]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 107, "duration": [259, 276, 321]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 64, "duration": [336, 344, 397]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1192562, "duration": [18351, 18488, 19578]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1239, "duration": [1182, 1182, 1209]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 566, "duration": [1992, 2027, 2055]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 510849, "duration": [8622, 8893, 9192]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7014, "duration": [1731, 1842, 1899]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 329, "duration": [2085, 2209, 2313]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 170364, "duration": [3209, 3287, 3313]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48653, "duration": [2122, 2165, 2232]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 44879, "duration": [4588, 4677, 4741]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 151349, "duration": [3277, 3295, 3747]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 137, "duration": [460, 492, 613]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 53, "duration": [423, 429, 444]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 95654, "duration": [2390, 2586, 3982]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7387, "duration": [1554, 1827, 2082]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 302, "duration": [2025, 2034, 2041]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 260381, "duration": [4632, 4664, 5278]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5040, "duration": [1331, 1403, 1822]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 70, "duration": [1543, 1575, 1597]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 217122, "duration": [3833, 3934, 4284]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1917, "duration": [1301, 1337, 1558]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 94, "duration": [1942, 1952, 2052]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 584269, "duration": [9650, 9747, 9926]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 733, "duration": [464, 465, 485]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 76, "duration": [480, 488, 724]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 46081, "duration": [1644, 1769, 2191]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 421, "duration": [908, 964, 1243]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 61, "duration": [1237, 1243, 1374]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 401520, "duration": [6723, 6882, 7197]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1187, "duration": [430, 431, 652]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [676, 697, 700]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 160168, "duration": [2625, 2627, 2664]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 475, "duration": [1006, 1036, 1168]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [1316, 1480, 1729]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 402259, "duration": [7100, 7131, 7211]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 604, "duration": [433, 463, 505]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [561, 570, 584]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 99117, "duration": [2033, 2129, 2412]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65770, "duration": [5059, 5061, 5176]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [8865, 9026, 9289]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 825043, "duration": [13118, 13570, 13572]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6146, "duration": [1469, 1677, 1705]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1999, 2040, 2092]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 298137, "duration": [5074, 5426, 5464]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 13581, "duration": [1896, 2007, 2241]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1894, "duration": [2925, 3016, 3358]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 229696, "duration": [4160, 4169, 4538]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 314, "duration": [147, 148, 167]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 288, "duration": [188, 188, 194]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 10040, "duration": [593, 723, 733]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6957, "duration": [2990, 3019, 3888]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [3812, 3827, 3862]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 702120, "duration": [11897, 12677, 13554]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13996, "duration": [5830, 5870, 6501]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [8639, 9062, 9523]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1251867, "duration": [22558, 23236, 23482]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4268, "duration": [2462, 2608, 2673]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 440, "duration": [3411, 3524, 4600]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 909970, "duration": [15317, 15419, 15623]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 23, "duration": [92, 104, 109]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [101, 120, 147]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 10684, "duration": [375, 575, 677]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 157, "duration": [281, 313, 350]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [329, 352, 725]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 35325, "duration": [1849, 2035, 2241]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1316, "duration": [2243, 2254, 2350]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1156, "duration": [4342, 4466, 4830]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269120, "duration": [101525, 103290, 105077]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 43372, "duration": [10263, 10386, 10577]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15089, "duration": [27607, 28231, 28489]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806414, "duration": [61221, 64520, 65082]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 239, "duration": [282, 290, 314]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 124, "duration": [367, 418, 421]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 333268, "duration": [3781, 3789, 3818]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 618, "duration": [703, 891, 956]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 168, "duration": [931, 950, 973]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970283, "duration": [17191, 17769, 17772]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 44521, "duration": [10771, 10968, 11096]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 4100, "duration": [25977, 26529, 27542]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 3808757, "duration": [61911, 62445, 64400]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 960, "duration": [482, 489, 876]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 244, "duration": [805, 815, 876]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 134727, "duration": [2659, 2781, 2784]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1490, "duration": [835, 836, 956]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [1107, 1119, 1142]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 106587, "duration": [2421, 2789, 3457]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3574, "duration": [1159, 1165, 1414]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1021, "duration": [1491, 1580, 1628]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 146818, "duration": [2872, 2995, 3018]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 20, "duration": [92, 97, 125]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [111, 128, 227]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 82708, "duration": [1035, 1043, 1153]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [121, 141, 264]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [81, 91, 147]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1791, "duration": [166, 176, 422]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 3397, "duration": [4109, 4111, 4505]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 12, "duration": [5401, 5468, 5472]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4053765, "duration": [81386, 85974, 89176]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 429, "duration": [251, 276, 306]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 41, "duration": [365, 373, 455]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 130601, "duration": [1735, 1749, 1756]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2860, "duration": [631, 679, 701]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 828, "duration": [672, 678, 738]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 54702, "duration": [1711, 1812, 1879]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10899, "duration": [5537, 5573, 6827]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 922, "duration": [11073, 11324, 11522]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806986, "duration": [61469, 61738, 64097]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [168, 213, 265]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [185, 203, 273]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 11759, "duration": [575, 764, 1264]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 443, "duration": [626, 799, 1370]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [964, 1005, 1018]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798567, "duration": [55825, 56261, 62388]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1994, "duration": [2761, 2788, 2845]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1444, "duration": [5794, 5831, 6388]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269267, "duration": [101436, 102204, 109221]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 418, "duration": [568, 570, 1050]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 224, "duration": [936, 942, 1194]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798846, "duration": [54635, 57277, 58049]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10806, "duration": [1709, 2001, 2222]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 831, "duration": [2531, 2535, 2914]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 401948, "duration": [6509, 6833, 6942]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 90, "duration": [126, 215, 271]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [126, 154, 191]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7731, "duration": [380, 392, 478]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3336, "duration": [967, 1038, 1169]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [1386, 1451, 1479]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 237265, "duration": [4065, 4254, 4268]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48, "duration": [97, 102, 109]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [139, 141, 254]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 5320, "duration": [240, 258, 384]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1751, "duration": [412, 437, 512]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1335, "duration": [694, 755, 829]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 79894, "duration": [1792, 1906, 2454]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 19247, "duration": [2956, 3112, 3168]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 626, "duration": [3728, 3824, 4013]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 301066, "duration": [5146, 5336, 7291]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [143, 147, 272]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 81, "duration": [234, 235, 284]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 21776, "duration": [922, 1003, 1363]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3980, "duration": [348, 379, 536]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3891, "duration": [708, 999, 1010]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 43534, "duration": [1299, 1481, 1485]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 109, "duration": [236, 295, 349]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 97, "duration": [297, 321, 337]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 47760, "duration": [1449, 1458, 1884]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 61, "duration": [138, 149, 241]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [197, 199, 243]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 14465, "duration": [766, 1016, 1838]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2638, "duration": [1170, 1196, 1213]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 60, "duration": [1321, 1342, 1345]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 301693, "duration": [4956, 5149, 5235]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 12, "duration": [194, 210, 255]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [122, 126, 154]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 57879, "duration": [1104, 1113, 1191]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1238, "duration": [976, 979, 990]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 391, "duration": [1441, 1453, 1510]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970192, "duration": [16691, 17537, 17893]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 415, "duration": [1494, 1573, 1702]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [1551, 1578, 1920]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4316960, "duration": [103775, 110018, 110106]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3896, "duration": [1093, 1209, 1234]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1590, 1598, 1603]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 153516, "duration": [2949, 2992, 3521]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 896, "duration": [240, 289, 316]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 475, "duration": [350, 422, 428]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 36406, "duration": [1573, 1713, 2527]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1044, "duration": [471, 484, 530]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 74, "duration": [571, 659, 747]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 52377, "duration": [1805, 1910, 1929]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1550, "duration": [494, 537, 552]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 131, "duration": [699, 709, 718]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 150258, "duration": [2741, 2778, 2787]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1246, "duration": [601, 625, 1204]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 235, "duration": [588, 695, 784]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 66350, "duration": [1851, 1976, 2040]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5054, "duration": [1138, 1281, 1373]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [1604, 1698, 1852]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 310479, "duration": [5247, 5295, 5349]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 24403, "duration": [2608, 2658, 4043]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12115, "duration": [4937, 5015, 5121]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 503137, "duration": [8101, 8264, 8530]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2540, "duration": [697, 813, 859]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 59, "duration": [1130, 1200, 1550]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 200883, "duration": [3550, 3554, 3595]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 96618, "duration": [9026, 9193, 9225]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1140, "duration": [15475, 15526, 15923]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1038231, "duration": [16541, 17834, 18116]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5964, "duration": [1812, 1892, 1894]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 256, "duration": [2477, 2634, 3101]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 402607, "duration": [6542, 7031, 7797]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 142, "duration": [122, 128, 135]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 142, "duration": [144, 222, 294]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 10007, "duration": [647, 730, 1082]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2001, "duration": [1864, 1865, 2012]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [3919, 3954, 4017]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168649, "duration": [62143, 62350, 65037]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2315, "duration": [394, 520, 536]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [608, 654, 694]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 51200, "duration": [1307, 1496, 1524]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6825, "duration": [986, 1066, 1289]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2155, "duration": [1528, 1627, 1678]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 114383, "duration": [2468, 2480, 2625]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 47, "duration": [524, 530, 576]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 33, "duration": [662, 671, 676]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4068900, "duration": [96451, 101700, 105742]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4125, "duration": [1087, 1321, 1527]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [1675, 1685, 1738]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 272980, "duration": [4577, 4770, 4996]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4710, "duration": [872, 979, 1089]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2046, "duration": [1269, 1328, 1610]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 193597, "duration": [3415, 3545, 3549]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8204, "duration": [3748, 3876, 3984]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [5223, 5285, 5437]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 854242, "duration": [14131, 14149, 14328]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1608, "duration": [527, 561, 713]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [663, 673, 828]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 66857, "duration": [1866, 1917, 1950]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 328, "duration": [257, 339, 401]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 97, "duration": [327, 336, 363]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 32425, "duration": [1807, 1891, 2869]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [128, 157, 205]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [160, 167, 167]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 39428, "duration": [1718, 1891, 1941]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10203, "duration": [5152, 5217, 5251]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [8816, 8846, 8946]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 2470107, "duration": [44456, 46305, 46569]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 55, "duration": [169, 174, 188]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 43, "duration": [176, 199, 209]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 58784, "duration": [876, 913, 2076]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 901, "duration": [347, 377, 422]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 213, "duration": [508, 509, 626]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 73481, "duration": [1730, 1800, 1973]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7776, "duration": [1220, 1433, 2229]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3077, "duration": [1848, 1923, 2041]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 127400, "duration": [2645, 2681, 2835]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1282, "duration": [2507, 2527, 2610]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 31, "duration": [3756, 4035, 4272]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 961109, "duration": [18187, 18500, 18604]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 155, "duration": [211, 222, 232]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 45, "duration": [265, 284, 316]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 280642, "duration": [2871, 2997, 3013]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 51, "duration": [209, 216, 222]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 35, "duration": [277, 281, 435]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 102668, "duration": [2453, 2492, 2921]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1997, "duration": [793, 846, 869]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 93, "duration": [1142, 1174, 1253]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 212065, "duration": [3726, 3817, 3833]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1613, "duration": [650, 692, 743]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [884, 895, 915]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 109701, "duration": [2359, 2373, 2437]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 593, "duration": [196, 210, 231]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 373, "duration": [278, 292, 353]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 32570, "duration": [866, 974, 1633]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 358, "duration": [188, 199, 288]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 89, "duration": [237, 267, 270]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 29690, "duration": [1280, 1383, 1387]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [263, 306, 383]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [273, 338, 345]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 23089, "duration": [1124, 1375, 1859]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7853, "duration": [4133, 4471, 4724]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 140, "duration": [10919, 11191, 11571]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169493, "duration": [64051, 66203, 66778]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 207, "duration": [113, 126, 391]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [270, 273, 496]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 8017, "duration": [433, 435, 576]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3053, "duration": [763, 841, 878]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 100, "duration": [1027, 1058, 1164]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 132425, "duration": [2655, 2699, 2775]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 357, "duration": [161, 175, 185]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 328, "duration": [221, 241, 253]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 10614, "duration": [953, 1056, 1057]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 158, "duration": [319, 344, 352]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [223, 227, 239]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 22473, "duration": [949, 1298, 1332]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1927, "duration": [562, 608, 611]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 681, "duration": [804, 834, 852]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 88332, "duration": [2071, 2076, 2095]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 644, "duration": [326, 340, 356]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 73, "duration": [511, 524, 559]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 103711, "duration": [1984, 2054, 2387]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13480, "duration": [5967, 6061, 6176]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 969, "duration": [7331, 7354, 8072]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 918169, "duration": [15503, 15553, 16095]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 8141, "duration": [1884, 1964, 2266]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [2325, 2419, 2445]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 375689, "duration": [6120, 6371, 6419]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 278, "duration": [633, 667, 704]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [662, 677, 1064]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 212074, "duration": [4004, 4075, 4109]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 266, "duration": [187, 189, 218]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 135, "duration": [277, 301, 356]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 16569, "duration": [632, 640, 1117]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 22, "duration": [90, 94, 98]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [99, 100, 150]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 6674, "duration": [505, 512, 648]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1329, "duration": [1397, 1918, 1953]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 42, "duration": [1735, 1808, 1865]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 281073, "duration": [5134, 5188, 5230]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 240, "duration": [217, 222, 274]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [266, 273, 388]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 38213, "duration": [1646, 1687, 1771]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 867, "duration": [257, 327, 356]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [314, 328, 335]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 28879, "duration": [1640, 1644, 1758]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 406, "duration": [322, 323, 333]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 318, "duration": [459, 465, 475]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 345824, "duration": [3800, 3905, 3967]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1913, "duration": [697, 759, 823]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 171, "duration": [760, 764, 805]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 70020, "duration": [1718, 2102, 2192]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 84, "duration": [106, 118, 134]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [108, 152, 155]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 10103, "duration": [310, 332, 339]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 444, "duration": [620, 634, 636]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [809, 828, 829]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 165540, "duration": [3326, 3504, 3559]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1457, "duration": [1745, 1808, 2177]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 131, "duration": [3198, 3283, 3370]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 4174359, "duration": [63665, 63883, 65741]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11192, "duration": [1707, 1871, 2559]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [2768, 2921, 2925]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 264631, "duration": [4629, 4838, 4861]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 466, "duration": [375, 414, 414]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [440, 464, 497]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 55152, "duration": [1757, 1829, 2104]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1061, "duration": [1360, 1474, 1512]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 74, "duration": [1458, 1486, 1500]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 194085, "duration": [3934, 4034, 4883]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 164, "duration": [123, 130, 160]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 121, "duration": [170, 200, 330]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 12785, "duration": [799, 889, 1642]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 290, "duration": [313, 389, 579]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 277, "duration": [490, 503, 670]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 352602, "duration": [5959, 6142, 6261]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1111, "duration": [368, 429, 442]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 963, "duration": [632, 632, 762]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 162074, "duration": [2441, 2617, 2692]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 608, "duration": [484, 513, 532]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 485, "duration": [561, 575, 587]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 231765, "duration": [4046, 4255, 4439]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 122, "duration": [357, 387, 496]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 10, "duration": [515, 525, 668]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 217412, "duration": [4085, 4134, 4275]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 118291, "duration": [11105, 11114, 11323]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21737, "duration": [57878, 59427, 59962]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168234, "duration": [61442, 61791, 65717]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 367, "duration": [292, 304, 345]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [381, 392, 534]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 33310, "duration": [1125, 1551, 1582]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 192, "duration": [204, 234, 245]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [286, 289, 433]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 46274, "duration": [1359, 1550, 2211]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 180, "duration": [358, 384, 469]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 143, "duration": [461, 487, 735]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 268624, "duration": [4689, 4692, 4737]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2130, "duration": [2207, 2217, 2569]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [3136, 3204, 3226]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 2372213, "duration": [38605, 38779, 41890]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 248, "duration": [252, 254, 668]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 68, "duration": [268, 310, 316]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 47084, "duration": [1517, 1531, 1534]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [139, 160, 177]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 226, "duration": [125, 144, 154]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 4838, "duration": [371, 407, 416]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 78, "duration": [122, 136, 154]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [145, 152, 169]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 17211, "duration": [1047, 1105, 1190]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1532, "duration": [640, 649, 659]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 173, "duration": [887, 900, 975]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 76229, "duration": [2183, 2207, 2211]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2422, "duration": [196, 201, 290]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2381, "duration": [465, 472, 486]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 6515, "duration": [470, 483, 491]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1633, "duration": [391, 436, 520]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 123, "duration": [590, 612, 640]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 73305, "duration": [1656, 1834, 1982]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4110, "duration": [3070, 3090, 3107]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 60, "duration": [4171, 4290, 4496]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 2315795, "duration": [39717, 41576, 42469]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [325, 342, 410]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [532, 534, 541]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 92901, "duration": [1788, 1863, 2075]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 131, "duration": [626, 630, 713]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [786, 799, 840]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 226887, "duration": [4511, 4564, 4727]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1539, "duration": [1071, 1103, 1129]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 79, "duration": [1407, 1453, 1462]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 322018, "duration": [5857, 6084, 6553]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1358, "duration": [584, 653, 706]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [785, 816, 949]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 68175, "duration": [2151, 2213, 2383]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 813, "duration": [430, 441, 551]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 67, "duration": [505, 541, 692]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 62207, "duration": [1991, 2077, 2304]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [251, 252, 286]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [203, 309, 438]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 33193, "duration": [656, 810, 1082]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3401, "duration": [953, 963, 1047]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 821, "duration": [1211, 1287, 1420]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 134076, "duration": [2657, 2848, 2926]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2416, "duration": [715, 734, 774]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [1003, 1047, 1157]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 105084, "duration": [2204, 2223, 2337]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 162, "duration": [253, 292, 307]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [422, 578, 935]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168064, "duration": [38109, 40270, 41071]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 361, "duration": [313, 330, 381]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [470, 504, 527]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 167104, "duration": [2371, 2372, 2424]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 679, "duration": [1207, 1229, 1240]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [1618, 1627, 1630]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 730213, "duration": [12106, 12727, 13003]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5744, "duration": [1299, 1603, 1952]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [1742, 1764, 1778]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 222790, "duration": [4246, 4269, 5483]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 377, "duration": [984, 1007, 1068]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 16, "duration": [1259, 1261, 1509]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 774500, "duration": [14070, 14860, 14934]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 639, "duration": [500, 549, 622]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [639, 650, 688]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 188645, "duration": [3122, 3181, 3209]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 138, "duration": [246, 285, 351]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [178, 184, 196]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 14092, "duration": [864, 900, 1498]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5577, "duration": [1695, 1716, 1817]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [2213, 2294, 2477]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 310569, "duration": [5223, 5228, 5417]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 29, "duration": [100, 131, 157]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [139, 153, 352]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 14156, "duration": [591, 757, 792]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 144, "duration": [175, 255, 332]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [236, 251, 281]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 69112, "duration": [1354, 1369, 1412]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2936, "duration": [938, 992, 1014]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 611, "duration": [1151, 1193, 1220]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 192280, "duration": [3392, 3419, 3601]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9630, "duration": [1538, 1609, 1932]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 181, "duration": [2498, 2601, 2866]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 389360, "duration": [6411, 6430, 6548]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 490, "duration": [136, 161, 213]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 414, "duration": [267, 281, 366]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 11304, "duration": [1016, 1016, 1019]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 431, "duration": [470, 475, 673]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 115, "duration": [807, 818, 871]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 308550, "duration": [5194, 5233, 5428]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6560, "duration": [4342, 4509, 4522]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 16, "duration": [8347, 8499, 8643]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 4014085, "duration": [67279, 69455, 70214]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1218, "duration": [545, 561, 715]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [655, 658, 712]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 119020, "duration": [2498, 2692, 3894]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 531, "duration": [433, 434, 555]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 82, "duration": [514, 618, 758]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 43329, "duration": [1570, 1764, 2046]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2111, "duration": [685, 704, 987]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [961, 962, 1021]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 159993, "duration": [2967, 2987, 3027]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 370, "duration": [164, 192, 197]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [193, 194, 213]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 11717, "duration": [735, 752, 1108]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 25282, "duration": [3302, 3305, 3510]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 210, "duration": [5375, 5381, 5593]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 909593, "duration": [13784, 13971, 14511]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 350, "duration": [691, 699, 723]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 141, "duration": [902, 914, 974]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 758590, "duration": [12378, 12456, 13179]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1273, "duration": [703, 745, 910]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [1216, 1247, 1537]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 349637, "duration": [5574, 5705, 6039]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 220, "duration": [141, 190, 212]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 206, "duration": [155, 198, 208]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 7958, "duration": [719, 745, 922]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 30970, "duration": [3856, 4153, 4350]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 272, "duration": [5674, 5683, 6001]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 446943, "duration": [7570, 7650, 7795]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 112, "duration": [446, 459, 464]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [461, 467, 493]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 51473, "duration": [2212, 2250, 2271]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1763, "duration": [963, 1009, 1110]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [1127, 1162, 1183]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 266528, "duration": [4400, 4467, 4565]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5003, "duration": [3687, 3690, 3831]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [5761, 7115, 8556]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980371, "duration": [59704, 64643, 65046]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [265, 286, 428]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 158, "duration": [310, 340, 363]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 21196, "duration": [717, 755, 784]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5094, "duration": [3524, 3547, 3846]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 419, "duration": [7643, 8318, 8716]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169609, "duration": [62723, 65722, 66045]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1216, "duration": [527, 528, 545]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 50, "duration": [778, 784, 864]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 196687, "duration": [3338, 3476, 3552]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 56, "duration": [91, 98, 123]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 53, "duration": [122, 122, 142]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 144768, "duration": [1510, 1536, 1641]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [609, 648, 653]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [745, 752, 759]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 727128, "duration": [12027, 12328, 12688]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 176, "duration": [394, 453, 573]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [546, 604, 643]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168609, "duration": [62670, 65724, 69038]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 521, "duration": [128, 145, 168]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 516, "duration": [222, 227, 297]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 11727, "duration": [827, 839, 939]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [338, 360, 374]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [614, 722, 806]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 100754, "duration": [1942, 2044, 2105]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [74, 76, 91]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 35, "duration": [102, 132, 139]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 63, "duration": [65, 124, 259]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 425, "duration": [1024, 1052, 1396]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [1237, 1244, 1325]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 279042, "duration": [5069, 5330, 5369]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 757, "duration": [932, 968, 995]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [1159, 1166, 1230]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 292410, "duration": [5278, 5314, 5471]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 74, "duration": [77, 79, 150]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 52, "duration": [83, 91, 107]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1372, "duration": [242, 272, 337]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1159, "duration": [466, 472, 532]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 120, "duration": [682, 697, 918]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 146946, "duration": [2629, 2639, 2790]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6552, "duration": [859, 871, 884]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 6339, "duration": [843, 904, 1384]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 63852, "duration": [1521, 1693, 1790]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1950, "duration": [684, 760, 832]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [797, 798, 822]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 67801, "duration": [2233, 2234, 2394]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2956, "duration": [823, 846, 1205]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [1176, 1205, 1246]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 172197, "duration": [3138, 3202, 3280]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1145, "duration": [662, 664, 681]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 133, "duration": [895, 897, 930]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 139608, "duration": [2666, 2919, 3414]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 330, "duration": [269, 297, 308]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [373, 374, 442]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 75177, "duration": [1527, 1540, 1747]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 341, "duration": [292, 298, 328]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [345, 368, 428]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 65937, "duration": [1655, 1683, 1691]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 983, "duration": [1905, 1954, 2092]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 603, "duration": [3513, 3554, 3587]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269185, "duration": [95937, 101215, 101609]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1514, "duration": [1498, 1522, 1659]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 44, "duration": [2421, 2428, 2672]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 3107761, "duration": [46759, 48460, 49650]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 240, "duration": [501, 525, 586]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 27, "duration": [888, 913, 918]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168301, "duration": [61264, 65277, 73687]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 14, "duration": [93, 95, 102]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [99, 102, 106]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 16308, "duration": [611, 779, 1304]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2705, "duration": [1884, 1936, 2501]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 26, "duration": [2476, 2585, 2623]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 651176, "duration": [10734, 11159, 11389]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 125, "duration": [202, 218, 225]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [275, 276, 323]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 38349, "duration": [1026, 1100, 1233]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 606, "duration": [167, 181, 208]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 348, "duration": [214, 222, 269]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 8849, "duration": [849, 886, 1006]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2771, "duration": [1735, 1854, 1886]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 393, "duration": [2383, 2471, 2485]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 337147, "duration": [5941, 6282, 6493]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 537, "duration": [300, 309, 504]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [463, 465, 533]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 90307, "duration": [1906, 1907, 1955]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 94, "duration": [194, 234, 281]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 69, "duration": [193, 214, 249]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 53641, "duration": [1518, 1674, 1904]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2723, "duration": [862, 881, 943]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 638, "duration": [1186, 1187, 1217]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 132261, "duration": [2667, 2721, 2756]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 489, "duration": [459, 497, 572]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [607, 634, 835]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 75263, "duration": [1940, 1949, 2795]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9989, "duration": [1563, 1614, 1718]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1886, 1949, 1986]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 178211, "duration": [3411, 3425, 3521]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1195, "duration": [708, 727, 999]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [1108, 1158, 1291]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 477882, "duration": [6808, 7034, 7126]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 834, "duration": [352, 362, 405]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [486, 487, 495]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 68527, "duration": [1634, 1651, 1713]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 424, "duration": [505, 508, 600]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 39, "duration": [725, 777, 966]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 294537, "duration": [4107, 4213, 4216]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 400, "duration": [719, 745, 787]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 137, "duration": [985, 1165, 1200]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 555477, "duration": [9262, 9538, 9964]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10926, "duration": [2984, 3250, 3370]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 4589, "duration": [3946, 4164, 4301]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 962508, "duration": [14946, 15016, 16169]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 44, "duration": [162, 168, 239]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [281, 294, 376]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 22177, "duration": [1176, 1221, 1946]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1249, "duration": [502, 538, 565]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 55, "duration": [677, 692, 699]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 183559, "duration": [3056, 3077, 3398]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6482, "duration": [1942, 2157, 2458]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2037, "duration": [2880, 2922, 3010]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 318670, "duration": [5968, 6051, 6503]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3112, "duration": [2458, 2603, 2730]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [4529, 4651, 5705]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3802855, "duration": [60148, 60200, 62480]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 2192, "duration": [2041, 2195, 2245]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 163, "duration": [2451, 2541, 2567]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 254583, "duration": [5693, 5751, 6120]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 76, "duration": [197, 197, 316]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [232, 249, 369]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 162351, "duration": [3142, 3283, 3674]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 571, "duration": [906, 915, 940]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1375, 1585, 1629]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 620188, "duration": [10455, 11223, 11344]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 415, "duration": [222, 274, 301]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 117, "duration": [314, 314, 323]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 91128, "duration": [1378, 1416, 1438]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 739, "duration": [224, 237, 250]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 298, "duration": [217, 228, 372]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 9778, "duration": [895, 1017, 1152]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 301, "duration": [358, 448, 854]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 24, "duration": [455, 469, 477]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 140156, "duration": [2313, 2360, 2362]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 31324, "duration": [6669, 6752, 7110]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8245, "duration": [22722, 22805, 23897]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168226, "duration": [61205, 63027, 65701]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 381, "duration": [132, 150, 161]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 341, "duration": [190, 206, 207]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 11347, "duration": [990, 1053, 1102]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1929, "duration": [803, 875, 919]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 34, "duration": [1321, 1342, 1436]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 485132, "duration": [6981, 7291, 7342]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 293, "duration": [718, 718, 775]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 251, "duration": [1114, 1121, 1302]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3800825, "duration": [57672, 60498, 61961]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 40, "duration": [84, 95, 301]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [212, 227, 258]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 4010, "duration": [291, 347, 384]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1002, "duration": [589, 596, 601]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [556, 651, 676]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 57181, "duration": [1483, 1608, 1774]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11227, "duration": [2670, 2678, 2860]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [3504, 3584, 3593]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 324999, "duration": [5880, 5915, 6631]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2871, "duration": [2102, 2142, 2198]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 48, "duration": [2953, 3170, 3200]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1012784, "duration": [16264, 17046, 17522]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1241, "duration": [1462, 1629, 1771]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 443, "duration": [2447, 2474, 2522]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806173, "duration": [59978, 60364, 63144]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8686, "duration": [4596, 4690, 4757]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [12337, 12458, 12638]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168904, "duration": [63106, 65625, 66655]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2488, "duration": [595, 635, 680]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1598, "duration": [910, 963, 1150]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 121970, "duration": [2415, 2511, 3261]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1791, "duration": [720, 733, 754]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [873, 874, 922]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 152743, "duration": [2846, 2949, 2967]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [261, 299, 303]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [365, 404, 549]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 126726, "duration": [1773, 1939, 2028]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9823, "duration": [1680, 1728, 1918]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1790, "duration": [2569, 2616, 2651]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 212022, "duration": [3792, 3795, 3982]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 373, "duration": [256, 265, 285]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [393, 421, 513]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 148462, "duration": [1951, 2321, 2417]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 97, "duration": [107, 110, 127]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [168, 213, 214]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 7393, "duration": [488, 640, 720]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3519, "duration": [1260, 1316, 1635]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [1539, 1577, 1589]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 355372, "duration": [6046, 6072, 6236]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7697, "duration": [4615, 4753, 4978]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 55, "duration": [8433, 8473, 8594]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 4015608, "duration": [64213, 67012, 68454]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 55, "duration": [152, 173, 272]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [162, 163, 181]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 11520, "duration": [1211, 1215, 1253]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2703, "duration": [2235, 2387, 2391]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [3653, 3656, 3662]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980777, "duration": [59730, 60894, 63442]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 66, "duration": [111, 141, 153]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [206, 214, 232]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 178640, "duration": [1769, 1862, 2459]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 136, "duration": [464, 464, 591]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 25, "duration": [520, 544, 550]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748828, "duration": [14186, 14272, 14294]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 47, "duration": [119, 130, 177]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [96, 99, 131]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 3783, "duration": [429, 460, 489]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14379, "duration": [2073, 2141, 2247]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8754, "duration": [2691, 2724, 2791]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 273351, "duration": [4644, 4675, 4929]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65, "duration": [141, 155, 171]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [176, 194, 280]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 29487, "duration": [759, 891, 1198]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 426, "duration": [644, 647, 717]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 52, "duration": [771, 795, 899]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 463674, "duration": [8300, 8681, 8742]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 128, "duration": [449, 462, 471]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [609, 632, 671]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 687518, "duration": [11174, 11799, 11969]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 88, "duration": [510, 529, 569]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 33, "duration": [492, 515, 523]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 638451, "duration": [10403, 10894, 10914]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 339, "duration": [1347, 1435, 1487]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 58, "duration": [1937, 2086, 2297]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1424119, "duration": [28311, 29512, 30858]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 114, "duration": [141, 177, 203]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 42, "duration": [221, 223, 348]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 16349, "duration": [894, 1079, 1087]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 129, "duration": [115, 118, 141]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 122, "duration": [184, 216, 222]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 16639, "duration": [1070, 1097, 1141]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5942, "duration": [2799, 2981, 3486]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 20, "duration": [4589, 4734, 5151]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1004290, "duration": [18530, 18573, 19558]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 9831, "duration": [4993, 5074, 5787]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 5175, "duration": [9862, 9992, 10297]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 3815913, "duration": [57667, 57772, 57983]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 101, "duration": [477, 504, 615]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 26, "duration": [606, 660, 725]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 621002, "duration": [10423, 10652, 10711]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 42326, "duration": [4449, 4473, 4542]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 105, "duration": [6765, 7046, 7930]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 506318, "duration": [8469, 8880, 8991]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 110, "duration": [150, 171, 188]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 46, "duration": [131, 149, 167]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7141, "duration": [641, 690, 741]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3633, "duration": [1081, 1083, 1229]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [1496, 1519, 1573]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 341994, "duration": [5587, 5639, 6012]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 861, "duration": [585, 609, 696]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 98, "duration": [824, 831, 875]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 236925, "duration": [3806, 3903, 4007]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2784, "duration": [841, 1080, 1081]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 853, "duration": [1124, 1152, 1159]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 254858, "duration": [4296, 4428, 5836]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 218, "duration": [138, 151, 205]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [141, 183, 191]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 7833, "duration": [690, 742, 1002]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4083, "duration": [2991, 3036, 3873]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 877, "duration": [7702, 7778, 8106]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 4171625, "duration": [65024, 67235, 67692]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2520, "duration": [534, 561, 612]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1404, "duration": [983, 992, 1260]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 138987, "duration": [2650, 2674, 2718]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [570, 591, 718]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 28, "duration": [793, 816, 860]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1078395, "duration": [17302, 17365, 17414]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 92527, "duration": [24368, 24988, 25098]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 95, "duration": [79934, 81391, 81771]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4270464, "duration": [104679, 108320, 115008]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 60, "duration": [106, 132, 137]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [105, 111, 111]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 7172, "duration": [292, 450, 671]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1015, "duration": [470, 491, 748]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 86, "duration": [739, 867, 869]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 200981, "duration": [3122, 3143, 3202]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4474, "duration": [1348, 1508, 1548]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3236, "duration": [1809, 1846, 1948]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 360654, "duration": [5722, 5815, 5817]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 980, "duration": [784, 795, 812]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 784, "duration": [1407, 1427, 1783]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168065, "duration": [43567, 45029, 45577]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 284, "duration": [370, 380, 388]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 214, "duration": [509, 513, 547]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 126816, "duration": [2654, 2695, 2722]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 83, "duration": [193, 210, 220]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 16, "duration": [244, 248, 265]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 55586, "duration": [1472, 1498, 1520]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 58, "duration": [77, 79, 88]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 54, "duration": [100, 108, 165]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 15162, "duration": [373, 440, 531]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 201, "duration": [387, 390, 391]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [335, 340, 353]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 170597, "duration": [2143, 2161, 2200]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 434, "duration": [267, 276, 288]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [349, 355, 364]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 26300, "duration": [1509, 1629, 1828]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3258, "duration": [2092, 2121, 2417]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 244, "duration": [2838, 2847, 2865]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 467039, "duration": [8125, 8653, 8974]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 121, "duration": [1506, 1537, 1740]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 20, "duration": [1690, 1702, 1715]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 635117, "duration": [11112, 11183, 11617]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4708, "duration": [1280, 1321, 1418]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1322, "duration": [2068, 2081, 2507]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 487676, "duration": [7773, 8138, 8189]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3919, "duration": [1256, 1266, 1393]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1515, "duration": [1492, 1495, 1736]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 144566, "duration": [2850, 2872, 2948]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 234, "duration": [371, 397, 432]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 151, "duration": [483, 486, 531]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 192019, "duration": [3559, 3638, 3754]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8481, "duration": [5287, 5562, 6189]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 82, "duration": [6190, 6219, 6270]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 778663, "duration": [12875, 13522, 13549]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 24, "duration": [218, 245, 272]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 19, "duration": [235, 256, 370]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 231009, "duration": [4245, 4383, 4400]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2050, "duration": [440, 457, 545]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 314, "duration": [654, 710, 723]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 89056, "duration": [1918, 2058, 2139]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 319, "duration": [220, 243, 268]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [285, 330, 349]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 41550, "duration": [1644, 1715, 1778]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1982, "duration": [563, 566, 683]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [858, 943, 1031]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 126649, "duration": [2470, 2478, 2480]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 652, "duration": [401, 434, 542]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [569, 695, 764]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 148177, "duration": [2571, 2573, 2680]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 372, "duration": [262, 272, 497]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 115, "duration": [332, 334, 347]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 27089, "duration": [1218, 1634, 1858]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 169, "duration": [341, 375, 554]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 65, "duration": [446, 472, 492]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 536978, "duration": [8578, 8887, 8963]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 16193, "duration": [3805, 3976, 4325]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2840, "duration": [7091, 7281, 7403]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 686232, "duration": [14901, 15478, 15523]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 21, "duration": [176, 198, 253]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [172, 188, 258]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748534, "duration": [13563, 13614, 14522]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2570, "duration": [776, 791, 910]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 33, "duration": [993, 1129, 1361]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 155369, "duration": [2898, 2924, 2945]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6165, "duration": [1295, 1411, 1418]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 255, "duration": [1507, 1552, 1561]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 126586, "duration": [2745, 2775, 4192]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 425, "duration": [274, 277, 290]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [335, 366, 418]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 36113, "duration": [1440, 1451, 2110]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 237, "duration": [1306, 1376, 1612]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 37, "duration": [1610, 1624, 1797]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3837687, "duration": [66902, 71231, 71245]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 660, "duration": [42436, 43109, 43783]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 79, "duration": [626, 671, 1186]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 4168064, "duration": [39636, 41774, 42008]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 748534, "duration": [14094, 14493, 14909]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 79, "duration": [623, 649, 707]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 4168064, "duration": [40143, 42219, 45061]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 748534, "duration": [13858, 14261, 14627]}]}, "COUNT": {"tantivy-0.18": [{"query": "the", "tags": ["term"], "count": 4168064, "duration": [19, 20, 24]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 79, "duration": [106, 107, 107]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [121, 126, 177]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 15456, "duration": [99, 105, 142]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 195, "duration": [51, 55, 57]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 110, "duration": [69, 71, 73]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 4173, "duration": [76, 80, 81]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 856, "duration": [75, 76, 78]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 112, "duration": [176, 179, 197]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 104150, "duration": [200, 203, 213]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [122, 122, 151]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [193, 196, 252]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 54291, "duration": [148, 153, 157]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 266, "duration": [456, 458, 461]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 18, "duration": [510, 522, 525]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 195119, "duration": [334, 334, 340]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2173, "duration": [666, 668, 690]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [870, 881, 897]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 167943, "duration": [278, 280, 342]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14165, "duration": [1098, 1121, 1171]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [2334, 2377, 2385]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 612165, "duration": [891, 921, 931]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 85, "duration": [46, 47, 48]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 56, "duration": [61, 62, 62]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 7747, "duration": [82, 86, 87]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 693, "duration": [512, 534, 554]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [624, 633, 641]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 397912, "duration": [610, 616, 617]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7346, "duration": [1649, 1675, 1918]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 201, "duration": [2357, 2379, 2589]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 4173861, "duration": [5995, 6136, 6144]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4496, "duration": [285, 290, 291]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 307, "duration": [755, 757, 762]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 454176, "duration": [651, 667, 668]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 161, "duration": [219, 254, 278]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [262, 263, 277]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 336807, "duration": [500, 512, 515]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1055, "duration": [210, 211, 218]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 177, "duration": [318, 321, 322]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 61359, "duration": [157, 157, 173]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3760, "duration": [674, 681, 686]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 252, "duration": [1019, 1078, 1085]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 151582, "duration": [259, 267, 381]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 569, "duration": [283, 289, 292]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [360, 362, 366]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 86776, "duration": [178, 184, 186]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [79, 81, 81]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [84, 85, 86]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 249193, "duration": [385, 389, 393]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 81, "duration": [121, 122, 127]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [137, 140, 145]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 20969, "duration": [105, 106, 135]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4617, "duration": [817, 819, 823]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 141, "duration": [1251, 1256, 1262]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 194083, "duration": [309, 314, 315]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 107, "duration": [100, 100, 119]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 64, "duration": [145, 149, 150]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1192562, "duration": [1777, 1795, 1799]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1239, "duration": [536, 544, 556]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 566, "duration": [938, 943, 1054]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 510849, "duration": [777, 784, 812]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7014, "duration": [1073, 1086, 1105]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 329, "duration": [1704, 1706, 1762]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 170364, "duration": [281, 282, 290]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48653, "duration": [668, 680, 693]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 44879, "duration": [3657, 3672, 3756]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 151349, "duration": [314, 320, 460]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 137, "duration": [220, 223, 232]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 53, "duration": [256, 262, 264]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 95654, "duration": [213, 218, 225]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7387, "duration": [864, 867, 876]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 302, "duration": [1471, 1480, 1496]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 260381, "duration": [386, 392, 402]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5040, "duration": [691, 696, 701]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 70, "duration": [1098, 1108, 1451]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 217122, "duration": [338, 342, 345]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1917, "duration": [658, 665, 670]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 94, "duration": [908, 936, 1018]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 584269, "duration": [873, 886, 892]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 733, "duration": [299, 304, 308]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 76, "duration": [368, 376, 376]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 46081, "duration": [136, 140, 143]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 421, "duration": [602, 608, 612]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 61, "duration": [704, 709, 714]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 401520, "duration": [587, 618, 622]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1187, "duration": [143, 144, 147]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [319, 327, 330]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 160168, "duration": [267, 270, 272]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 475, "duration": [646, 652, 656]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [770, 775, 826]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 402259, "duration": [601, 619, 622]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 604, "duration": [256, 259, 276]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [344, 345, 351]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 99117, "duration": [195, 199, 204]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65770, "duration": [2667, 2675, 2697]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [7389, 7652, 7838]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 825043, "duration": [1248, 1253, 1274]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6146, "duration": [892, 901, 911]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1468, 1469, 1480]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 298137, "duration": [444, 454, 458]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 13581, "duration": [1177, 1179, 1221]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1894, "duration": [2407, 2415, 2423]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 229696, "duration": [371, 380, 399]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 314, "duration": [50, 51, 65]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 288, "duration": [75, 75, 76]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 10040, "duration": [89, 92, 95]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6957, "duration": [1226, 1226, 1238]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [2123, 2132, 2157]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 702120, "duration": [1085, 1096, 1105]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13996, "duration": [3048, 3096, 3102]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [4557, 4601, 4606]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1251867, "duration": [2148, 2197, 3045]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4268, "duration": [1158, 1177, 1201]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 440, "duration": [1772, 1793, 1824]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 909970, "duration": [1387, 1399, 1409]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 23, "duration": [42, 45, 50]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [45, 47, 55]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 10684, "duration": [89, 90, 93]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 157, "duration": [211, 212, 213]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [236, 242, 243]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 35325, "duration": [127, 132, 169]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1316, "duration": [583, 612, 655]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1156, "duration": [1800, 1844, 1859]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269120, "duration": [11102, 11109, 11187]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 43372, "duration": [2920, 2982, 3012]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15089, "duration": [10701, 10709, 10853]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806414, "duration": [6068, 6124, 6523]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 239, "duration": [97, 100, 103]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 124, "duration": [155, 156, 157]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 333268, "duration": [476, 478, 483]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 618, "duration": [201, 207, 213]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 168, "duration": [359, 368, 368]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970283, "duration": [1700, 1704, 1985]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 44521, "duration": [3334, 3387, 3692]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 4100, "duration": [8646, 8672, 8719]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 3808757, "duration": [5979, 6306, 6408]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 960, "duration": [303, 304, 306]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 244, "duration": [446, 449, 451]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 134727, "duration": [245, 252, 261]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1490, "duration": [667, 680, 692]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [821, 830, 830]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 106587, "duration": [253, 262, 289]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3574, "duration": [875, 879, 904]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1021, "duration": [1201, 1214, 1286]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 146818, "duration": [258, 259, 261]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 20, "duration": [32, 36, 49]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [42, 43, 53]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 82708, "duration": [173, 177, 180]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [34, 34, 35]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [42, 44, 46]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1791, "duration": [59, 63, 80]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 3397, "duration": [1528, 1573, 1595]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 12, "duration": [1933, 1939, 1955]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4053765, "duration": [9454, 9684, 9739]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 429, "duration": [67, 69, 103]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 41, "duration": [145, 151, 191]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 130601, "duration": [230, 232, 301]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2860, "duration": [275, 285, 288]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 828, "duration": [492, 494, 502]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 54702, "duration": [154, 155, 161]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10899, "duration": [1244, 1285, 1317]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 922, "duration": [3156, 3157, 3172]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806986, "duration": [5964, 6076, 6116]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [100, 104, 111]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [114, 119, 126]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 11759, "duration": [91, 96, 119]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 443, "duration": [267, 269, 276]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [439, 465, 465]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798567, "duration": [5356, 5419, 5534]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1994, "duration": [947, 975, 997]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1444, "duration": [2291, 2500, 2717]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269267, "duration": [10956, 11039, 11042]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 418, "duration": [309, 310, 377]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 224, "duration": [508, 514, 531]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798846, "duration": [5350, 5361, 5375]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10806, "duration": [632, 640, 650]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 831, "duration": [1538, 1590, 1621]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 401948, "duration": [578, 593, 597]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 90, "duration": [59, 61, 61]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [67, 68, 69]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7731, "duration": [86, 87, 88]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3336, "duration": [581, 596, 622]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [897, 914, 915]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 237265, "duration": [361, 366, 372]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48, "duration": [39, 42, 43]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [49, 51, 51]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 5320, "duration": [79, 80, 81]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1751, "duration": [187, 189, 201]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1335, "duration": [348, 354, 363]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 79894, "duration": [180, 183, 200]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 19247, "duration": [1822, 1843, 1863]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 626, "duration": [3290, 3307, 3332]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 301066, "duration": [446, 450, 450]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [64, 64, 66]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 81, "duration": [95, 96, 98]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 21776, "duration": [106, 112, 127]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3980, "duration": [64, 66, 66]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3891, "duration": [338, 339, 341]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 43534, "duration": [136, 148, 206]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 109, "duration": [126, 127, 169]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 97, "duration": [159, 160, 176]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 47760, "duration": [150, 152, 152]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 61, "duration": [79, 81, 136]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [94, 97, 113]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 14465, "duration": [97, 99, 100]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2638, "duration": [367, 379, 405]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 60, "duration": [684, 686, 788]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 301693, "duration": [433, 442, 444]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 12, "duration": [44, 48, 50]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [45, 47, 49]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 57879, "duration": [144, 147, 168]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1238, "duration": [261, 269, 272]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 391, "duration": [552, 554, 570]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970192, "duration": [1710, 1720, 1726]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 415, "duration": [624, 640, 750]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [919, 928, 946]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4316960, "duration": [11991, 12047, 12256]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3896, "duration": [878, 890, 898]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1220, 1277, 1288]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 153516, "duration": [259, 264, 266]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 896, "duration": [119, 121, 125]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 475, "duration": [209, 211, 226]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 36406, "duration": [123, 128, 129]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1044, "duration": [299, 300, 300]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 74, "duration": [400, 404, 412]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 52377, "duration": [151, 157, 166]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1550, "duration": [244, 246, 246]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 131, "duration": [409, 415, 423]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 150258, "duration": [257, 261, 270]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1246, "duration": [275, 290, 301]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 235, "duration": [387, 394, 427]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 66350, "duration": [158, 160, 160]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5054, "duration": [473, 476, 477]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [942, 953, 964]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 310479, "duration": [465, 479, 485]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 24403, "duration": [1334, 1362, 1376]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12115, "duration": [3356, 3455, 3493]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 503137, "duration": [733, 744, 760]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2540, "duration": [348, 356, 362]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 59, "duration": [636, 638, 640]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 200883, "duration": [321, 321, 325]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 96618, "duration": [6829, 6899, 6922]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1140, "duration": [14209, 14386, 14520]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1038231, "duration": [1524, 1603, 1629]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5964, "duration": [1110, 1120, 1131]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 256, "duration": [1718, 1750, 1769]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 402607, "duration": [577, 591, 653]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 142, "duration": [31, 31, 33]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 142, "duration": [41, 43, 44]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 10007, "duration": [101, 101, 109]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2001, "duration": [771, 790, 795]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [1155, 1158, 1165]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168649, "duration": [5778, 5812, 5815]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2315, "duration": [256, 257, 266]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [461, 467, 473]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 51200, "duration": [145, 145, 151]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6825, "duration": [612, 616, 623]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2155, "duration": [1189, 1200, 1219]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 114383, "duration": [217, 222, 225]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 47, "duration": [359, 388, 408]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 33, "duration": [579, 587, 634]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4068900, "duration": [11135, 11559, 11563]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4125, "duration": [497, 500, 510]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [910, 914, 961]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 272980, "duration": [404, 411, 412]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4710, "duration": [292, 298, 302]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2046, "duration": [669, 674, 680]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 193597, "duration": [320, 328, 330]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8204, "duration": [2156, 2183, 2202]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [3172, 3178, 3217]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 854242, "duration": [1302, 1305, 1306]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1608, "duration": [395, 399, 399]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [532, 544, 560]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 66857, "duration": [161, 162, 164]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 328, "duration": [187, 192, 198]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 97, "duration": [223, 225, 236]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 32425, "duration": [125, 129, 134]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [40, 40, 46]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [50, 53, 62]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 39428, "duration": [142, 142, 146]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10203, "duration": [1100, 1135, 1217]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [2385, 2399, 2413]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 2470107, "duration": [4951, 4964, 6472]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 55, "duration": [44, 46, 46]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 43, "duration": [59, 62, 62]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 58784, "duration": [141, 145, 198]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 901, "duration": [203, 204, 260]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 213, "duration": [311, 318, 321]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 73481, "duration": [167, 168, 168]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7776, "duration": [788, 796, 799]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3077, "duration": [1412, 1439, 1446]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 127400, "duration": [238, 241, 244]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1282, "duration": [947, 972, 976]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 31, "duration": [1500, 1543, 1552]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 961109, "duration": [1697, 1747, 1764]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 155, "duration": [71, 71, 72]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 45, "duration": [108, 109, 154]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 280642, "duration": [418, 419, 439]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 51, "duration": [79, 80, 81]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 35, "duration": [103, 107, 142]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 102668, "duration": [207, 209, 259]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1997, "duration": [361, 366, 368]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 93, "duration": [619, 620, 622]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 212065, "duration": [336, 349, 356]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1613, "duration": [473, 491, 511]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [657, 661, 663]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 109701, "duration": [208, 223, 328]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 593, "duration": [43, 46, 69]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 373, "duration": [104, 105, 106]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 32570, "duration": [120, 121, 124]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 358, "duration": [91, 91, 91]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 89, "duration": [132, 138, 140]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 29690, "duration": [119, 119, 124]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [164, 166, 224]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [195, 196, 197]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 23089, "duration": [111, 121, 123]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7853, "duration": [1661, 1693, 1747]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 140, "duration": [2584, 2730, 2743]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169493, "duration": [6076, 6116, 6443]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 207, "duration": [45, 58, 64]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [64, 69, 122]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 8017, "duration": [83, 86, 86]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3053, "duration": [488, 489, 489]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 100, "duration": [749, 785, 795]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 132425, "duration": [236, 238, 240]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 357, "duration": [92, 94, 96]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 328, "duration": [119, 121, 126]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 10614, "duration": [96, 99, 101]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 158, "duration": [166, 171, 173]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [148, 153, 153]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 22473, "duration": [107, 109, 134]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1927, "duration": [397, 405, 405]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 681, "duration": [572, 577, 579]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 88332, "duration": [185, 186, 187]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 644, "duration": [138, 138, 139]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 73, "duration": [234, 234, 238]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 103711, "duration": [210, 212, 235]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13480, "duration": [3484, 3534, 3543]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 969, "duration": [5043, 5139, 5201]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 918169, "duration": [1390, 1394, 1397]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 8141, "duration": [647, 658, 660]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1365, 1393, 1394]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 375689, "duration": [549, 550, 798]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 278, "duration": [362, 364, 365]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [418, 437, 561]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 212074, "duration": [350, 355, 358]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 266, "duration": [126, 130, 132]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 135, "duration": [153, 156, 158]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 16569, "duration": [101, 101, 111]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 22, "duration": [47, 49, 55]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [56, 56, 72]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 6674, "duration": [86, 87, 95]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1329, "duration": [1033, 1039, 1049]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 42, "duration": [1228, 1271, 1274]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 281073, "duration": [455, 465, 480]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 240, "duration": [136, 143, 180]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [166, 170, 171]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 38213, "duration": [125, 131, 174]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 867, "duration": [110, 115, 119]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [210, 212, 214]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 28879, "duration": [126, 130, 134]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 406, "duration": [113, 119, 121]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 318, "duration": [164, 164, 190]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 345824, "duration": [495, 497, 499]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1913, "duration": [436, 449, 451]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 171, "duration": [599, 610, 619]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 70020, "duration": [167, 169, 215]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 84, "duration": [38, 39, 52]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [50, 50, 52]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 10103, "duration": [87, 87, 88]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 444, "duration": [389, 398, 410]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [474, 483, 486]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 165540, "duration": [288, 295, 297]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1457, "duration": [586, 590, 591]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 131, "duration": [1088, 1115, 1151]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 4174359, "duration": [5922, 5958, 6198]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11192, "duration": [1271, 1276, 1288]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [2264, 2342, 2647]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 264631, "duration": [410, 413, 434]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 466, "duration": [284, 290, 298]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [338, 345, 352]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 55152, "duration": [149, 154, 167]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1061, "duration": [912, 963, 983]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 74, "duration": [1068, 1082, 1090]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 194085, "duration": [324, 330, 333]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 164, "duration": [44, 45, 45]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 121, "duration": [71, 71, 71]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 12785, "duration": [97, 102, 105]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 290, "duration": [130, 134, 134]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 277, "duration": [215, 216, 221]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 352602, "duration": [547, 549, 549]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1111, "duration": [99, 101, 102]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 963, "duration": [252, 298, 332]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 162074, "duration": [271, 273, 278]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 608, "duration": [101, 102, 107]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 485, "duration": [225, 231, 235]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 231765, "duration": [368, 373, 374]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 122, "duration": [150, 150, 210]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 10, "duration": [197, 198, 199]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 217412, "duration": [364, 367, 378]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 118291, "duration": [1610, 1610, 1918]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21737, "duration": [31281, 31387, 31779]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168234, "duration": [5729, 5806, 6173]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 367, "duration": [196, 210, 225]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [246, 272, 273]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 33310, "duration": [123, 124, 202]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 192, "duration": [110, 113, 118]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [156, 156, 164]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 46274, "duration": [141, 142, 142]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 180, "duration": [108, 112, 140]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 143, "duration": [178, 182, 183]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 268624, "duration": [410, 420, 436]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2130, "duration": [1119, 1164, 1179]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1484, 1486, 1489]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 2372213, "duration": [4047, 4049, 4137]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 248, "duration": [101, 104, 106]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 68, "duration": [145, 146, 166]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 47084, "duration": [140, 142, 155]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [40, 40, 58]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 226, "duration": [51, 52, 53]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 4838, "duration": [76, 76, 79]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 78, "duration": [51, 59, 65]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [60, 61, 95]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 17211, "duration": [111, 112, 113]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1532, "duration": [505, 507, 512]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 173, "duration": [634, 636, 651]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 76229, "duration": [173, 174, 178]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2422, "duration": [64, 65, 75]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2381, "duration": [210, 218, 220]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 6515, "duration": [86, 87, 97]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1633, "duration": [213, 214, 223]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 123, "duration": [375, 380, 391]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 73305, "duration": [168, 172, 181]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4110, "duration": [751, 769, 818]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 60, "duration": [1373, 1387, 1768]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 2315795, "duration": [4513, 4533, 4551]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [99, 100, 101]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [195, 205, 214]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 92901, "duration": [192, 196, 198]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 131, "duration": [395, 505, 515]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [460, 463, 463]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 226887, "duration": [404, 405, 424]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1539, "duration": [520, 522, 599]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 79, "duration": [744, 748, 778]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 322018, "duration": [513, 529, 530]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1358, "duration": [419, 420, 423]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [560, 582, 684]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 68175, "duration": [158, 169, 305]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 813, "duration": [255, 256, 263]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 67, "duration": [350, 350, 353]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 62207, "duration": [165, 167, 180]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [45, 48, 48]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [52, 52, 55]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 33193, "duration": [112, 116, 124]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3401, "duration": [584, 615, 617]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 821, "duration": [894, 905, 908]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 134076, "duration": [236, 242, 251]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2416, "duration": [487, 499, 540]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [738, 742, 743]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 105084, "duration": [203, 206, 209]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 162, "duration": [156, 156, 160]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [400, 404, 429]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168064, "duration": [5581, 5621, 5761]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 361, "duration": [92, 93, 100]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [181, 181, 183]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 167104, "duration": [276, 278, 286]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 679, "duration": [421, 441, 442]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [580, 584, 620]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 730213, "duration": [1120, 1122, 1126]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5744, "duration": [805, 806, 1010]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [1300, 1307, 1309]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 222790, "duration": [345, 362, 364]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 377, "duration": [476, 483, 599]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 16, "duration": [613, 614, 629]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 774500, "duration": [1334, 1360, 1391]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 639, "duration": [156, 158, 172]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [293, 299, 300]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 188645, "duration": [299, 303, 303]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 138, "duration": [73, 112, 132]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [82, 82, 83]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 14092, "duration": [110, 111, 112]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5577, "duration": [1103, 1105, 1108]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [1611, 1619, 1623]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 310569, "duration": [452, 454, 480]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 29, "duration": [35, 38, 56]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [40, 42, 42]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 14156, "duration": [92, 96, 103]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 144, "duration": [63, 63, 87]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [98, 99, 107]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 69112, "duration": [164, 167, 173]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2936, "duration": [328, 331, 332]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 611, "duration": [609, 628, 641]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 192280, "duration": [309, 312, 320]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9630, "duration": [770, 779, 787]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 181, "duration": [1639, 1643, 1662]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 389360, "duration": [563, 565, 574]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 490, "duration": [79, 80, 101]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 414, "duration": [122, 124, 127]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 11304, "duration": [98, 103, 104]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 431, "duration": [150, 153, 169]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 115, "duration": [273, 273, 281]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 308550, "duration": [476, 497, 519]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6560, "duration": [1264, 1285, 1301]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 16, "duration": [2179, 2183, 2194]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 4014085, "duration": [6591, 6601, 6611]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1218, "duration": [300, 310, 320]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [424, 426, 453]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 119020, "duration": [225, 228, 229]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 531, "duration": [284, 285, 285]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 82, "duration": [338, 340, 369]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 43329, "duration": [136, 138, 174]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2111, "duration": [411, 428, 430]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [624, 635, 681]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 159993, "duration": [276, 279, 279]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 370, "duration": [99, 100, 115]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [132, 135, 142]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 11717, "duration": [96, 98, 98]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 25282, "duration": [1001, 1007, 1015]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 210, "duration": [3179, 3225, 3442]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 909593, "duration": [1314, 1338, 1359]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 350, "duration": [236, 254, 306]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 141, "duration": [364, 368, 411]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 758590, "duration": [1125, 1146, 1161]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1273, "duration": [229, 240, 273]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [444, 468, 479]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 349637, "duration": [515, 519, 524]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 220, "duration": [65, 66, 66]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 206, "duration": [82, 83, 90]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 7958, "duration": [89, 90, 108]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 30970, "duration": [2860, 2870, 3190]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 272, "duration": [5113, 5272, 5294]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 446943, "duration": [647, 662, 672]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 112, "duration": [298, 317, 318]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [335, 347, 352]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 51473, "duration": [183, 183, 187]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1763, "duration": [389, 396, 400]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [604, 606, 612]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 266528, "duration": [396, 409, 412]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5003, "duration": [1525, 1534, 1538]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [1862, 1904, 1930]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980371, "duration": [5609, 5710, 6074]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [164, 166, 168]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 158, "duration": [215, 216, 217]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 21196, "duration": [110, 112, 114]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5094, "duration": [1049, 1258, 1269]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 419, "duration": [2040, 2128, 2354]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169609, "duration": [5810, 5829, 5849]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1216, "duration": [228, 230, 235]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 50, "duration": [377, 380, 386]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 196687, "duration": [313, 318, 358]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 56, "duration": [30, 31, 48]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 53, "duration": [51, 51, 52]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 144768, "duration": [240, 241, 243]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [199, 201, 207]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [257, 261, 265]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 727128, "duration": [1111, 1113, 1123]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 176, "duration": [187, 189, 195]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [420, 430, 430]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168609, "duration": [5717, 5776, 5847]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 521, "duration": [44, 55, 66]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 516, "duration": [76, 78, 79]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 11727, "duration": [93, 97, 129]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [192, 194, 213]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [294, 297, 297]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 100754, "duration": [201, 203, 204]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [27, 27, 29]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 35, "duration": [29, 30, 31]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 63, "duration": [27, 29, 32]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 425, "duration": [717, 721, 734]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [835, 854, 885]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 279042, "duration": [431, 435, 452]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 757, "duration": [598, 603, 650]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [724, 732, 748]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 292410, "duration": [465, 468, 469]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 74, "duration": [32, 35, 36]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 52, "duration": [44, 46, 46]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1372, "duration": [60, 67, 77]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1159, "duration": [201, 205, 214]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 120, "duration": [330, 330, 338]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 146946, "duration": [253, 256, 260]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6552, "duration": [150, 154, 159]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 6339, "duration": [513, 514, 523]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 63852, "duration": [161, 163, 192]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1950, "duration": [439, 455, 457]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [629, 637, 856]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 67801, "duration": [178, 185, 189]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2956, "duration": [580, 583, 596]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [860, 873, 877]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 172197, "duration": [282, 286, 289]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1145, "duration": [478, 481, 485]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 133, "duration": [610, 622, 778]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 139608, "duration": [240, 243, 244]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 330, "duration": [110, 111, 134]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [178, 188, 193]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 75177, "duration": [176, 177, 179]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 341, "duration": [138, 139, 140]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [186, 187, 189]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 65937, "duration": [160, 161, 166]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 983, "duration": [640, 646, 671]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 603, "duration": [1546, 1656, 1684]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269185, "duration": [10765, 10917, 11028]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1514, "duration": [630, 647, 733]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 44, "duration": [898, 916, 918]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 3107761, "duration": [4745, 4764, 4808]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 240, "duration": [229, 230, 239]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 27, "duration": [486, 488, 490]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168301, "duration": [5712, 6037, 6271]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 14, "duration": [40, 41, 72]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [47, 51, 53]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 16308, "duration": [112, 119, 126]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2705, "duration": [771, 776, 778]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 26, "duration": [1134, 1135, 1428]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 651176, "duration": [991, 994, 1019]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 125, "duration": [119, 124, 137]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [146, 153, 154]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 38349, "duration": [129, 129, 131]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 606, "duration": [76, 79, 80]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 348, "duration": [131, 133, 154]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 8849, "duration": [89, 90, 122]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2771, "duration": [1192, 1196, 1206]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 393, "duration": [1657, 1668, 1686]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 337147, "duration": [514, 533, 549]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 537, "duration": [159, 159, 160]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [257, 258, 272]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 90307, "duration": [187, 188, 191]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 94, "duration": [64, 65, 73]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 69, "duration": [84, 85, 86]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 53641, "duration": [164, 168, 170]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2723, "duration": [510, 516, 522]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 638, "duration": [782, 804, 836]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 132261, "duration": [244, 245, 280]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 489, "duration": [366, 392, 409]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [450, 456, 463]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 75263, "duration": [160, 172, 242]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9989, "duration": [974, 992, 995]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1678, 1729, 1747]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 178211, "duration": [296, 303, 304]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1195, "duration": [207, 207, 220]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [459, 467, 640]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 477882, "duration": [680, 683, 701]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 834, "duration": [232, 235, 237]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [324, 329, 340]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 68527, "duration": [158, 160, 162]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 424, "duration": [139, 153, 187]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 39, "duration": [246, 249, 251]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 294537, "duration": [435, 441, 451]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 400, "duration": [457, 459, 461]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 137, "duration": [545, 547, 600]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 555477, "duration": [823, 836, 838]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10926, "duration": [431, 435, 438]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 4589, "duration": [1714, 1737, 1743]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 962508, "duration": [1388, 1399, 1424]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 44, "duration": [100, 101, 105]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [116, 125, 138]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 22177, "duration": [108, 110, 118]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1249, "duration": [149, 154, 220]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 55, "duration": [299, 302, 323]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 183559, "duration": [292, 293, 297]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6482, "duration": [1024, 1025, 1026]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2037, "duration": [1806, 1814, 1817]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 318670, "duration": [503, 519, 532]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3112, "duration": [847, 856, 1069]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1527, 1537, 1567]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3802855, "duration": [5432, 5441, 5962]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 2192, "duration": [1152, 1183, 1183]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 163, "duration": [1506, 1553, 1554]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 254583, "duration": [507, 523, 683]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 76, "duration": [74, 78, 79]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [104, 110, 119]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 162351, "duration": [310, 316, 345]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 571, "duration": [423, 434, 538]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [575, 580, 596]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 620188, "duration": [939, 940, 954]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 415, "duration": [60, 60, 60]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 117, "duration": [141, 141, 150]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 91128, "duration": [182, 185, 188]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 739, "duration": [84, 84, 86]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 298, "duration": [144, 149, 169]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 9778, "duration": [100, 101, 121]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 301, "duration": [132, 137, 144]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 24, "duration": [202, 206, 211]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 140156, "duration": [247, 250, 257]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 31324, "duration": [1480, 1495, 1500]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8245, "duration": [9745, 9756, 9843]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168226, "duration": [5672, 6008, 6064]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 381, "duration": [75, 77, 88]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 341, "duration": [106, 108, 113]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 11347, "duration": [106, 106, 188]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1929, "duration": [228, 242, 245]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 34, "duration": [537, 556, 556]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 485132, "duration": [687, 696, 704]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 293, "duration": [275, 283, 286]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 251, "duration": [542, 542, 554]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3800825, "duration": [5617, 5626, 5632]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 40, "duration": [42, 43, 44]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [78, 83, 89]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 4010, "duration": [75, 76, 85]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1002, "duration": [267, 268, 275]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [373, 389, 393]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 57181, "duration": [148, 151, 152]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11227, "duration": [1865, 1894, 1914]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [2861, 2866, 2885]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 324999, "duration": [487, 488, 500]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2871, "duration": [1085, 1099, 1112]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 48, "duration": [1381, 1405, 1416]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1012784, "duration": [1573, 1577, 1634]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1241, "duration": [421, 426, 457]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 443, "duration": [898, 912, 1166]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806173, "duration": [5815, 5931, 5996]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8686, "duration": [2087, 2108, 2124]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [2835, 2849, 3515]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168904, "duration": [5820, 5874, 6142]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2488, "duration": [291, 295, 297]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1598, "duration": [530, 531, 546]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 121970, "duration": [222, 226, 230]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1791, "duration": [333, 339, 342]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [512, 524, 547]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 152743, "duration": [256, 269, 270]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [77, 90, 116]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [133, 140, 141]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 126726, "duration": [227, 235, 292]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9823, "duration": [1155, 1156, 1175]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1790, "duration": [1923, 1934, 1945]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 212022, "duration": [339, 340, 358]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 373, "duration": [71, 76, 84]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [154, 158, 168]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 148462, "duration": [255, 257, 258]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 97, "duration": [67, 70, 74]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [82, 86, 89]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 7393, "duration": [84, 86, 109]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3519, "duration": [404, 405, 407]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [793, 799, 871]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 355372, "duration": [506, 523, 542]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7697, "duration": [1673, 1706, 1715]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 55, "duration": [2633, 2679, 2682]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 4015608, "duration": [6174, 6227, 6271]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 55, "duration": [71, 73, 73]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [84, 84, 84]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 11520, "duration": [115, 115, 121]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2703, "duration": [976, 977, 978]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [1247, 1269, 1280]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980777, "duration": [5665, 5672, 5672]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 66, "duration": [42, 43, 43]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [62, 64, 91]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 178640, "duration": [284, 285, 298]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 136, "duration": [159, 170, 171]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 25, "duration": [215, 224, 281]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748828, "duration": [1286, 1291, 1292]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 47, "duration": [48, 50, 54]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [49, 50, 54]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 3783, "duration": [82, 84, 88]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14379, "duration": [476, 480, 495]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8754, "duration": [1653, 1702, 1749]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 273351, "duration": [416, 432, 445]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65, "duration": [71, 72, 72]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [85, 86, 86]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 29487, "duration": [120, 121, 122]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 426, "duration": [172, 235, 298]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 52, "duration": [248, 251, 269]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 463674, "duration": [769, 781, 785]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 128, "duration": [184, 187, 190]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [240, 243, 248]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 687518, "duration": [1006, 1021, 1059]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 88, "duration": [142, 146, 153]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 33, "duration": [188, 188, 259]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 638451, "duration": [912, 927, 949]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 339, "duration": [429, 459, 467]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 58, "duration": [624, 631, 639]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1424119, "duration": [2866, 2890, 2917]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 114, "duration": [82, 83, 83]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 42, "duration": [100, 100, 105]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 16349, "duration": [101, 101, 119]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 129, "duration": [39, 40, 52]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 122, "duration": [63, 64, 68]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 16639, "duration": [125, 139, 145]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5942, "duration": [1426, 1431, 1506]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 20, "duration": [2058, 2064, 2305]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1004290, "duration": [1776, 1815, 1830]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 9831, "duration": [1988, 2073, 2128]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 5175, "duration": [3738, 3793, 3801]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 3815913, "duration": [5461, 5517, 5520]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 101, "duration": [285, 296, 302]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 26, "duration": [347, 348, 349]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 621002, "duration": [961, 970, 973]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 42326, "duration": [3158, 3209, 3210]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 105, "duration": [6300, 6387, 6420]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 506318, "duration": [738, 739, 747]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 110, "duration": [63, 64, 78]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 46, "duration": [72, 74, 91]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7141, "duration": [84, 86, 86]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3633, "duration": [417, 438, 444]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [766, 818, 828]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 341994, "duration": [492, 501, 504]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 861, "duration": [215, 220, 221]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 98, "duration": [356, 362, 435]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 236925, "duration": [363, 366, 397]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2784, "duration": [185, 189, 189]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 853, "duration": [537, 540, 543]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 254858, "duration": [406, 427, 428]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 218, "duration": [66, 67, 69]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [88, 91, 92]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 7833, "duration": [87, 88, 105]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4083, "duration": [943, 961, 1154]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 877, "duration": [1988, 2307, 2628]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 4171625, "duration": [5967, 6259, 6361]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2520, "duration": [179, 184, 188]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1404, "duration": [448, 464, 485]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 138987, "duration": [244, 247, 251]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [220, 222, 259]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 28, "duration": [291, 296, 302]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1078395, "duration": [1667, 1708, 2108]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 92527, "duration": [6777, 6797, 6861]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 95, "duration": [15490, 15521, 15737]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4270464, "duration": [11671, 11963, 12189]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 60, "duration": [42, 43, 50]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [53, 55, 60]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 7172, "duration": [82, 84, 104]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1015, "duration": [160, 160, 160]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 86, "duration": [345, 358, 374]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 200981, "duration": [328, 331, 331]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4474, "duration": [347, 349, 351]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3236, "duration": [782, 795, 807]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 360654, "duration": [523, 529, 530]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 980, "duration": [250, 253, 260]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 784, "duration": [747, 752, 1107]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168065, "duration": [5553, 5605, 5650]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 284, "duration": [191, 192, 216]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 214, "duration": [266, 266, 284]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 126816, "duration": [246, 249, 257]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 83, "duration": [97, 98, 100]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 16, "duration": [126, 126, 127]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 55586, "duration": [153, 178, 202]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 58, "duration": [27, 29, 39]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 54, "duration": [43, 44, 45]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 15162, "duration": [91, 92, 105]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 201, "duration": [87, 87, 89]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [126, 132, 232]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 170597, "duration": [277, 283, 299]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 434, "duration": [186, 188, 203]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [231, 232, 236]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 26300, "duration": [116, 117, 163]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3258, "duration": [1333, 1345, 1464]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 244, "duration": [1769, 1775, 1809]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 467039, "duration": [734, 739, 745]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 121, "duration": [916, 923, 933]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 20, "duration": [983, 993, 1009]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 635117, "duration": [951, 959, 1112]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4708, "duration": [554, 555, 582]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1322, "duration": [1100, 1110, 1118]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 487676, "duration": [724, 729, 740]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3919, "duration": [779, 798, 804]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1515, "duration": [1135, 1139, 1157]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 144566, "duration": [253, 257, 259]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 234, "duration": [151, 157, 158]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 151, "duration": [218, 226, 227]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 192019, "duration": [320, 325, 327]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8481, "duration": [3921, 3956, 3968]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 82, "duration": [5154, 5164, 5220]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 778663, "duration": [1146, 1146, 1163]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 24, "duration": [108, 113, 119]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 19, "duration": [134, 136, 137]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 231009, "duration": [393, 406, 414]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2050, "duration": [251, 251, 267]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 314, "duration": [430, 441, 442]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 89056, "duration": [189, 191, 301]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 319, "duration": [131, 135, 145]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [183, 185, 191]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 41550, "duration": [132, 137, 139]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1982, "duration": [283, 283, 287]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [487, 489, 542]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 126649, "duration": [232, 245, 256]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 652, "duration": [150, 153, 187]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [259, 259, 263]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 148177, "duration": [258, 261, 286]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 372, "duration": [172, 173, 176]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 115, "duration": [217, 220, 220]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 27089, "duration": [118, 119, 149]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 169, "duration": [186, 215, 223]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 65, "duration": [219, 226, 228]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 536978, "duration": [790, 790, 796]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 16193, "duration": [1317, 1320, 1320]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2840, "duration": [3406, 3418, 3436]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 686232, "duration": [1555, 1561, 1615]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 21, "duration": [72, 93, 104]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [89, 92, 114]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748534, "duration": [1286, 1298, 1357]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2570, "duration": [414, 414, 435]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 33, "duration": [671, 681, 685]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 155369, "duration": [268, 270, 285]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6165, "duration": [790, 799, 800]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 255, "duration": [1278, 1306, 1346]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 126586, "duration": [235, 239, 241]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 425, "duration": [191, 197, 205]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [245, 248, 249]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 36113, "duration": [131, 133, 137]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 237, "duration": [497, 499, 507]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 37, "duration": [680, 694, 718]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3837687, "duration": [6861, 6929, 6983]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 660, "duration": [167828, 168141, 169095]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 79, "duration": [160, 176, 223]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 4168064, "duration": [2964, 3080, 3543]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 748535, "duration": [4102, 4173, 5074]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 79, "duration": [228751, 230976, 243505]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 4168064, "duration": [226606, 232783, 242394]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1950439, "duration": [233732, 233934, 242893]}], "tantivy-0.19": [{"query": "the", "tags": ["term"], "count": 4168064, "duration": [19, 20, 23]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 79, "duration": [104, 107, 109]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [122, 122, 209]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 15456, "duration": [98, 98, 113]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 195, "duration": [51, 55, 56]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 110, "duration": [73, 77, 77]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 4173, "duration": [80, 83, 86]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 856, "duration": [76, 78, 82]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 112, "duration": [174, 174, 178]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 104150, "duration": [208, 210, 220]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [116, 118, 118]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [190, 195, 203]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 54291, "duration": [146, 153, 159]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 266, "duration": [451, 452, 459]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 18, "duration": [505, 506, 510]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 195119, "duration": [341, 344, 345]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2173, "duration": [660, 666, 683]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [869, 872, 886]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 167943, "duration": [284, 287, 310]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14165, "duration": [1093, 1096, 1102]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [2279, 2301, 2333]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 612165, "duration": [880, 886, 890]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 85, "duration": [47, 48, 49]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 56, "duration": [61, 70, 72]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 7747, "duration": [83, 84, 87]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 693, "duration": [514, 518, 533]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [621, 623, 625]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 397912, "duration": [621, 639, 654]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7346, "duration": [1640, 1664, 1908]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 201, "duration": [2349, 2382, 2744]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 4173861, "duration": [6219, 6252, 6307]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4496, "duration": [282, 283, 301]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 307, "duration": [723, 727, 730]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 454176, "duration": [653, 655, 657]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 161, "duration": [237, 242, 354]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [262, 263, 274]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 336807, "duration": [513, 519, 523]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1055, "duration": [209, 210, 213]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 177, "duration": [317, 320, 329]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 61359, "duration": [153, 160, 165]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3760, "duration": [675, 686, 691]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 252, "duration": [993, 1002, 1019]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 151582, "duration": [269, 270, 290]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 569, "duration": [285, 289, 302]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [354, 354, 358]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 86776, "duration": [188, 192, 217]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [77, 78, 78]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [80, 82, 103]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 249193, "duration": [388, 397, 401]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 81, "duration": [120, 121, 123]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [134, 134, 139]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 20969, "duration": [105, 109, 109]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4617, "duration": [808, 813, 825]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 141, "duration": [1216, 1229, 1277]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 194083, "duration": [315, 324, 329]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 107, "duration": [100, 102, 103]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 64, "duration": [143, 151, 153]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1192562, "duration": [1789, 1808, 1826]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1239, "duration": [537, 553, 554]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 566, "duration": [914, 914, 963]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 510849, "duration": [804, 807, 812]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7014, "duration": [1077, 1108, 1364]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 329, "duration": [1672, 1677, 1694]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 170364, "duration": [285, 290, 297]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48653, "duration": [660, 662, 669]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 44879, "duration": [3537, 3542, 3842]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 151349, "duration": [319, 330, 336]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 137, "duration": [221, 224, 233]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 53, "duration": [258, 259, 263]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 95654, "duration": [210, 217, 240]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7387, "duration": [845, 853, 858]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 302, "duration": [1443, 1452, 1459]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 260381, "duration": [399, 402, 402]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5040, "duration": [681, 687, 705]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 70, "duration": [1086, 1088, 1107]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 217122, "duration": [348, 348, 357]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1917, "duration": [660, 671, 683]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 94, "duration": [922, 927, 945]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 584269, "duration": [889, 898, 961]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 733, "duration": [299, 303, 303]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 76, "duration": [365, 365, 374]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 46081, "duration": [141, 142, 145]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 421, "duration": [610, 618, 620]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 61, "duration": [701, 703, 710]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 401520, "duration": [627, 628, 628]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1187, "duration": [144, 144, 144]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [313, 318, 319]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 160168, "duration": [267, 269, 273]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 475, "duration": [652, 657, 669]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [770, 779, 868]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 402259, "duration": [624, 637, 646]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 604, "duration": [257, 258, 266]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [342, 344, 345]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 99117, "duration": [200, 202, 209]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65770, "duration": [2581, 2606, 2681]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [7273, 7281, 7357]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 825043, "duration": [1248, 1265, 1277]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6146, "duration": [902, 910, 932]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1421, 1432, 1443]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 298137, "duration": [464, 466, 467]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 13581, "duration": [1146, 1165, 1169]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1894, "duration": [2345, 2354, 2376]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 229696, "duration": [374, 403, 627]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 314, "duration": [50, 50, 52]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 288, "duration": [72, 73, 77]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 10040, "duration": [92, 93, 95]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6957, "duration": [1232, 1238, 1248]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [2117, 2118, 2132]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 702120, "duration": [1093, 1093, 1098]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13996, "duration": [3011, 3035, 3059]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [4559, 4566, 4589]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1251867, "duration": [2216, 2222, 2234]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4268, "duration": [1151, 1154, 1166]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 440, "duration": [1755, 1778, 1781]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 909970, "duration": [1394, 1403, 1409]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 23, "duration": [42, 48, 48]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [47, 48, 76]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 10684, "duration": [89, 93, 98]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 157, "duration": [214, 216, 221]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [235, 237, 246]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 35325, "duration": [130, 131, 170]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1316, "duration": [588, 617, 823]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1156, "duration": [1854, 1913, 1977]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269120, "duration": [11187, 11219, 11689]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 43372, "duration": [2907, 2922, 3148]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15089, "duration": [10612, 10715, 10845]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806414, "duration": [6125, 6213, 6434]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 239, "duration": [95, 97, 98]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 124, "duration": [148, 148, 153]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 333268, "duration": [482, 500, 632]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 618, "duration": [198, 203, 304]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 168, "duration": [360, 361, 413]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970283, "duration": [1723, 1736, 1746]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 44521, "duration": [3259, 3272, 3275]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 4100, "duration": [8596, 8637, 8921]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 3808757, "duration": [6196, 6202, 6378]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 960, "duration": [298, 302, 313]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 244, "duration": [437, 437, 438]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 134727, "duration": [241, 244, 248]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1490, "duration": [656, 660, 671]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [810, 821, 826]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 106587, "duration": [265, 275, 276]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3574, "duration": [877, 898, 909]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1021, "duration": [1150, 1161, 1169]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 146818, "duration": [259, 263, 271]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 20, "duration": [31, 33, 34]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [41, 59, 64]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 82708, "duration": [175, 182, 191]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [40, 42, 52]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [40, 41, 42]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1791, "duration": [61, 61, 63]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 3397, "duration": [1536, 1570, 1678]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 12, "duration": [1916, 1946, 2314]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4053765, "duration": [9645, 9696, 9750]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 429, "duration": [67, 69, 84]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 41, "duration": [145, 147, 150]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 130601, "duration": [234, 234, 237]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2860, "duration": [276, 279, 284]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 828, "duration": [481, 486, 488]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 54702, "duration": [157, 157, 159]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10899, "duration": [1253, 1301, 1837]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 922, "duration": [3123, 3151, 3753]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806986, "duration": [6067, 6072, 6096]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [97, 98, 99]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [107, 111, 115]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 11759, "duration": [93, 93, 97]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 443, "duration": [265, 268, 273]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [430, 434, 439]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798567, "duration": [5390, 5399, 5419]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1994, "duration": [939, 1001, 1010]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1444, "duration": [2323, 2329, 2412]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269267, "duration": [11081, 11330, 11340]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 418, "duration": [298, 310, 333]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 224, "duration": [509, 515, 516]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798846, "duration": [5394, 5426, 5987]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10806, "duration": [627, 628, 628]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 831, "duration": [1495, 1501, 1529]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 401948, "duration": [592, 593, 629]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 90, "duration": [63, 65, 66]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [68, 68, 68]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7731, "duration": [84, 90, 94]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3336, "duration": [592, 592, 602]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [897, 901, 911]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 237265, "duration": [362, 368, 428]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48, "duration": [40, 41, 43]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [50, 51, 53]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 5320, "duration": [77, 78, 83]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1751, "duration": [185, 187, 189]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1335, "duration": [343, 345, 349]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 79894, "duration": [179, 184, 217]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 19247, "duration": [1827, 1829, 1855]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 626, "duration": [3240, 3242, 3385]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 301066, "duration": [467, 472, 482]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [64, 64, 72]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 81, "duration": [93, 97, 97]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 21776, "duration": [105, 109, 110]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3980, "duration": [69, 70, 73]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3891, "duration": [329, 336, 343]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 43534, "duration": [143, 143, 150]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 109, "duration": [123, 124, 127]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 97, "duration": [151, 162, 194]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 47760, "duration": [154, 155, 192]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 61, "duration": [78, 78, 80]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [91, 94, 103]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 14465, "duration": [97, 98, 101]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2638, "duration": [361, 363, 377]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 60, "duration": [681, 688, 801]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 301693, "duration": [443, 461, 484]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 12, "duration": [45, 46, 51]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [43, 44, 57]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 57879, "duration": [145, 146, 218]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1238, "duration": [255, 259, 264]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 391, "duration": [543, 546, 547]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970192, "duration": [1740, 1748, 1762]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 415, "duration": [628, 633, 656]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [941, 954, 1242]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4316960, "duration": [12179, 12249, 12571]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3896, "duration": [880, 881, 888]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1218, 1236, 1240]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 153516, "duration": [266, 268, 271]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 896, "duration": [117, 121, 122]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 475, "duration": [202, 206, 227]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 36406, "duration": [128, 131, 131]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1044, "duration": [293, 295, 297]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 74, "duration": [402, 405, 474]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 52377, "duration": [145, 150, 153]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1550, "duration": [241, 243, 245]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 131, "duration": [377, 383, 413]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 150258, "duration": [264, 281, 303]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1246, "duration": [279, 283, 292]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 235, "duration": [379, 395, 404]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 66350, "duration": [160, 168, 196]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5054, "duration": [462, 466, 469]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [920, 924, 928]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 310479, "duration": [466, 470, 503]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 24403, "duration": [1314, 1325, 1327]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12115, "duration": [3291, 3296, 3318]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 503137, "duration": [742, 743, 745]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2540, "duration": [344, 349, 350]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 59, "duration": [623, 628, 629]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 200883, "duration": [331, 331, 450]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 96618, "duration": [6783, 6838, 6859]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1140, "duration": [14046, 14137, 14546]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1038231, "duration": [1549, 1556, 1563]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5964, "duration": [1094, 1099, 1107]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 256, "duration": [1713, 1723, 1752]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 402607, "duration": [583, 607, 616]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 142, "duration": [33, 34, 35]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 142, "duration": [39, 40, 42]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 10007, "duration": [92, 100, 228]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2001, "duration": [775, 792, 795]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [1160, 1169, 1249]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168649, "duration": [5997, 6189, 6255]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2315, "duration": [255, 260, 261]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [445, 449, 465]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 51200, "duration": [145, 148, 153]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6825, "duration": [601, 604, 605]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2155, "duration": [1163, 1165, 1173]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 114383, "duration": [228, 230, 230]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 47, "duration": [368, 375, 379]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 33, "duration": [579, 580, 581]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4068900, "duration": [11394, 11606, 11636]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4125, "duration": [490, 494, 495]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [892, 898, 930]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 272980, "duration": [413, 417, 418]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4710, "duration": [291, 296, 300]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2046, "duration": [649, 662, 666]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 193597, "duration": [321, 331, 389]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8204, "duration": [2150, 2172, 2190]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [3136, 3153, 3154]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 854242, "duration": [1327, 1327, 1334]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1608, "duration": [391, 397, 409]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [522, 525, 525]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 66857, "duration": [164, 168, 169]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 328, "duration": [186, 188, 191]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 97, "duration": [225, 225, 250]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 32425, "duration": [129, 131, 135]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [40, 41, 47]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [49, 50, 54]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 39428, "duration": [140, 145, 146]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10203, "duration": [1110, 1123, 1155]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [2334, 2346, 2347]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 2470107, "duration": [5015, 5058, 5091]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 55, "duration": [45, 46, 47]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 43, "duration": [57, 60, 64]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 58784, "duration": [140, 147, 150]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 901, "duration": [197, 198, 202]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 213, "duration": [300, 304, 376]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 73481, "duration": [169, 170, 181]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7776, "duration": [786, 787, 793]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3077, "duration": [1397, 1407, 1416]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 127400, "duration": [244, 260, 272]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1282, "duration": [943, 950, 976]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 31, "duration": [1493, 1504, 1768]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 961109, "duration": [1703, 1729, 1737]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 155, "duration": [69, 72, 92]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 45, "duration": [104, 108, 127]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 280642, "duration": [419, 429, 431]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 51, "duration": [79, 80, 83]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 35, "duration": [102, 103, 109]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 102668, "duration": [212, 214, 215]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1997, "duration": [365, 368, 373]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 93, "duration": [597, 599, 604]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 212065, "duration": [344, 345, 376]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1613, "duration": [472, 474, 480]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [630, 639, 739]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 109701, "duration": [210, 214, 221]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 593, "duration": [43, 43, 44]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 373, "duration": [101, 101, 101]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 32570, "duration": [121, 125, 127]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 358, "duration": [91, 94, 95]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 89, "duration": [126, 127, 130]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 29690, "duration": [121, 123, 123]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [161, 168, 168]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [190, 190, 192]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 23089, "duration": [119, 120, 124]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7853, "duration": [1731, 1781, 1999]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 140, "duration": [2564, 2574, 2588]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169493, "duration": [6202, 6244, 6261]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 207, "duration": [43, 43, 46]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [64, 68, 73]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 8017, "duration": [84, 90, 97]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3053, "duration": [485, 502, 540]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 100, "duration": [749, 754, 756]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 132425, "duration": [243, 244, 314]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 357, "duration": [91, 92, 104]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 328, "duration": [120, 120, 121]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 10614, "duration": [103, 112, 122]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 158, "duration": [161, 168, 175]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [147, 151, 180]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 22473, "duration": [114, 119, 120]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1927, "duration": [394, 403, 410]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 681, "duration": [555, 571, 572]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 88332, "duration": [190, 193, 207]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 644, "duration": [133, 135, 169]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 73, "duration": [226, 239, 249]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 103711, "duration": [210, 217, 220]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13480, "duration": [3493, 3513, 3527]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 969, "duration": [5085, 5106, 5120]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 918169, "duration": [1421, 1423, 1428]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 8141, "duration": [639, 643, 648]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1340, 1344, 1377]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 375689, "duration": [551, 551, 578]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 278, "duration": [359, 362, 370]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [421, 422, 429]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 212074, "duration": [362, 365, 367]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 266, "duration": [125, 128, 134]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 135, "duration": [155, 157, 199]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 16569, "duration": [101, 104, 105]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 22, "duration": [49, 51, 54]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [53, 54, 54]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 6674, "duration": [86, 86, 87]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1329, "duration": [1030, 1034, 1051]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 42, "duration": [1223, 1233, 1242]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 281073, "duration": [454, 456, 458]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 240, "duration": [134, 135, 135]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [155, 159, 161]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 38213, "duration": [128, 133, 140]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 867, "duration": [119, 121, 122]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [202, 203, 215]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 28879, "duration": [121, 124, 168]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 406, "duration": [106, 109, 113]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 318, "duration": [160, 165, 166]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 345824, "duration": [510, 525, 558]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1913, "duration": [436, 440, 447]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 171, "duration": [579, 586, 599]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 70020, "duration": [169, 170, 171]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 84, "duration": [43, 52, 53]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [48, 49, 50]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 10103, "duration": [86, 88, 101]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 444, "duration": [379, 383, 384]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [466, 467, 478]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 165540, "duration": [300, 315, 336]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1457, "duration": [593, 595, 613]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 131, "duration": [1119, 1125, 1186]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 4174359, "duration": [6076, 6204, 6286]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11192, "duration": [1266, 1268, 1281]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [2241, 2248, 2267]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 264631, "duration": [421, 435, 535]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 466, "duration": [288, 297, 299]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [335, 339, 341]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 55152, "duration": [148, 153, 171]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1061, "duration": [931, 942, 943]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 74, "duration": [1080, 1082, 1110]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 194085, "duration": [333, 341, 355]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 164, "duration": [45, 46, 48]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 121, "duration": [72, 73, 74]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 12785, "duration": [100, 102, 102]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 290, "duration": [128, 129, 130]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 277, "duration": [215, 216, 250]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 352602, "duration": [532, 547, 566]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1111, "duration": [98, 100, 105]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 963, "duration": [247, 250, 257]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 162074, "duration": [275, 281, 288]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 608, "duration": [100, 101, 107]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 485, "duration": [225, 227, 240]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 231765, "duration": [380, 381, 397]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 122, "duration": [145, 148, 150]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 10, "duration": [197, 198, 199]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 217412, "duration": [379, 380, 384]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 118291, "duration": [1592, 1593, 1903]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21737, "duration": [32242, 32604, 33011]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168234, "duration": [5863, 5925, 5929]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 367, "duration": [198, 200, 200]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [247, 252, 256]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 33310, "duration": [122, 126, 134]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 192, "duration": [110, 112, 113]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [152, 156, 160]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 46274, "duration": [138, 145, 168]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 180, "duration": [112, 113, 123]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 143, "duration": [176, 177, 180]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 268624, "duration": [428, 431, 432]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2130, "duration": [1132, 1169, 1223]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1482, 1536, 1572]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 2372213, "duration": [4067, 4078, 4094]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 248, "duration": [102, 103, 104]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 68, "duration": [140, 141, 142]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 47084, "duration": [147, 148, 207]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [37, 49, 54]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 226, "duration": [49, 53, 76]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 4838, "duration": [77, 81, 90]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 78, "duration": [50, 51, 55]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [61, 61, 63]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 17211, "duration": [119, 125, 131]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1532, "duration": [487, 491, 506]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 173, "duration": [618, 623, 625]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 76229, "duration": [175, 180, 186]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2422, "duration": [63, 66, 69]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2381, "duration": [210, 215, 223]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 6515, "duration": [86, 90, 94]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1633, "duration": [208, 208, 223]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 123, "duration": [367, 375, 376]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 73305, "duration": [170, 175, 207]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4110, "duration": [738, 747, 790]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 60, "duration": [1353, 1358, 1373]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 2315795, "duration": [4541, 4561, 4579]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [97, 102, 127]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [181, 188, 192]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 92901, "duration": [194, 195, 200]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 131, "duration": [399, 400, 401]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [447, 453, 580]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 226887, "duration": [403, 409, 411]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1539, "duration": [520, 528, 532]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 79, "duration": [737, 741, 747]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 322018, "duration": [521, 536, 552]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1358, "duration": [417, 419, 432]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [546, 551, 555]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 68175, "duration": [163, 174, 182]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 813, "duration": [263, 278, 282]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 67, "duration": [335, 335, 347]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 62207, "duration": [162, 165, 176]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [45, 50, 91]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [50, 53, 74]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 33193, "duration": [112, 118, 121]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3401, "duration": [592, 600, 605]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 821, "duration": [879, 888, 890]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 134076, "duration": [238, 241, 258]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2416, "duration": [490, 492, 493]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [714, 748, 769]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 105084, "duration": [211, 214, 215]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 162, "duration": [149, 152, 170]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [400, 405, 420]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168064, "duration": [5663, 5699, 6144]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 361, "duration": [92, 93, 99]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [174, 181, 181]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 167104, "duration": [279, 281, 283]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 679, "duration": [425, 428, 435]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [554, 565, 626]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 730213, "duration": [1117, 1132, 1135]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5744, "duration": [800, 801, 807]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [1279, 1312, 1647]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 222790, "duration": [351, 358, 362]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 377, "duration": [483, 492, 513]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 16, "duration": [607, 620, 620]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 774500, "duration": [1356, 1405, 1950]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 639, "duration": [151, 155, 155]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [296, 304, 310]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 188645, "duration": [304, 314, 390]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 138, "duration": [62, 66, 153]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [79, 86, 89]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 14092, "duration": [119, 119, 120]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5577, "duration": [1094, 1103, 1200]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [1602, 1623, 1627]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 310569, "duration": [489, 509, 523]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 29, "duration": [35, 41, 41]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [40, 40, 40]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 14156, "duration": [94, 94, 97]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 144, "duration": [63, 66, 67]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [98, 98, 118]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 69112, "duration": [163, 165, 266]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2936, "duration": [328, 332, 335]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 611, "duration": [606, 610, 616]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 192280, "duration": [313, 324, 327]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9630, "duration": [772, 777, 783]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 181, "duration": [1602, 1602, 1624]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 389360, "duration": [573, 582, 589]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 490, "duration": [77, 79, 79]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 414, "duration": [120, 125, 153]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 11304, "duration": [96, 97, 105]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 431, "duration": [144, 150, 151]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 115, "duration": [266, 272, 274]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 308550, "duration": [478, 483, 483]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6560, "duration": [1292, 1339, 1358]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 16, "duration": [2135, 2184, 2201]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 4014085, "duration": [6696, 6752, 7049]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1218, "duration": [290, 293, 302]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [411, 418, 422]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 119020, "duration": [225, 228, 231]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 531, "duration": [280, 280, 284]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 82, "duration": [329, 357, 447]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 43329, "duration": [138, 140, 144]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2111, "duration": [414, 417, 420]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [619, 620, 622]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 159993, "duration": [274, 277, 278]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 370, "duration": [99, 101, 108]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [136, 137, 140]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 11717, "duration": [95, 111, 115]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 25282, "duration": [990, 1001, 1008]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 210, "duration": [3156, 3174, 3323]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 909593, "duration": [1351, 1355, 1365]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 350, "duration": [237, 251, 275]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 141, "duration": [358, 363, 364]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 758590, "duration": [1140, 1147, 1156]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1273, "duration": [224, 224, 231]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [445, 446, 453]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 349637, "duration": [515, 517, 523]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 220, "duration": [65, 66, 66]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 206, "duration": [81, 85, 95]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 7958, "duration": [91, 93, 93]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 30970, "duration": [2837, 2841, 2842]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 272, "duration": [5049, 5063, 5099]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 446943, "duration": [660, 666, 806]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 112, "duration": [305, 310, 312]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [333, 343, 346]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 51473, "duration": [190, 190, 194]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1763, "duration": [389, 389, 467]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [595, 599, 622]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 266528, "duration": [409, 412, 416]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5003, "duration": [1490, 1491, 1505]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [1876, 1890, 1912]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980371, "duration": [5692, 5718, 5742]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [162, 164, 165]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 158, "duration": [210, 212, 214]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 21196, "duration": [106, 106, 110]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5094, "duration": [1048, 1070, 1273]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 419, "duration": [1946, 2093, 2366]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169609, "duration": [5921, 6023, 6041]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1216, "duration": [228, 243, 291]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 50, "duration": [366, 369, 379]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 196687, "duration": [322, 332, 359]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 56, "duration": [30, 31, 32]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 53, "duration": [50, 52, 61]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 144768, "duration": [238, 244, 248]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [196, 196, 198]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [262, 265, 279]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 727128, "duration": [1110, 1125, 1147]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 176, "duration": [182, 183, 218]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [409, 410, 417]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168609, "duration": [5803, 5863, 6038]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 521, "duration": [41, 48, 53]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 516, "duration": [76, 76, 77]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 11727, "duration": [96, 97, 131]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [187, 192, 194]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [283, 285, 295]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 100754, "duration": [204, 205, 207]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [25, 26, 30]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 35, "duration": [27, 31, 35]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 63, "duration": [29, 29, 32]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 425, "duration": [721, 725, 727]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [813, 820, 825]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 279042, "duration": [444, 453, 456]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 757, "duration": [591, 597, 599]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [721, 727, 759]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 292410, "duration": [473, 477, 486]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 74, "duration": [33, 33, 35]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 52, "duration": [50, 63, 66]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1372, "duration": [61, 62, 62]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1159, "duration": [195, 201, 212]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 120, "duration": [327, 329, 333]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 146946, "duration": [252, 256, 320]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6552, "duration": [157, 160, 169]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 6339, "duration": [482, 485, 489]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 63852, "duration": [164, 169, 169]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1950, "duration": [442, 443, 446]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [608, 608, 775]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 67801, "duration": [190, 192, 194]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2956, "duration": [577, 585, 588]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [857, 864, 865]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 172197, "duration": [286, 286, 289]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1145, "duration": [467, 472, 506]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 133, "duration": [594, 595, 603]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 139608, "duration": [247, 249, 251]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 330, "duration": [107, 112, 145]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [172, 176, 193]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 75177, "duration": [172, 174, 174]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 341, "duration": [132, 141, 142]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [185, 187, 190]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 65937, "duration": [161, 166, 178]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 983, "duration": [632, 646, 651]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 603, "duration": [1596, 1597, 1639]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269185, "duration": [11163, 11255, 11765]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1514, "duration": [628, 642, 659]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 44, "duration": [890, 895, 900]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 3107761, "duration": [4747, 4769, 5256]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 240, "duration": [231, 235, 254]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 27, "duration": [484, 488, 506]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168301, "duration": [6028, 6200, 6344]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 14, "duration": [38, 39, 40]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [47, 48, 55]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 16308, "duration": [112, 125, 128]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2705, "duration": [776, 779, 783]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 26, "duration": [1123, 1124, 1179]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 651176, "duration": [989, 1008, 1038]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 125, "duration": [121, 127, 133]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [145, 146, 150]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 38349, "duration": [127, 135, 185]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 606, "duration": [78, 79, 81]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 348, "duration": [125, 129, 134]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 8849, "duration": [90, 92, 93]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2771, "duration": [1180, 1188, 1205]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 393, "duration": [1648, 1660, 1665]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 337147, "duration": [530, 532, 533]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 537, "duration": [156, 158, 161]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [247, 256, 261]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 90307, "duration": [192, 193, 201]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 94, "duration": [64, 72, 75]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 69, "duration": [84, 85, 106]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 53641, "duration": [159, 166, 193]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2723, "duration": [512, 518, 520]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 638, "duration": [767, 768, 772]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 132261, "duration": [246, 248, 248]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 489, "duration": [370, 373, 374]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [449, 451, 452]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 75263, "duration": [168, 173, 186]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9989, "duration": [965, 970, 986]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1658, 1672, 1676]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 178211, "duration": [304, 312, 313]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1195, "duration": [208, 210, 210]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [457, 458, 459]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 477882, "duration": [679, 680, 683]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 834, "duration": [227, 229, 231]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [320, 330, 340]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 68527, "duration": [161, 161, 162]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 424, "duration": [141, 144, 149]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 39, "duration": [244, 250, 256]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 294537, "duration": [433, 438, 445]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 400, "duration": [449, 451, 468]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 137, "duration": [539, 541, 551]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 555477, "duration": [835, 839, 840]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10926, "duration": [423, 427, 445]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 4589, "duration": [1642, 1660, 1660]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 962508, "duration": [1404, 1415, 1434]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 44, "duration": [99, 99, 105]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [118, 121, 136]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 22177, "duration": [110, 111, 123]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1249, "duration": [145, 146, 152]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 55, "duration": [290, 291, 295]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 183559, "duration": [296, 303, 309]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6482, "duration": [1011, 1032, 1032]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2037, "duration": [1802, 1806, 1930]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 318670, "duration": [519, 521, 526]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3112, "duration": [850, 917, 1004]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1531, 1532, 1583]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3802855, "duration": [5546, 5549, 5569]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 2192, "duration": [1156, 1170, 1170]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 163, "duration": [1474, 1484, 1553]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 254583, "duration": [527, 528, 547]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 76, "duration": [76, 77, 81]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [103, 104, 104]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 162351, "duration": [297, 300, 306]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 571, "duration": [425, 427, 429]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [572, 575, 591]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 620188, "duration": [942, 966, 972]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 415, "duration": [60, 62, 64]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 117, "duration": [129, 131, 136]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 91128, "duration": [186, 192, 196]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 739, "duration": [80, 84, 91]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 298, "duration": [140, 140, 141]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 9778, "duration": [98, 100, 118]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 301, "duration": [132, 136, 141]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 24, "duration": [199, 208, 216]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 140156, "duration": [243, 248, 268]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 31324, "duration": [1466, 1527, 1530]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8245, "duration": [10128, 10397, 10724]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168226, "duration": [5741, 6159, 6438]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 381, "duration": [75, 76, 78]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 341, "duration": [106, 107, 107]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 11347, "duration": [95, 101, 108]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1929, "duration": [225, 226, 228]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 34, "duration": [522, 554, 692]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 485132, "duration": [694, 706, 711]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 293, "duration": [275, 278, 282]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 251, "duration": [530, 534, 760]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3800825, "duration": [5671, 5702, 5771]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 40, "duration": [43, 44, 45]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [57, 59, 84]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 4010, "duration": [75, 77, 82]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1002, "duration": [258, 260, 268]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [365, 366, 369]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 57181, "duration": [152, 153, 161]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11227, "duration": [1852, 1855, 1871]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [2828, 2840, 2842]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 324999, "duration": [486, 489, 510]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2871, "duration": [1048, 1065, 1094]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 48, "duration": [1378, 1435, 1495]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1012784, "duration": [1592, 1597, 1791]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1241, "duration": [426, 426, 427]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 443, "duration": [905, 906, 911]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806173, "duration": [5947, 5986, 6480]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8686, "duration": [2099, 2105, 2115]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [2861, 2863, 2864]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168904, "duration": [5938, 5945, 5978]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2488, "duration": [287, 290, 294]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1598, "duration": [511, 512, 518]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 121970, "duration": [229, 231, 234]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1791, "duration": [330, 331, 333]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [496, 506, 538]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 152743, "duration": [261, 262, 270]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [75, 88, 95]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [128, 135, 138]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 126726, "duration": [227, 230, 233]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9823, "duration": [1133, 1149, 1180]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1790, "duration": [1870, 1877, 1884]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 212022, "duration": [346, 351, 352]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 373, "duration": [73, 74, 75]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [144, 147, 169]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 148462, "duration": [256, 258, 357]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 97, "duration": [65, 69, 80]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [84, 85, 87]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 7393, "duration": [85, 87, 88]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3519, "duration": [395, 402, 410]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [796, 798, 804]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 355372, "duration": [512, 520, 522]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7697, "duration": [1709, 1721, 2077]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 55, "duration": [2657, 2848, 3001]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 4015608, "duration": [6334, 6351, 6357]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 55, "duration": [71, 71, 72]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [80, 83, 90]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 11520, "duration": [115, 117, 127]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2703, "duration": [965, 968, 985]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [1255, 1258, 1261]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980777, "duration": [5698, 5731, 5762]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 66, "duration": [43, 43, 53]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [59, 60, 64]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 178640, "duration": [288, 289, 444]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 136, "duration": [171, 171, 175]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 25, "duration": [201, 206, 289]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748828, "duration": [1288, 1289, 1332]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 47, "duration": [46, 47, 50]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [46, 49, 85]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 3783, "duration": [82, 90, 99]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14379, "duration": [473, 475, 475]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8754, "duration": [1612, 1612, 1618]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 273351, "duration": [428, 431, 434]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65, "duration": [71, 73, 73]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [82, 86, 113]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 29487, "duration": [123, 124, 132]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 426, "duration": [151, 176, 211]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 52, "duration": [239, 240, 268]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 463674, "duration": [766, 779, 801]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 128, "duration": [190, 195, 213]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [240, 248, 252]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 687518, "duration": [1007, 1013, 1030]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 88, "duration": [152, 157, 182]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 33, "duration": [176, 179, 230]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 638451, "duration": [920, 929, 936]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 339, "duration": [439, 454, 473]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 58, "duration": [611, 611, 622]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1424119, "duration": [2917, 2928, 2954]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 114, "duration": [83, 89, 98]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 42, "duration": [97, 99, 112]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 16349, "duration": [100, 101, 101]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 129, "duration": [40, 40, 44]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 122, "duration": [61, 66, 131]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 16639, "duration": [128, 145, 145]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5942, "duration": [1399, 1415, 1454]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 20, "duration": [2029, 2048, 2050]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1004290, "duration": [1812, 1825, 1841]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 9831, "duration": [2013, 2024, 2043]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 5175, "duration": [3783, 3810, 3903]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 3815913, "duration": [5530, 5581, 5677]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 101, "duration": [287, 292, 297]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 26, "duration": [343, 349, 369]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 621002, "duration": [942, 950, 970]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 42326, "duration": [3134, 3165, 3167]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 105, "duration": [6079, 6086, 6110]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 506318, "duration": [745, 757, 774]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 110, "duration": [62, 62, 64]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 46, "duration": [71, 71, 134]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7141, "duration": [83, 85, 89]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3633, "duration": [418, 422, 425]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [751, 765, 767]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 341994, "duration": [501, 504, 512]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 861, "duration": [215, 218, 233]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 98, "duration": [349, 352, 352]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 236925, "duration": [360, 364, 370]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2784, "duration": [185, 186, 187]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 853, "duration": [523, 531, 540]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 254858, "duration": [407, 416, 421]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 218, "duration": [66, 69, 72]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [88, 88, 90]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 7833, "duration": [90, 92, 94]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4083, "duration": [957, 980, 1032]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 877, "duration": [2028, 2063, 2088]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 4171625, "duration": [6142, 6182, 6244]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2520, "duration": [182, 182, 186]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1404, "duration": [443, 452, 478]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 138987, "duration": [249, 252, 258]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [216, 216, 218]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 28, "duration": [290, 294, 301]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1078395, "duration": [1681, 1705, 1707]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 92527, "duration": [6663, 6668, 6711]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 95, "duration": [15360, 15439, 15689]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4270464, "duration": [12043, 12298, 12402]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 60, "duration": [41, 50, 65]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [49, 52, 55]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 7172, "duration": [83, 84, 104]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1015, "duration": [160, 161, 232]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 86, "duration": [334, 340, 340]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 200981, "duration": [324, 332, 335]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4474, "duration": [345, 347, 357]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3236, "duration": [768, 768, 785]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 360654, "duration": [539, 552, 573]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 980, "duration": [261, 269, 281]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 784, "duration": [716, 733, 745]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168065, "duration": [5707, 5724, 5735]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 284, "duration": [179, 183, 196]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 214, "duration": [257, 258, 261]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 126816, "duration": [250, 250, 251]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 83, "duration": [100, 100, 106]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 16, "duration": [119, 121, 122]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 55586, "duration": [152, 154, 157]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 58, "duration": [29, 29, 31]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 54, "duration": [39, 41, 43]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 15162, "duration": [91, 92, 97]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 201, "duration": [86, 89, 235]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [119, 126, 139]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 170597, "duration": [279, 280, 289]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 434, "duration": [182, 192, 193]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [229, 231, 234]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 26300, "duration": [112, 112, 142]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3258, "duration": [1334, 1347, 1367]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 244, "duration": [1772, 1789, 1818]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 467039, "duration": [759, 787, 801]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 121, "duration": [896, 899, 1051]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 20, "duration": [972, 984, 1104]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 635117, "duration": [998, 1001, 1169]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4708, "duration": [546, 548, 549]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1322, "duration": [1068, 1073, 1074]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 487676, "duration": [716, 723, 752]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3919, "duration": [779, 785, 801]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1515, "duration": [1110, 1119, 1132]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 144566, "duration": [258, 260, 260]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 234, "duration": [155, 159, 164]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 151, "duration": [220, 222, 223]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 192019, "duration": [325, 332, 352]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8481, "duration": [3884, 3885, 3898]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 82, "duration": [5051, 5052, 5052]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 778663, "duration": [1158, 1168, 1169]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 24, "duration": [108, 109, 112]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 19, "duration": [129, 130, 147]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 231009, "duration": [396, 414, 439]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2050, "duration": [249, 249, 253]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 314, "duration": [421, 422, 424]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 89056, "duration": [190, 191, 205]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 319, "duration": [132, 135, 135]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [183, 202, 203]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 41550, "duration": [138, 141, 147]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1982, "duration": [279, 282, 285]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [480, 482, 488]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 126649, "duration": [235, 235, 235]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 652, "duration": [148, 153, 155]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [254, 256, 287]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 148177, "duration": [260, 261, 262]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 372, "duration": [171, 174, 174]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 115, "duration": [214, 216, 217]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 27089, "duration": [117, 119, 120]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 169, "duration": [176, 177, 179]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 65, "duration": [225, 226, 231]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 536978, "duration": [784, 793, 796]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 16193, "duration": [1285, 1312, 1318]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2840, "duration": [3347, 3359, 3385]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 686232, "duration": [1556, 1575, 1584]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 21, "duration": [72, 75, 75]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [86, 90, 107]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748534, "duration": [1287, 1296, 1316]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2570, "duration": [408, 415, 427]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 33, "duration": [661, 662, 671]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 155369, "duration": [271, 291, 293]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6165, "duration": [780, 786, 796]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 255, "duration": [1239, 1244, 1254]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 126586, "duration": [243, 245, 253]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 425, "duration": [188, 195, 198]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [238, 238, 239]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 36113, "duration": [124, 126, 130]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 237, "duration": [494, 501, 643]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 37, "duration": [669, 676, 728]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3837687, "duration": [7006, 7028, 7156]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 660, "duration": [171248, 171365, 175364]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 79, "duration": [160, 162, 169]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 4168064, "duration": [2913, 2997, 3397]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 748535, "duration": [4040, 4060, 4206]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 79, "duration": [218663, 219202, 220109]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 4168064, "duration": [217358, 222531, 223762]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1950439, "duration": [227604, 228509, 230498]}], "lucene-8.10.1": [{"query": "the", "tags": ["term"], "count": 4168064, "duration": [36, 67, 118]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 79, "duration": [141, 151, 155]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [180, 214, 251]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 15456, "duration": [418, 433, 443]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 195, "duration": [84, 93, 111]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 110, "duration": [108, 108, 120]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 4173, "duration": [175, 186, 205]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 856, "duration": [225, 243, 309]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 112, "duration": [391, 399, 418]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 104150, "duration": [741, 761, 1241]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [192, 193, 232]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [329, 334, 396]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 54291, "duration": [743, 766, 800]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 266, "duration": [569, 606, 734]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 18, "duration": [781, 787, 956]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 195119, "duration": [2066, 2067, 2312]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2173, "duration": [731, 767, 857]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [1109, 1111, 1154]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 167943, "duration": [1749, 1775, 1795]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14165, "duration": [1582, 1623, 1645]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [3579, 3617, 7385]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 612165, "duration": [4585, 4633, 4672]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 85, "duration": [86, 135, 236]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 56, "duration": [125, 147, 226]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 7747, "duration": [196, 204, 213]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 693, "duration": [753, 795, 804]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [1048, 1084, 1137]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 397912, "duration": [3492, 3566, 3652]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7346, "duration": [3189, 3236, 3238]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 201, "duration": [12460, 13161, 13983]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 4173861, "duration": [25875, 27013, 28204]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4496, "duration": [782, 789, 898]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 307, "duration": [1628, 1640, 1661]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 454176, "duration": [3490, 3569, 3721]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 161, "duration": [586, 601, 653]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [642, 648, 723]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 336807, "duration": [2964, 2969, 3081]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1055, "duration": [259, 264, 268]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 177, "duration": [446, 454, 459]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 61359, "duration": [947, 990, 1392]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3760, "duration": [713, 723, 723]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 252, "duration": [1256, 1268, 1273]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 151582, "duration": [1706, 1723, 1725]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 569, "duration": [349, 352, 481]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [505, 512, 525]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 86776, "duration": [1183, 1319, 1410]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [227, 228, 253]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [248, 256, 310]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 249193, "duration": [2404, 2454, 2477]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 81, "duration": [148, 156, 277]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [189, 191, 219]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 20969, "duration": [501, 510, 531]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4617, "duration": [828, 841, 914]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 141, "duration": [1508, 1519, 1748]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 194083, "duration": [1961, 2075, 2120]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 107, "duration": [238, 255, 346]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 64, "duration": [331, 334, 344]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1192562, "duration": [7858, 8293, 8360]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1239, "duration": [952, 987, 998]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 566, "duration": [1790, 1882, 2186]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 510849, "duration": [4294, 4341, 4343]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7014, "duration": [1070, 1079, 1115]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 329, "duration": [1898, 1932, 2114]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 170364, "duration": [1805, 1839, 1937]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48653, "duration": [1135, 1154, 1257]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 44879, "duration": [3159, 3263, 3354]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 151349, "duration": [1894, 1919, 1954]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 137, "duration": [332, 420, 515]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 53, "duration": [406, 408, 410]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 95654, "duration": [1381, 1391, 1450]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7387, "duration": [927, 939, 945]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 302, "duration": [1871, 1888, 1911]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 260381, "duration": [2381, 2528, 2556]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5040, "duration": [757, 774, 1288]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 70, "duration": [1429, 1437, 1551]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 217122, "duration": [2119, 2123, 2220]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1917, "duration": [1012, 1024, 1076]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 94, "duration": [1949, 1951, 1955]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 584269, "duration": [4704, 4880, 4982]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 733, "duration": [339, 363, 368]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 76, "duration": [473, 496, 653]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 46081, "duration": [823, 949, 1084]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 421, "duration": [804, 817, 821]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 61, "duration": [1248, 1295, 1347]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 401520, "duration": [3386, 3448, 3562]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1187, "duration": [340, 343, 356]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [657, 657, 670]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 160168, "duration": [1399, 1426, 1474]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 475, "duration": [889, 906, 923]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [1316, 1340, 2514]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 402259, "duration": [3452, 3652, 3716]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 604, "duration": [333, 354, 430]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [515, 532, 584]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 99117, "duration": [1247, 1282, 1299]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65770, "duration": [3182, 3183, 3391]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [8266, 8269, 8323]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 825043, "duration": [6001, 6051, 6199]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6146, "duration": [1002, 1004, 1124]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1875, 1890, 1954]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 298137, "duration": [2586, 2659, 2720]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 13581, "duration": [1136, 1237, 1266]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1894, "duration": [2728, 2805, 3063]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 229696, "duration": [2292, 2362, 3491]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 314, "duration": [87, 108, 191]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 288, "duration": [127, 139, 158]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 10040, "duration": [234, 245, 454]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6957, "duration": [1944, 1971, 2003]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [3753, 3826, 3864]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 702120, "duration": [5608, 5711, 5734]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13996, "duration": [4185, 4209, 4459]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [8552, 8682, 9219]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1251867, "duration": [10042, 10403, 10502]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4268, "duration": [1892, 1937, 2016]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 440, "duration": [3312, 3406, 4583]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 909970, "duration": [7075, 7280, 7299]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 23, "duration": [86, 100, 134]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [96, 111, 170]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 10684, "duration": [178, 192, 200]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 157, "duration": [270, 289, 296]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [302, 338, 362]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 35325, "duration": [763, 811, 839]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1316, "duration": [2130, 2262, 2610]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1156, "duration": [4436, 4724, 6824]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269120, "duration": [41680, 42188, 43784]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 43372, "duration": [7191, 7311, 7447]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15089, "duration": [28844, 29041, 29151]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806414, "duration": [25079, 25147, 26968]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 239, "duration": [241, 282, 316]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 124, "duration": [362, 392, 398]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 333268, "duration": [1259, 1290, 1313]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 618, "duration": [593, 594, 610]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 168, "duration": [902, 924, 927]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970283, "duration": [7792, 7857, 8178]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 44521, "duration": [7411, 7441, 8805]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 4100, "duration": [27422, 27503, 27713]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 3808757, "duration": [25069, 25230, 26630]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 960, "duration": [415, 429, 432]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 244, "duration": [720, 772, 1030]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 134727, "duration": [1504, 1515, 1583]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1490, "duration": [700, 782, 817]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [1008, 1122, 1211]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 106587, "duration": [1389, 1404, 1593]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3574, "duration": [853, 902, 1024]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1021, "duration": [1401, 1402, 1490]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 146818, "duration": [1666, 1697, 1878]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 20, "duration": [76, 98, 104]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [87, 132, 169]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 82708, "duration": [324, 332, 333]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [75, 97, 98]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [74, 82, 92]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1791, "duration": [90, 99, 122]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 3397, "duration": [3269, 3291, 3687]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 12, "duration": [5600, 5845, 6873]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4053765, "duration": [34556, 35038, 36755]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 429, "duration": [211, 218, 248]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 41, "duration": [354, 364, 367]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 130601, "duration": [704, 716, 765]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2860, "duration": [307, 320, 326]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 828, "duration": [572, 637, 730]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 54702, "duration": [955, 978, 1409]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10899, "duration": [3870, 3895, 3919]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 922, "duration": [11898, 12099, 12171]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806986, "duration": [24921, 25344, 39867]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [135, 140, 173]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [158, 203, 223]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 11759, "duration": [360, 366, 386]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 443, "duration": [594, 652, 780]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [990, 1017, 1040]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798567, "duration": [22289, 22378, 22403]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1994, "duration": [2352, 2537, 2706]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1444, "duration": [5934, 6215, 6252]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269267, "duration": [41685, 43739, 43886]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 418, "duration": [489, 494, 523]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 224, "duration": [928, 940, 956]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798846, "duration": [22066, 22235, 22359]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10806, "duration": [1018, 1052, 1096]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 831, "duration": [2377, 2393, 2467]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 401948, "duration": [3321, 3367, 3371]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 90, "duration": [103, 132, 139]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [108, 111, 118]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7731, "duration": [236, 258, 428]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3336, "duration": [736, 744, 750]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [1349, 1370, 1432]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 237265, "duration": [2204, 2256, 2371]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48, "duration": [79, 94, 142]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [107, 110, 153]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 5320, "duration": [148, 162, 193]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1751, "duration": [277, 286, 316]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1335, "duration": [533, 535, 571]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 79894, "duration": [1088, 1117, 1144]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 19247, "duration": [1728, 1749, 2001]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 626, "duration": [3363, 3410, 3717]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 301066, "duration": [2628, 2703, 2763]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [115, 117, 152]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 81, "duration": [188, 199, 216]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 21776, "duration": [335, 339, 359]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3980, "duration": [220, 226, 230]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3891, "duration": [428, 432, 446]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 43534, "duration": [685, 744, 860]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 109, "duration": [220, 237, 312]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 97, "duration": [262, 265, 316]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 47760, "duration": [920, 974, 1123]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 61, "duration": [120, 126, 136]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [155, 162, 181]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 14465, "duration": [358, 359, 414]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2638, "duration": [720, 812, 855]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 60, "duration": [1291, 1310, 1363]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 301693, "duration": [2499, 2637, 2842]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 12, "duration": [137, 223, 265]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [122, 123, 148]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 57879, "duration": [231, 242, 265]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1238, "duration": [779, 781, 800]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 391, "duration": [1355, 1373, 1380]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970192, "duration": [8073, 8156, 8469]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 415, "duration": [1245, 1326, 1391]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [1517, 1543, 1566]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4316960, "duration": [45684, 45752, 50282]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3896, "duration": [860, 870, 886]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1448, 1555, 1586]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 153516, "duration": [1700, 1710, 1764]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 896, "duration": [171, 173, 317]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 475, "duration": [318, 324, 336]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 36406, "duration": [644, 648, 654]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1044, "duration": [350, 372, 374]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 74, "duration": [523, 535, 634]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 52377, "duration": [970, 1030, 1146]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1550, "duration": [395, 400, 418]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 131, "duration": [668, 701, 747]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 150258, "duration": [1602, 1694, 2527]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1246, "duration": [408, 454, 548]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 235, "duration": [525, 533, 553]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 66350, "duration": [1061, 1158, 1442]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5054, "duration": [748, 813, 842]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [1583, 1611, 2346]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 310479, "duration": [2669, 2673, 2790]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 24403, "duration": [1657, 1664, 1671]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12115, "duration": [4234, 4243, 4425]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 503137, "duration": [4002, 4062, 4433]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2540, "duration": [526, 536, 553]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 59, "duration": [1047, 1125, 1138]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 200883, "duration": [1903, 1946, 2026]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 96618, "duration": [6431, 6437, 6439]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1140, "duration": [14406, 14536, 14771]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1038231, "duration": [7752, 7826, 8268]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5964, "duration": [1271, 1313, 1357]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 256, "duration": [2409, 2433, 2468]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 402607, "duration": [3291, 3382, 4665]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 142, "duration": [82, 121, 143]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 142, "duration": [89, 105, 115]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 10007, "duration": [142, 213, 228]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2001, "duration": [1463, 1492, 1532]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [4216, 4287, 4309]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168649, "duration": [24399, 24540, 24698]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2315, "duration": [289, 298, 298]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [555, 570, 607]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 51200, "duration": [896, 909, 925]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6825, "duration": [620, 629, 641]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2155, "duration": [1264, 1303, 1307]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 114383, "duration": [1437, 1441, 1548]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 47, "duration": [488, 503, 540]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 33, "duration": [654, 666, 797]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4068900, "duration": [42881, 42882, 43000]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4125, "duration": [771, 779, 849]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [1543, 1657, 1706]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 272980, "duration": [2439, 2661, 2662]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4710, "duration": [522, 533, 536]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2046, "duration": [1095, 1110, 1323]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 193597, "duration": [1906, 1920, 2199]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8204, "duration": [2806, 2820, 2831]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [5085, 5119, 5419]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 854242, "duration": [6539, 6728, 6811]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1608, "duration": [394, 402, 414]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [618, 632, 633]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 66857, "duration": [1053, 1082, 1135]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 328, "duration": [218, 226, 237]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 97, "duration": [302, 306, 312]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 32425, "duration": [655, 702, 731]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [106, 123, 259]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [120, 140, 211]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 39428, "duration": [783, 796, 871]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10203, "duration": [3695, 3808, 4391]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [9049, 9224, 9336]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 2470107, "duration": [18730, 18999, 19796]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 55, "duration": [160, 161, 207]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 43, "duration": [156, 167, 192]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 58784, "duration": [308, 317, 350]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 901, "duration": [263, 279, 315]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 213, "duration": [464, 468, 486]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 73481, "duration": [1058, 1086, 1092]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7776, "duration": [771, 806, 816]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3077, "duration": [1464, 1488, 1538]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 127400, "duration": [1541, 1544, 1585]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1282, "duration": [2298, 2312, 2910]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 31, "duration": [3448, 3939, 3977]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 961109, "duration": [8727, 8824, 9015]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 155, "duration": [175, 209, 217]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 45, "duration": [250, 251, 270]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 280642, "duration": [927, 933, 939]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 51, "duration": [197, 202, 218]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 35, "duration": [264, 286, 286]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 102668, "duration": [1417, 1442, 1453]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1997, "duration": [552, 599, 672]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 93, "duration": [1064, 1071, 1082]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 212065, "duration": [2036, 2142, 2174]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1613, "duration": [496, 506, 604]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [824, 825, 854]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 109701, "duration": [1381, 1392, 1423]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 593, "duration": [129, 150, 239]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 373, "duration": [219, 247, 339]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 32570, "duration": [294, 305, 367]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 358, "duration": [154, 165, 178]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 89, "duration": [207, 213, 229]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 29690, "duration": [473, 512, 521]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [193, 204, 212]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [256, 265, 270]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 23089, "duration": [560, 567, 724]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7853, "duration": [3289, 3297, 3300]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 140, "duration": [12510, 12831, 14030]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169493, "duration": [25648, 27261, 27367]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 207, "duration": [78, 86, 101]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [192, 232, 256]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 8017, "duration": [162, 179, 696]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3053, "duration": [544, 550, 581]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 100, "duration": [956, 958, 959]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 132425, "duration": [1565, 1598, 1616]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 357, "duration": [123, 136, 137]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 328, "duration": [167, 168, 183]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 10614, "duration": [353, 357, 380]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 158, "duration": [237, 275, 293]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [202, 209, 214]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 22473, "duration": [510, 511, 537]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1927, "duration": [429, 461, 470]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 681, "duration": [728, 731, 763]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 88332, "duration": [1216, 1260, 1312]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 644, "duration": [270, 281, 469]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 73, "duration": [476, 496, 513]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 103711, "duration": [1153, 1179, 1191]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13480, "duration": [4027, 4124, 4160]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 969, "duration": [7070, 7100, 7128]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 918169, "duration": [7172, 7341, 7435]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 8141, "duration": [967, 1040, 1051]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [2149, 2240, 2300]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 375689, "duration": [3085, 3241, 3385]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 278, "duration": [507, 565, 634]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [698, 704, 1187]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 212074, "duration": [2192, 2221, 2238]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 266, "duration": [160, 177, 179]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 135, "duration": [213, 225, 234]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 16569, "duration": [445, 462, 834]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 22, "duration": [85, 87, 242]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [86, 89, 122]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 6674, "duration": [202, 213, 264]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1329, "duration": [1165, 1183, 1204]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 42, "duration": [1741, 1780, 1804]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 281073, "duration": [2738, 2884, 2891]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 240, "duration": [185, 207, 220]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [263, 267, 279]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 38213, "duration": [653, 692, 817]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 867, "duration": [214, 220, 357]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [315, 323, 337]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 28879, "duration": [595, 602, 712]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 406, "duration": [272, 277, 289]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 318, "duration": [401, 432, 519]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 345824, "duration": [1331, 1387, 1411]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1913, "duration": [456, 488, 498]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 171, "duration": [712, 719, 737]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 70020, "duration": [1154, 1167, 1188]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 84, "duration": [83, 92, 277]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [117, 140, 225]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 10103, "duration": [176, 176, 194]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 444, "duration": [539, 561, 653]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [786, 790, 809]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 165540, "duration": [1885, 1969, 2089]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1457, "duration": [1455, 1463, 1474]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 131, "duration": [3295, 3380, 3387]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 4174359, "duration": [25292, 25633, 25640]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11192, "duration": [1229, 1246, 1274]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [2536, 2553, 3210]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 264631, "duration": [2455, 2458, 2598]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 466, "duration": [313, 339, 340]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [435, 456, 457]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 55152, "duration": [928, 930, 984]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1061, "duration": [1081, 1092, 1110]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 74, "duration": [1421, 1424, 1454]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 194085, "duration": [2156, 2219, 2284]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 164, "duration": [98, 100, 122]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 121, "duration": [136, 143, 169]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 12785, "duration": [233, 234, 465]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 290, "duration": [263, 275, 286]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 277, "duration": [421, 423, 431]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 352602, "duration": [2988, 3217, 3312]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1111, "duration": [311, 312, 323]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 963, "duration": [561, 572, 574]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 162074, "duration": [1162, 1175, 1224]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 608, "duration": [295, 301, 418]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 485, "duration": [480, 503, 653]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 231765, "duration": [2197, 2236, 2245]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 122, "duration": [348, 366, 369]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 10, "duration": [479, 513, 538]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 217412, "duration": [2272, 2301, 2326]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 118291, "duration": [7183, 7447, 7454]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21737, "duration": [65237, 65656, 67661]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168234, "duration": [24804, 24869, 25015]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 367, "duration": [224, 231, 274]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [339, 360, 492]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 33310, "duration": [672, 692, 710]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 192, "duration": [179, 196, 210]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [273, 283, 354]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 46274, "duration": [674, 679, 737]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 180, "duration": [301, 308, 314]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 143, "duration": [450, 493, 500]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 268624, "duration": [2494, 2546, 2551]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2130, "duration": [1769, 1793, 1799]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [3100, 3228, 3243]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 2372213, "duration": [15388, 15990, 16179]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 248, "duration": [242, 254, 257]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 68, "duration": [251, 258, 260]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 47084, "duration": [688, 715, 907]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [102, 125, 132]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 226, "duration": [90, 106, 109]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 4838, "duration": [143, 157, 182]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 78, "duration": [101, 109, 186]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [124, 158, 187]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 17211, "duration": [403, 404, 517]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1532, "duration": [517, 527, 536]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 173, "duration": [777, 778, 875]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 76229, "duration": [1127, 1158, 1281]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2422, "duration": [120, 130, 140]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2381, "duration": [214, 216, 323]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 6515, "duration": [277, 279, 287]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1633, "duration": [289, 326, 326]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 123, "duration": [532, 542, 594]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 73305, "duration": [994, 1046, 1048]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4110, "duration": [2347, 2441, 2570]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 60, "duration": [4243, 4294, 4395]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 2315795, "duration": [16891, 17029, 17079]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [252, 254, 257]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [399, 453, 700]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 92901, "duration": [866, 945, 959]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 131, "duration": [601, 611, 672]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [785, 790, 801]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 226887, "duration": [2496, 2520, 2666]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1539, "duration": [829, 843, 906]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 79, "duration": [1337, 1374, 1674]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 322018, "duration": [3071, 3149, 3402]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1358, "duration": [432, 454, 479]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [703, 828, 894]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 68175, "duration": [1101, 1104, 1282]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 813, "duration": [320, 380, 449]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 67, "duration": [486, 487, 518]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 62207, "duration": [1020, 1056, 1127]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [204, 229, 285]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [183, 210, 345]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 33193, "duration": [175, 178, 191]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3401, "duration": [620, 642, 699]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 821, "duration": [1081, 1081, 1087]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 134076, "duration": [1546, 1567, 1588]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2416, "duration": [500, 541, 563]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [936, 959, 975]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 105084, "duration": [1336, 1340, 1452]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 162, "duration": [228, 233, 254]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [407, 418, 428]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168064, "duration": [9580, 9585, 10636]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 361, "duration": [278, 297, 326]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [450, 469, 470]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 167104, "duration": [1125, 1137, 1168]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 679, "duration": [1124, 1131, 1211]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [1556, 1586, 1588]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 730213, "duration": [5778, 5897, 5937]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5744, "duration": [888, 892, 893]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [1610, 1638, 1684]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 222790, "duration": [2093, 2265, 2378]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 377, "duration": [902, 926, 929]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 16, "duration": [1240, 1279, 1308]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 774500, "duration": [6753, 7009, 7299]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 639, "duration": [394, 420, 432]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [640, 640, 642]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 188645, "duration": [1574, 1680, 1721]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 138, "duration": [215, 230, 296]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [167, 172, 178]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 14092, "duration": [453, 454, 461]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5577, "duration": [1152, 1208, 1218]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [2184, 2224, 2297]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 310569, "duration": [2686, 2709, 2885]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 29, "duration": [94, 94, 111]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [99, 126, 127]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 14156, "duration": [168, 181, 195]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 144, "duration": [164, 179, 335]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [231, 251, 430]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 69112, "duration": [541, 573, 787]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2936, "duration": [511, 520, 541]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 611, "duration": [1044, 1047, 1060]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 192280, "duration": [1861, 2098, 2191]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9630, "duration": [1104, 1330, 1786]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 181, "duration": [2413, 2428, 2511]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 389360, "duration": [3094, 3219, 3250]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 490, "duration": [103, 112, 218]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 414, "duration": [188, 200, 330]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 11304, "duration": [331, 335, 340]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 431, "duration": [400, 412, 547]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 115, "duration": [643, 648, 667]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 308550, "duration": [2662, 2701, 2755]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6560, "duration": [3465, 3470, 3623]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 16, "duration": [8785, 8916, 9255]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 4014085, "duration": [27125, 28696, 29698]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1218, "duration": [415, 434, 479]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [626, 708, 724]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 119020, "duration": [1453, 1473, 1473]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 531, "duration": [353, 355, 409]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 82, "duration": [462, 485, 532]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 43329, "duration": [830, 846, 866]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2111, "duration": [526, 542, 656]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [918, 930, 941]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 159993, "duration": [1705, 1715, 1774]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 370, "duration": [131, 138, 142]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [187, 192, 206]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 11717, "duration": [386, 389, 542]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 25282, "duration": [2022, 2060, 2193]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 210, "duration": [5351, 5352, 5401]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 909593, "duration": [6187, 6308, 6504]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 350, "duration": [599, 640, 698]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 141, "duration": [867, 872, 881]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 758590, "duration": [5890, 6073, 6099]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1273, "duration": [563, 612, 656]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [1103, 1108, 1142]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 349637, "duration": [2762, 2772, 2851]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 220, "duration": [102, 138, 303]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 206, "duration": [136, 150, 175]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 7958, "duration": [282, 295, 356]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 30970, "duration": [2626, 2642, 2781]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 272, "duration": [5189, 5221, 5224]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 446943, "duration": [3665, 3702, 3797]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 112, "duration": [378, 393, 454]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [451, 453, 502]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 51473, "duration": [986, 1018, 1021]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1763, "duration": [677, 716, 755]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [1069, 1138, 1145]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 266528, "duration": [2354, 2383, 2413]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5003, "duration": [2788, 2870, 2889]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [6134, 6163, 6208]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980371, "duration": [23758, 24289, 25182]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [190, 222, 228]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 158, "duration": [294, 299, 340]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 21196, "duration": [506, 516, 527]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5094, "duration": [2530, 2635, 2821]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 419, "duration": [8156, 8336, 8641]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169609, "duration": [24907, 26483, 28943]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1216, "duration": [434, 442, 460]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 50, "duration": [738, 738, 801]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 196687, "duration": [1821, 1874, 1984]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 56, "duration": [81, 93, 121]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 53, "duration": [105, 119, 127]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 144768, "duration": [440, 461, 553]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [569, 617, 648]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [722, 744, 813]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 727128, "duration": [5815, 5855, 6006]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 176, "duration": [368, 373, 377]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [596, 610, 652]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168609, "duration": [24725, 25281, 25769]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 521, "duration": [97, 109, 143]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 516, "duration": [134, 157, 276]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 11727, "duration": [200, 207, 253]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [296, 298, 318]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [525, 529, 743]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 100754, "duration": [1202, 1225, 1245]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [61, 75, 79]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 35, "duration": [56, 83, 155]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 63, "duration": [59, 64, 92]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 425, "duration": [904, 942, 947]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [1187, 1330, 1463]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 279042, "duration": [2721, 2742, 3024]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 757, "duration": [829, 832, 833]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [1145, 1153, 1161]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 292410, "duration": [2767, 2802, 2820]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 74, "duration": [73, 76, 86]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 52, "duration": [77, 84, 84]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1372, "duration": [110, 147, 292]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1159, "duration": [366, 373, 418]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 120, "duration": [652, 658, 1137]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 146946, "duration": [1503, 1508, 1517]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6552, "duration": [379, 395, 401]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 6339, "duration": [614, 641, 733]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 63852, "duration": [979, 993, 1097]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1950, "duration": [498, 512, 559]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [730, 747, 750]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 67801, "duration": [1129, 1140, 1159]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2956, "duration": [656, 670, 678]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [1115, 1133, 1165]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 172197, "duration": [1786, 1848, 1936]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1145, "duration": [522, 556, 615]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 133, "duration": [819, 831, 892]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 139608, "duration": [1582, 1592, 1621]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 330, "duration": [226, 257, 261]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [339, 341, 341]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 75177, "duration": [840, 851, 874]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 341, "duration": [223, 234, 248]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [325, 326, 335]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 65937, "duration": [891, 918, 944]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 983, "duration": [1546, 1565, 1601]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 603, "duration": [3617, 3642, 3738]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269185, "duration": [41677, 43714, 44836]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1514, "duration": [1228, 1230, 1315]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 44, "duration": [2478, 2516, 2524]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 3107761, "duration": [18818, 18891, 19086]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 240, "duration": [463, 464, 567]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 27, "duration": [899, 953, 1184]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168301, "duration": [24723, 25064, 26415]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 14, "duration": [80, 87, 110]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [89, 95, 100]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 16308, "duration": [347, 356, 475]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2705, "duration": [1423, 1430, 1474]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 26, "duration": [2410, 2513, 2864]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 651176, "duration": [5108, 5165, 5304]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 125, "duration": [189, 208, 210]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [248, 249, 356]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 38349, "duration": [657, 661, 686]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 606, "duration": [120, 130, 144]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 348, "duration": [163, 196, 199]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 8849, "duration": [295, 335, 343]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2771, "duration": [1353, 1379, 1506]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 393, "duration": [2263, 2268, 2294]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 337147, "duration": [3069, 3119, 3121]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 537, "duration": [263, 265, 277]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [444, 502, 513]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 90307, "duration": [1066, 1067, 1203]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 94, "duration": [140, 163, 174]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 69, "duration": [193, 209, 394]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 53641, "duration": [961, 976, 1029]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2723, "duration": [576, 580, 593]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 638, "duration": [1006, 1006, 1140]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 132261, "duration": [1545, 1545, 1553]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 489, "duration": [399, 414, 445]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [597, 634, 639]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 75263, "duration": [1128, 1184, 1334]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9989, "duration": [940, 959, 975]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1739, 1819, 1821]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 178211, "duration": [1863, 1896, 2103]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1195, "duration": [606, 636, 1080]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [1087, 1097, 1108]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 477882, "duration": [3121, 3124, 3159]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 834, "duration": [305, 306, 570]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [469, 472, 479]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 68527, "duration": [999, 1028, 1068]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 424, "duration": [412, 460, 465]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 39, "duration": [669, 701, 701]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 294537, "duration": [1881, 2025, 2196]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 400, "duration": [619, 635, 662]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 137, "duration": [892, 913, 1115]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 555477, "duration": [4349, 4494, 4568]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10926, "duration": [1526, 1545, 1556]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 4589, "duration": [3690, 3835, 3890]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 962508, "duration": [6529, 6878, 7193]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 44, "duration": [162, 201, 218]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [256, 296, 304]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 22177, "duration": [436, 456, 542]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1249, "duration": [377, 398, 467]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 55, "duration": [643, 643, 705]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 183559, "duration": [1568, 1655, 1814]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6482, "duration": [1286, 1296, 1312]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2037, "duration": [2534, 2618, 2645]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 318670, "duration": [3056, 3199, 3241]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3112, "duration": [1946, 2003, 2014]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [4785, 5090, 5355]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3802855, "duration": [22918, 24545, 28676]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 2192, "duration": [1551, 1561, 1574]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 163, "duration": [2360, 2444, 2593]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 254583, "duration": [3108, 3124, 3436]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 76, "duration": [163, 166, 173]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [195, 214, 215]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 162351, "duration": [1858, 1965, 2039]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 571, "duration": [807, 827, 861]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1343, 1350, 1381]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 620188, "duration": [5197, 5252, 5272]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 415, "duration": [182, 187, 238]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 117, "duration": [296, 301, 309]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 91128, "duration": [581, 655, 661]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 739, "duration": [119, 125, 150]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 298, "duration": [184, 190, 192]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 9778, "duration": [377, 388, 402]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 301, "duration": [308, 324, 346]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 24, "duration": [483, 484, 486]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 140156, "duration": [1229, 1290, 1320]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 31324, "duration": [4355, 4476, 4832]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8245, "duration": [23953, 24391, 24819]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168226, "duration": [24021, 24153, 27240]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 381, "duration": [106, 115, 128]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 341, "duration": [146, 151, 154]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 11347, "duration": [386, 456, 506]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1929, "duration": [686, 698, 708]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 34, "duration": [1273, 1319, 1321]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 485132, "duration": [3192, 3198, 3281]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 293, "duration": [581, 590, 1033]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 251, "duration": [970, 1060, 1103]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3800825, "duration": [23566, 24780, 25124]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 40, "duration": [76, 94, 175]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [175, 221, 279]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 4010, "duration": [148, 150, 180]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1002, "duration": [390, 421, 438]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [491, 548, 560]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 57181, "duration": [932, 1004, 1023]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11227, "duration": [1750, 1775, 1785]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [3292, 3325, 3400]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 324999, "duration": [2905, 3036, 3247]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2871, "duration": [1567, 1589, 1617]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 48, "duration": [2945, 2993, 2993]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1012784, "duration": [7552, 7866, 10915]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1241, "duration": [1260, 1301, 1452]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 443, "duration": [2412, 2467, 2486]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806173, "duration": [24471, 24833, 24935]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8686, "duration": [3536, 3547, 3689]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [13138, 13494, 13518]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168904, "duration": [25068, 25075, 27965]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2488, "duration": [433, 437, 450]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1598, "duration": [763, 793, 796]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 121970, "duration": [1420, 1445, 1447]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1791, "duration": [462, 497, 524]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [822, 831, 870]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 152743, "duration": [1659, 1671, 1725]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [223, 250, 260]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [328, 336, 393]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 126726, "duration": [781, 819, 884]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9823, "duration": [1081, 1129, 1133]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1790, "duration": [2214, 2255, 2345]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 212022, "duration": [2093, 2117, 2132]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 373, "duration": [223, 246, 264]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [368, 400, 484]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 148462, "duration": [813, 836, 965]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 97, "duration": [91, 97, 122]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [135, 148, 224]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 7393, "duration": [259, 272, 294]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3519, "duration": [748, 763, 774]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [1509, 1547, 1550]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 355372, "duration": [2847, 2928, 2977]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7697, "duration": [3550, 3724, 3743]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 55, "duration": [9045, 9095, 9140]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 4015608, "duration": [26353, 26636, 27769]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 55, "duration": [131, 133, 146]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [147, 179, 219]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 11520, "duration": [469, 472, 491]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2703, "duration": [1780, 1786, 2595]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [3755, 3762, 3767]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980777, "duration": [23849, 23974, 24066]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 66, "duration": [126, 163, 233]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [168, 199, 331]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 178640, "duration": [492, 514, 528]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 136, "duration": [417, 434, 466]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 25, "duration": [508, 540, 556]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748828, "duration": [6505, 6758, 6884]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 47, "duration": [104, 120, 144]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [81, 88, 108]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 3783, "duration": [173, 188, 188]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14379, "duration": [840, 841, 860]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8754, "duration": [2371, 2375, 2458]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 273351, "duration": [2459, 2487, 2545]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65, "duration": [138, 146, 167]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [163, 175, 185]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 29487, "duration": [394, 427, 564]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 426, "duration": [463, 544, 579]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 52, "duration": [740, 765, 785]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 463674, "duration": [4088, 4160, 4437]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 128, "duration": [404, 415, 443]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [572, 614, 623]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 687518, "duration": [5268, 5295, 5347]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 88, "duration": [441, 514, 643]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 33, "duration": [486, 488, 519]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 638451, "duration": [4962, 5466, 5751]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 339, "duration": [1259, 1263, 1310]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 58, "duration": [1862, 1995, 2038]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1424119, "duration": [13547, 13602, 13963]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 114, "duration": [133, 136, 175]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 42, "duration": [167, 215, 227]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 16349, "duration": [365, 380, 401]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 129, "duration": [85, 100, 117]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 122, "duration": [134, 156, 240]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 16639, "duration": [307, 451, 551]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5942, "duration": [2237, 2368, 2421]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 20, "duration": [4476, 4498, 4656]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1004290, "duration": [8266, 8789, 8953]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 9831, "duration": [3542, 3600, 3622]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 5175, "duration": [9455, 9526, 9837]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 3815913, "duration": [23292, 23614, 23918]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 101, "duration": [436, 441, 456]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 26, "duration": [595, 614, 742]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 621002, "duration": [4860, 4962, 5102]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 42326, "duration": [2904, 2981, 3069]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 105, "duration": [6106, 6193, 10663]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 506318, "duration": [4119, 4120, 4132]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 110, "duration": [120, 134, 178]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 46, "duration": [120, 130, 135]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7141, "duration": [237, 244, 286]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3633, "duration": [756, 785, 853]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [1484, 1500, 1737]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 341994, "duration": [2771, 2856, 2864]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 861, "duration": [467, 472, 495]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 98, "duration": [769, 793, 1275]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 236925, "duration": [2021, 2024, 2061]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2784, "duration": [491, 528, 529]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 853, "duration": [1046, 1095, 1257]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 254858, "duration": [2118, 2221, 2231]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 218, "duration": [98, 103, 109]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [134, 139, 176]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 7833, "duration": [279, 295, 469]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4083, "duration": [2365, 2389, 2652]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 877, "duration": [8229, 8296, 9153]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 4171625, "duration": [25690, 25966, 27057]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2520, "duration": [355, 356, 425]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1404, "duration": [776, 786, 800]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 138987, "duration": [1476, 1537, 1541]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [556, 575, 586]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 28, "duration": [783, 791, 978]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1078395, "duration": [7830, 7929, 8138]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 92527, "duration": [17349, 17386, 17792]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 95, "duration": [94697, 96404, 97035]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4270464, "duration": [45088, 47248, 47490]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 60, "duration": [96, 116, 119]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [94, 120, 238]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 7172, "duration": [162, 166, 183]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1015, "duration": [398, 399, 403]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 86, "duration": [728, 736, 813]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 200981, "duration": [1564, 1572, 1686]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4474, "duration": [734, 760, 1195]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3236, "duration": [1511, 1565, 1614]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 360654, "duration": [2903, 2976, 2992]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 980, "duration": [649, 668, 763]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 784, "duration": [1365, 1494, 1637]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168065, "duration": [12903, 12905, 18269]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 284, "duration": [306, 380, 401]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 214, "duration": [467, 487, 516]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 126816, "duration": [1598, 1612, 1621]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 83, "duration": [187, 188, 194]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 16, "duration": [245, 246, 265]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 55586, "duration": [726, 733, 734]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 58, "duration": [67, 69, 124]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 54, "duration": [79, 102, 134]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 15162, "duration": [97, 97, 102]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 201, "duration": [280, 284, 297]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [332, 341, 370]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 170597, "duration": [891, 912, 953]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 434, "duration": [219, 220, 222]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [320, 321, 333]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 26300, "duration": [564, 587, 612]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3258, "duration": [1679, 1684, 1792]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 244, "duration": [2697, 2705, 3070]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 467039, "duration": [4101, 4157, 4205]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 121, "duration": [1386, 1454, 1577]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 20, "duration": [1615, 1618, 1951]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 635117, "duration": [5399, 5613, 5705]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4708, "duration": [955, 997, 1028]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1322, "duration": [1900, 1945, 2887]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 487676, "duration": [3628, 3717, 3897]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3919, "duration": [799, 849, 886]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1515, "duration": [1311, 1322, 1343]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 144566, "duration": [1627, 1646, 1803]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 234, "duration": [316, 345, 486]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 151, "duration": [482, 484, 796]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 192019, "duration": [2052, 2062, 2097]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8481, "duration": [4024, 4123, 4158]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 82, "duration": [5976, 6000, 6069]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 778663, "duration": [6028, 6311, 6395]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 24, "duration": [235, 259, 291]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 19, "duration": [215, 234, 256]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 231009, "duration": [2391, 2447, 2454]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2050, "duration": [331, 350, 365]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 314, "duration": [609, 613, 639]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 89056, "duration": [1175, 1226, 1404]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 319, "duration": [188, 197, 215]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [304, 330, 336]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 41550, "duration": [666, 678, 846]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1982, "duration": [399, 403, 454]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [771, 772, 845]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 126649, "duration": [1452, 1455, 1460]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 652, "duration": [328, 364, 372]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [546, 569, 712]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 148177, "duration": [1389, 1415, 1450]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 372, "duration": [206, 228, 246]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 115, "duration": [295, 301, 372]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 27089, "duration": [593, 669, 695]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 169, "duration": [297, 312, 340]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 65, "duration": [416, 437, 484]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 536978, "duration": [4225, 4386, 4402]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 16193, "duration": [2608, 2614, 2666]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2840, "duration": [6528, 6605, 6686]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 686232, "duration": [7200, 7330, 7416]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 21, "duration": [157, 175, 222]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [180, 182, 187]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748534, "duration": [6307, 6408, 6475]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2570, "duration": [503, 511, 547]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 33, "duration": [970, 985, 1001]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 155369, "duration": [1692, 1739, 1784]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6165, "duration": [796, 805, 822]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 255, "duration": [1378, 1394, 1399]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 126586, "duration": [1530, 1554, 1583]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 425, "duration": [237, 257, 357]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [329, 334, 363]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 36113, "duration": [695, 737, 907]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 237, "duration": [1168, 1197, 1218]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 37, "duration": [1550, 1616, 1632]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3837687, "duration": [28962, 30030, 30523]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 660, "duration": [48453, 48514, 49001]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 79, "duration": [567, 649, 674]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 4168064, "duration": [7921, 8518, 8949]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 748534, "duration": [6973, 7108, 7255]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 79, "duration": [588, 701, 752]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 4168064, "duration": [8116, 8316, 8433]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 748534, "duration": [7025, 7029, 7230]}]}} \ No newline at end of file diff --git a/run_all.sh b/run_all.sh deleted file mode 100755 index f96b240942b..00000000000 --- a/run_all.sh +++ /dev/null @@ -1,67 +0,0 @@ -#!/bin/bash - -set -e - -BASE=${0%/*} - -PROGRAM_NAME=$0 - -display_usage() { - echo -e "Build all benchmarks, create search indexes using the supplied document set, and run the supplied queries to benchmark." - echo -e "Output goes into the outputs/ directory." - echo -e "" - echo -e "Usage: ${PROGRAM_NAME} document_file query_directory" - echo -e "" - echo -e "Parameters:" - echo -e " document_file A JSON file containing one document per line, with \"url\", \"title\", and \"body\" fields" - echo -e " query_directory A .txt file or directory containing .txt files. Should have one query per line. Will be recursively searched." - echo -e " -h --help Display this usage guide" -} - -if [ $# -le 1 ] -then - display_usage - exit 1 -fi - -if [[ ( $# == "--help") || $# == "-h" ]] -then - display_usage - exit 0 -fi - -echo Building base benchmark code -${BASE}/benchmark/build.sh - -echo Building individual benchmark projects -${BASE}/preprocess_all.sh - -TOP_LEVEL_OUTPUTS=${BASE}/outputs - -mkdir ${TOP_LEVEL_OUTPUTS} -PIPE_FILE=${TOP_LEVEL_OUTPUTS}/.pipe - -mkfifo ${PIPE_FILE} - -INDEX_TYPES=`cat ${BASE}/INDEX_TYPES.txt` -for INDEX_TYPE in ${INDEX_TYPES} ; do - echo Processing ${INDEX_TYPE} - - OUTPUT=${TOP_LEVEL_OUTPUTS}/${INDEX_TYPE} - mkdir ${OUTPUT} - INDEX_OUTPUT=${OUTPUT}/index - mkdir ${INDEX_OUTPUT} - - echo Building index for ${INDEX_TYPE} into ${INDEX_OUTPUT} - start=`date +%s` - ${BASE}/${INDEX_TYPE}/build_index.sh ${INDEX_OUTPUT} < $1 - end=`date +%s` - runtime=$((end-start)) - echo Building index for ${INDEX_TYPE} took ${runtime} seconds - echo ${runtime} > ${OUTPUT}/build_time.txt - - echo Querying against ${INDEX_TYPE} - ${BASE}/benchmark/drive.sh --queries $2 <${PIPE_FILE} 2>${OUTPUT}/query_output.txt | ${INDEX_TYPE}/query.sh ${INDEX_OUTPUT} >${PIPE_FILE} -done - -rm ${PIPE_FILE} \ No newline at end of file diff --git a/src/client.py b/src/client.py new file mode 100644 index 00000000000..53c00e5f02c --- /dev/null +++ b/src/client.py @@ -0,0 +1,128 @@ +import subprocess +import os +from os import path +import time +import json +import random +from collections import defaultdict + +COMMANDS = os.environ['COMMANDS'].split(' ') + +class SearchClient: + + def __init__(self, engine, unsupported_queries): + self.engine = engine + self.unsupported_queries = unsupported_queries + dirname = os.path.split(os.path.abspath(__file__))[0] + dirname = path.dirname(dirname) + dirname = path.join(dirname, "engines") + cwd = path.join(dirname, engine) + print(cwd) + self.process = subprocess.Popen(["make", "--no-print-directory", "serve"], + cwd=cwd, + stdout=subprocess.PIPE, + stdin=subprocess.PIPE) + + def query(self, query, command): + if query in unsupported_queries: + return None + query_line = "%s\t%s\n" % (command, query) + self.process.stdin.write(query_line.encode("utf-8")) + self.process.stdin.flush() + recv = self.process.stdout.readline().strip() + if recv == b"UNSUPPORTED": + return None + cnt = int(recv) + return cnt + + def close(self): + self.process.stdin.close() + self.process.stdout.close() + +def drive(queries, client, command): + for query in queries: + start = time.monotonic() + count = client.query(query.query, command) + stop = time.monotonic() + duration = int((stop - start) * 1e6) + yield (query, count, duration) + +class Query(object): + def __init__(self, query, tags): + self.query = query + self.tags = tags + +def read_queries(query_path): + for q in open(query_path): + c = json.loads(q) + yield Query(c["query"], c["tags"]) + +WARMUP_ITER = 1 +NUM_ITER = 3 + +def filter_non_range_queries(queries): + return [query for query in queries if 'range' not in query.tags] + +def get_range_queries(queries): + range_queries = set() + for query in queries: + if 'range' in query.tags: + range_queries.add(query.query) + return range_queries + +if __name__ == "__main__": + import sys + random.seed(2) + query_path = sys.argv[1] + engines = sys.argv[2:] + range_query_enabled_engines = os.environ['RANGE_QUERY_ENABLED_ENGINES'].split(" ") + range_query_enabled_engines = [engine.strip() for engine in range_query_enabled_engines] + queries = list(read_queries(query_path)) + # non_range_queries = filter_non_range_queries(queries) + range_queries = get_range_queries(queries) + results = {} + for command in COMMANDS: + results_commands = {} + for engine in engines: + engine_results = [] + query_idx = {} + if engine in range_query_enabled_engines: + unsupported_queries = set() + else: + unsupported_queries = range_queries + + for query in queries: + query_result = { + "query": query.query, + "tags": query.tags, + "count": 0, + "duration": [] + } + query_idx[query.query] = query_result + engine_results.append(query_result) + print("======================") + print("BENCHMARKING %s %s" % (engine, command)) + search_client = SearchClient(engine, unsupported_queries) + print("--- Warming up ...") + queries_shuffled = list(queries[:]) + random.seed(2) + random.shuffle(queries_shuffled) + for i in range(WARMUP_ITER): + for _ in drive(queries_shuffled, search_client, command): + pass + for i in range(NUM_ITER): + print("- Run #%s of %s" % (i + 1, NUM_ITER)) + for (query, count, duration) in drive(queries_shuffled, search_client, command): + if count is None: + query_idx[query.query] = {count: -1, duration: []} + else: + query_idx[query.query]["count"] = count + query_idx[query.query]["duration"].append(duration) + for query in engine_results: + query["duration"].sort() + results_commands[engine] = engine_results + search_client.close() + print(results_commands.keys()) + results[command] = results_commands + with open("results.json" , "w") as f: + json.dump(results, f, default=lambda obj: obj.__dict__) diff --git a/tantivy/build.sh b/tantivy/build.sh deleted file mode 100755 index 221be6a0f19..00000000000 --- a/tantivy/build.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -SCRIPT_PATH=${0%/*} - -cd ${SCRIPT_PATH} - -cargo build --release diff --git a/tantivy/build_index.sh b/tantivy/build_index.sh deleted file mode 100755 index e35269a86d5..00000000000 --- a/tantivy/build_index.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -SCRIPT_PATH=${0%/*} - -${SCRIPT_PATH}/target/release/build_index "$@" \ No newline at end of file diff --git a/tantivy/query.sh b/tantivy/query.sh deleted file mode 100755 index 9ac1e54755f..00000000000 --- a/tantivy/query.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/bin/bash - -SCRIPT_PATH=${0%/*} - -${SCRIPT_PATH}/target/release/do_query "$@" diff --git a/tantivy/src/bin/build_index.rs b/tantivy/src/bin/build_index.rs deleted file mode 100644 index c8a722d57c8..00000000000 --- a/tantivy/src/bin/build_index.rs +++ /dev/null @@ -1,78 +0,0 @@ -#[macro_use] -extern crate tantivy; -extern crate core; - -extern crate serde; -#[macro_use] -extern crate serde_derive; -extern crate serde_json; - - -use tantivy::schema::SchemaBuilder; -use tantivy::schema::IntOptions; -use tantivy::Index; - -use std::env; -use std::io::BufRead; -use std::io::Result; -use std::path::Path; -use tantivy::schema::Cardinality; -use tantivy::schema::{TEXT, STORED}; - -fn main() { - let args: Vec = env::args().collect(); - main_inner(&Path::new(&args[1])).unwrap(); -} - -#[derive(Debug, Serialize, Deserialize)] -struct InputDocument { - url: String, - title: String, - body: String, -} - -fn main_inner(output_dir: &Path) -> Result<()> { - let mut schema_builder = SchemaBuilder::default(); - - let id_field = schema_builder.add_u64_field("id", IntOptions::default().set_fast(Cardinality::SingleValue)); - let title_field = schema_builder.add_text_field("title", TEXT | STORED); - let all_field = schema_builder.add_text_field("all", TEXT); - - let schema = schema_builder.build(); - - let index = Index::create(output_dir, schema).expect("failed to create index"); - - // 4 GB heap - let mut index_writer = index.writer(200_000_000).expect("failed to create index writer"); - - let stdin = std::io::stdin(); - for line in stdin.lock().lines() { - let line = line?; - - if line.trim().is_empty() { - continue; - } - - let input_doc: InputDocument = serde_json::from_str(&line)?; - - let url_prefix = "https://en.wikipedia.org/wiki?curid="; - if !input_doc.url.starts_with(url_prefix) { - continue; - } - if let Ok(doc_id) = input_doc.url[url_prefix.len()..].parse::() { - let all = format!("{}\n{}", input_doc.title, input_doc.body); - index_writer.add_document(doc!( - id_field=>doc_id, - title_field=>input_doc.title, - all_field=>all - )); - } else { - println!("invalid doc id in {:?}", input_doc); - }; - - } - - index_writer.commit().expect("failed to commit"); - index_writer.wait_merging_threads().expect("Failed while waiting merging threads"); - Ok(()) -} diff --git a/tantivy/src/bin/do_query.rs b/tantivy/src/bin/do_query.rs deleted file mode 100644 index bc7de4944eb..00000000000 --- a/tantivy/src/bin/do_query.rs +++ /dev/null @@ -1,32 +0,0 @@ -extern crate tantivy; - -use tantivy::Index; -use tantivy::query::QueryParser; -use tantivy::tokenizer::TokenizerManager; - -use std::env; -use std::io::BufRead; -use std::io::Result; -use std::path::Path; - -fn main() { - let args: Vec = env::args().collect(); - main_inner(&Path::new(&args[1])).unwrap() -} - -fn main_inner(index_dir: &Path) -> Result<()> { - let index = Index::open(index_dir).expect("failed to open index"); - let all_field = index.schema().get_field("all").expect("no all field?!"); - let query_parser = QueryParser::new(index.schema(), vec![all_field], TokenizerManager::default()); - - let searcher = index.searcher(); - - let stdin = std::io::stdin(); - for line in stdin.lock().lines() { - let line = line?; - let query = query_parser.parse_query(&line).expect("failed to parse query!"); - println!("{}", query.count(&*searcher).expect("Search failed")); - } - - Ok(()) -} \ No newline at end of file diff --git a/web/build/asset-manifest.json b/web/build/asset-manifest.json new file mode 100644 index 00000000000..9b5b2fe9291 --- /dev/null +++ b/web/build/asset-manifest.json @@ -0,0 +1,22 @@ +{ + "files": { + "main.css": "/static/css/main.efe263f6.chunk.css", + "main.js": "/static/js/main.c66c7816.chunk.js", + "main.js.map": "/static/js/main.c66c7816.chunk.js.map", + "runtime-main.js": "/static/js/runtime-main.07d0b69d.js", + "runtime-main.js.map": "/static/js/runtime-main.07d0b69d.js.map", + "static/js/2.b9a6fc97.chunk.js": "/static/js/2.b9a6fc97.chunk.js", + "static/js/2.b9a6fc97.chunk.js.map": "/static/js/2.b9a6fc97.chunk.js.map", + "index.html": "/index.html", + "precache-manifest.7b83eae4e2e4343e988370e38597b789.js": "/precache-manifest.7b83eae4e2e4343e988370e38597b789.js", + "service-worker.js": "/service-worker.js", + "static/css/main.efe263f6.chunk.css.map": "/static/css/main.efe263f6.chunk.css.map", + "static/js/2.b9a6fc97.chunk.js.LICENSE.txt": "/static/js/2.b9a6fc97.chunk.js.LICENSE.txt" + }, + "entrypoints": [ + "static/js/runtime-main.07d0b69d.js", + "static/js/2.b9a6fc97.chunk.js", + "static/css/main.efe263f6.chunk.css", + "static/js/main.c66c7816.chunk.js" + ] +} \ No newline at end of file diff --git a/web/build/index.html b/web/build/index.html new file mode 100644 index 00000000000..ffda78786fe --- /dev/null +++ b/web/build/index.html @@ -0,0 +1 @@ +Search benchmark, the game

Search Benchmark, the Game



\ No newline at end of file diff --git a/web/build/precache-manifest.7b83eae4e2e4343e988370e38597b789.js b/web/build/precache-manifest.7b83eae4e2e4343e988370e38597b789.js new file mode 100644 index 00000000000..a8c316f1e95 --- /dev/null +++ b/web/build/precache-manifest.7b83eae4e2e4343e988370e38597b789.js @@ -0,0 +1,26 @@ +self.__precacheManifest = (self.__precacheManifest || []).concat([ + { + "revision": "3a9164b33be1512d17d28307def4a4b9", + "url": "/index.html" + }, + { + "revision": "32b99aac2ce129db0a1a", + "url": "/static/css/main.efe263f6.chunk.css" + }, + { + "revision": "c551a61abf2385a8f0bc", + "url": "/static/js/2.b9a6fc97.chunk.js" + }, + { + "revision": "63a84f5c0b19c96be47a74b765284fbf", + "url": "/static/js/2.b9a6fc97.chunk.js.LICENSE.txt" + }, + { + "revision": "32b99aac2ce129db0a1a", + "url": "/static/js/main.c66c7816.chunk.js" + }, + { + "revision": "e80fa3db5faf8870e46e", + "url": "/static/js/runtime-main.07d0b69d.js" + } +]); \ No newline at end of file diff --git a/web/build/results.json b/web/build/results.json new file mode 100644 index 00000000000..67c85b40836 --- /dev/null +++ b/web/build/results.json @@ -0,0 +1 @@ +{"TOP_10": {"tantivy-0.18": [{"query": "the", "tags": ["term"], "count": 1, "duration": [1517, 1530, 2781]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [113, 115, 130]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [126, 127, 135]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [210, 225, 287]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [64, 65, 65]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [81, 82, 112]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [89, 100, 119]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [145, 158, 185]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [180, 187, 211]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [176, 187, 240]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [143, 157, 160]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [189, 201, 209]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [203, 211, 320]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [481, 482, 493]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [517, 524, 545]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1184, 1233, 1298]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [802, 858, 876]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [859, 864, 892]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [992, 1044, 1204]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1611, 1661, 1939]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2335, 2357, 2372]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1927, 1942, 2004]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [57, 57, 58]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [63, 63, 64]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [101, 106, 116]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [577, 585, 601]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [624, 631, 649]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [897, 1056, 1416]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1911, 2062, 2472]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2371, 2378, 2513]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2488, 2523, 2875]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [590, 622, 760]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [756, 768, 888]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [719, 727, 792]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [252, 257, 291]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [267, 274, 282]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [491, 510, 522]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [265, 268, 275]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [333, 335, 407]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [354, 370, 447]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [899, 957, 1004]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1028, 1028, 1034]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1089, 1094, 1129]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [308, 349, 406]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [362, 368, 369]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [444, 445, 520]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [100, 108, 111]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [86, 86, 91]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [410, 439, 467]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [133, 134, 137]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [143, 143, 151]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [222, 232, 250]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1022, 1031, 1131]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1241, 1242, 1276]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1310, 1316, 1401]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [119, 120, 122]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [146, 153, 157]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [369, 375, 490]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [669, 699, 725]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [935, 941, 995]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1045, 1068, 1102]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1490, 1573, 1577]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1738, 1805, 1864]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1652, 1748, 1791]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1138, 1160, 1697]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [4061, 4405, 4528]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [354, 354, 392]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [242, 244, 273]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [260, 270, 271]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [635, 662, 688]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1213, 1235, 1284]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1482, 1491, 1527]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1447, 1814, 2039]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [955, 1023, 1243]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1096, 1137, 1244]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1246, 1264, 1540]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [772, 781, 933]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [920, 920, 921]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1100, 1133, 1378]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [335, 356, 452]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [371, 374, 379]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [433, 439, 477]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [646, 660, 691]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [696, 809, 946]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1083, 1100, 1136]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [212, 214, 235]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [330, 339, 351]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [285, 293, 300]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [709, 722, 841]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [765, 776, 900]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1305, 1343, 1428]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [297, 298, 307]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [340, 344, 359]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [447, 452, 519]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3134, 3160, 3269]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [7342, 7363, 7809]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2914, 2983, 3113]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1100, 1109, 1273]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1470, 1471, 1489]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1474, 1504, 1679]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1693, 1734, 1757]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2403, 2415, 2568]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1933, 2047, 2099]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [75, 80, 85]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [98, 102, 128]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [109, 118, 164]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1624, 1683, 1894]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2102, 2175, 2196]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2551, 2564, 3186]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3716, 3862, 3869]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4528, 4542, 4685]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4953, 4993, 5206]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1460, 1537, 1849]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1810, 1886, 1908]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1218, 1222, 1613]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [50, 51, 59]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [46, 50, 52]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [126, 134, 145]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [235, 254, 261]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [240, 240, 254]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [395, 416, 573]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [806, 807, 1274]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1935, 1963, 2010]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [904, 912, 1251]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4022, 4763, 5878]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [11292, 11418, 15155]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1579, 1608, 1715]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [116, 117, 121]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [163, 175, 196]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [171, 184, 256]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [250, 265, 296]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [380, 392, 393]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [337, 343, 360]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4385, 4530, 4856]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [8802, 8977, 9366]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5522, 5606, 5655]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [366, 379, 435]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [456, 458, 488]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [459, 462, 580]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [734, 765, 768]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [816, 824, 841]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [980, 1042, 1046]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1127, 1133, 1258]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1220, 1266, 1272]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1217, 1249, 1304]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [38, 38, 43]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [47, 69, 84]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [92, 93, 97]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [41, 42, 43]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [44, 45, 46]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [62, 63, 69]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1755, 1806, 2053]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1878, 1926, 2037]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2617, 2639, 2642]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [111, 119, 124]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [159, 161, 166]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [127, 137, 140]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [469, 471, 627]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [523, 536, 552]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [537, 557, 1026]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2149, 2175, 2839]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3170, 3355, 3641]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2285, 2367, 2449]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [105, 107, 110]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [120, 129, 150]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [179, 194, 212]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [321, 324, 406]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [427, 432, 443]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [517, 578, 717]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1131, 1143, 1410]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [2427, 2441, 2442]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1738, 1814, 2098]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [339, 369, 419]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [540, 546, 550]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [578, 627, 666]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1047, 1050, 1073]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1592, 1596, 1612]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1299, 1317, 1349]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [68, 70, 80]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [69, 69, 73]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [172, 192, 192]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [686, 870, 881]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [892, 893, 932]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [931, 987, 1117]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [47, 47, 50]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [54, 62, 110]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [104, 108, 108]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [277, 292, 492]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [432, 469, 480]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [355, 362, 511]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2587, 2658, 3010]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3262, 3285, 3387]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1209, 1449, 1510]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [77, 78, 81]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [101, 105, 148]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [104, 113, 133]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [288, 415, 439]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [596, 614, 774]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [321, 397, 500]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [140, 142, 143]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [164, 169, 170]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [293, 304, 349]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [86, 87, 87]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [94, 98, 113]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [161, 164, 183]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [554, 569, 573]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [669, 696, 699]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [668, 701, 761]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [45, 49, 72]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [49, 54, 75]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [74, 77, 84]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [347, 350, 601]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [558, 562, 570]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [403, 470, 745]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [694, 969, 974]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1010, 1064, 1076]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1727, 1736, 1875]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1084, 1133, 1351]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1213, 1229, 1253]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1281, 1327, 1455]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [167, 169, 206]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [248, 266, 313]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [212, 241, 250]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [349, 358, 378]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [417, 419, 513]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [409, 464, 465]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [337, 362, 388]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [398, 402, 418]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [464, 465, 489]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [363, 363, 371]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [406, 425, 537]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [436, 436, 440]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [778, 796, 811]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [934, 950, 978]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [950, 951, 1051]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1889, 1907, 2251]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3970, 3990, 4317]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1909, 1922, 2175]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [494, 518, 531]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [636, 644, 646]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [649, 706, 771]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [7509, 7574, 7597]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [14055, 14288, 14546]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2330, 2380, 2507]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1368, 1495, 1619]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1754, 1756, 1782]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1733, 1816, 2121]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [42, 45, 47]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [52, 52, 55]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [71, 103, 130]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [972, 997, 1228]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1181, 1207, 1240]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1264, 1266, 1269]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [398, 404, 428]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [466, 504, 568]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [516, 549, 557]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [955, 960, 991]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1285, 1326, 1355]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [956, 957, 1231]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [375, 376, 401]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [596, 657, 862]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1621, 1674, 1695]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [773, 781, 786]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [896, 938, 1202]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [881, 932, 955]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [554, 578, 727]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [767, 789, 905]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [594, 596, 615]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2777, 2881, 2905]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3141, 3181, 3328]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3991, 4058, 4212]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [493, 502, 517]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [526, 533, 556]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [608, 647, 668]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [210, 220, 229]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [234, 246, 246]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [287, 322, 342]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [52, 58, 59]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [49, 52, 53]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [392, 398, 459]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1899, 1905, 2034]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2359, 2362, 2675]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2171, 2348, 2838]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [52, 54, 56]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [62, 69, 75]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [92, 100, 105]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [258, 279, 329]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [318, 325, 330]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [316, 319, 372]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1120, 1140, 1174]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1574, 1617, 1675]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1460, 1492, 1564]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1161, 1184, 1247]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1483, 1528, 1615]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2061, 2151, 2184]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [85, 90, 96]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [112, 119, 121]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [142, 150, 207]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [88, 103, 136]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [108, 109, 148]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [861, 876, 949]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [467, 473, 502]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [612, 622, 633]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [711, 768, 795]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [565, 665, 761]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [644, 646, 659]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [688, 735, 786]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [80, 85, 86]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [137, 141, 150]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [93, 119, 132]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [107, 124, 130]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [137, 138, 155]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [184, 195, 212]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [187, 193, 198]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [195, 201, 204]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [284, 302, 307]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1957, 2121, 2378]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2555, 2561, 2821]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2663, 2904, 3200]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [56, 60, 70]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [80, 82, 108]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [81, 83, 106]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [638, 670, 767]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [746, 772, 774]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [838, 860, 914]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [123, 126, 131]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [143, 151, 156]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [174, 179, 185]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [177, 191, 210]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [154, 163, 165]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [243, 247, 252]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [520, 528, 549]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [610, 615, 616]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [520, 561, 605]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [187, 188, 229]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [238, 241, 242]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [327, 346, 375]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4326, 4386, 4720]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5178, 5182, 5454]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5858, 5862, 6194]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1029, 1063, 1111]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1360, 1364, 1430]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1343, 1422, 2216]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [378, 411, 411]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [419, 424, 478]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1403, 1460, 1537]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [153, 165, 170]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [160, 165, 167]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [238, 241, 242]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [53, 54, 54]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [55, 55, 59]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [154, 163, 178]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1144, 1144, 1159]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1237, 1271, 1290]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1690, 1759, 1815]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [148, 153, 179]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [159, 161, 167]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [259, 279, 295]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [141, 145, 204]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [209, 216, 253]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [198, 199, 227]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [141, 145, 149]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [187, 218, 219]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [156, 174, 192]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [558, 613, 639]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [604, 627, 632]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [720, 724, 1031]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [46, 47, 49]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [50, 51, 52]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [101, 103, 114]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [438, 443, 445]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [480, 488, 490]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [716, 769, 806]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [724, 737, 782]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1125, 1258, 1536]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1024, 1030, 1088]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1679, 1680, 1760]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2348, 2356, 2416]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2093, 2202, 2452]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [338, 339, 344]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [339, 340, 341]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [483, 491, 506]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [994, 1029, 1088]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1073, 1089, 1104]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1511, 1514, 1629]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [61, 61, 64]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [78, 78, 82]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [84, 91, 119]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [157, 174, 194]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [228, 243, 254]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [318, 326, 387]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [168, 173, 280]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [297, 304, 317]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [249, 264, 274]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [147, 154, 301]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [249, 251, 262]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [196, 225, 242]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [166, 171, 173]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [198, 206, 304]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [477, 478, 707]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3002, 3147, 4644]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [33013, 33142, 36866]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [920, 1090, 1113]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [230, 236, 247]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [253, 279, 295]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [338, 365, 382]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [133, 135, 149]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [161, 162, 168]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [189, 215, 226]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [138, 144, 147]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [191, 192, 247]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [422, 427, 441]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1343, 1345, 1562]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1456, 1488, 1521]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1922, 2028, 2086]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [127, 134, 142]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [144, 148, 151]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [210, 211, 239]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [58, 76, 85]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [67, 72, 84]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [78, 81, 82]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [59, 74, 85]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [61, 63, 66]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [160, 194, 298]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [569, 634, 764]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [634, 656, 692]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [717, 721, 833]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [178, 227, 254]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [332, 365, 397]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [222, 229, 379]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [297, 339, 345]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [390, 404, 449]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [408, 438, 475]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [945, 1105, 1125]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1394, 1429, 1491]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1195, 1223, 1341]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [147, 153, 157]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [234, 241, 243]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [198, 216, 227]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [426, 436, 477]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [452, 459, 460]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2185, 2187, 2374]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [619, 721, 777]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [756, 757, 766]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1362, 1583, 1825]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [493, 493, 540]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [560, 570, 691]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [588, 619, 1043]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [292, 298, 328]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [353, 369, 400]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [456, 504, 625]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [44, 50, 53]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [56, 61, 79]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [88, 92, 102]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [789, 828, 969]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [937, 968, 1003]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [640, 680, 776]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [590, 668, 745]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [712, 742, 781]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [835, 861, 1005]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [169, 174, 174]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [418, 421, 440]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [420, 425, 451]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [128, 144, 158]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [195, 208, 222]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [197, 207, 228]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [510, 522, 594]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [583, 586, 677]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [964, 977, 1336]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1085, 1126, 1162]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1282, 1294, 1323]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1290, 1339, 1402]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [506, 522, 571]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [590, 598, 831]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1540, 1562, 1595]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [212, 233, 246]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [293, 297, 325]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [290, 291, 319]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [69, 77, 108]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [84, 86, 121]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [140, 149, 164]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1422, 1442, 1626]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1617, 1621, 1711]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1838, 1854, 2092]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [42, 45, 90]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [44, 47, 50]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [123, 126, 190]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [81, 83, 83]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [103, 107, 111]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [157, 163, 183]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [544, 552, 559]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [643, 671, 715]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [652, 665, 693]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1263, 1301, 1354]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1636, 1658, 1689]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1623, 1653, 1960]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [112, 115, 123]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [150, 153, 161]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [176, 186, 194]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [176, 189, 192]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [276, 276, 285]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [266, 282, 286]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1737, 1748, 2207]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2158, 2646, 3607]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2010, 2021, 3918]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [357, 400, 473]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [421, 424, 436]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [524, 541, 609]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [321, 323, 361]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [345, 348, 364]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [398, 410, 449]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [525, 631, 656]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [633, 634, 647]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [700, 757, 774]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [121, 132, 155]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [139, 142, 162]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [172, 205, 214]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1497, 1509, 1630]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3166, 3252, 3293]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1690, 1700, 1739]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [285, 288, 293]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [366, 370, 389]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [512, 513, 550]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [310, 310, 361]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [442, 456, 459]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [471, 506, 676]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [79, 80, 83]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [100, 131, 132]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [143, 150, 156]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3425, 3559, 3871]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [5077, 5082, 5104]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4026, 4115, 4712]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [316, 330, 357]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [328, 334, 354]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [541, 545, 549]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [509, 536, 598]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [591, 601, 613]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [635, 722, 747]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1674, 1886, 2297]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1857, 1924, 1987]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2383, 2457, 2654]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [194, 198, 203]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [223, 223, 223]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [268, 287, 311]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1539, 1588, 2988]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2114, 2196, 2344]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2088, 2226, 2526]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [264, 265, 307]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [372, 374, 404]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [379, 455, 471]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [37, 37, 48]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [56, 56, 64]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [116, 133, 152]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [239, 247, 248]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [258, 266, 351]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [506, 525, 559]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [210, 212, 267]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [430, 433, 490]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [329, 341, 556]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [64, 79, 109]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [94, 114, 115]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [126, 146, 153]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [237, 246, 286]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [285, 287, 309]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [354, 357, 415]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [29, 31, 32]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [32, 33, 33]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [32, 33, 36]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [772, 773, 853]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [825, 825, 879]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1750, 1786, 1949]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [689, 693, 757]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [725, 727, 738]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1192, 1398, 1436]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [38, 40, 42]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [44, 53, 55]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [73, 110, 118]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [274, 278, 292]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [336, 341, 364]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [365, 369, 407]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [417, 438, 696]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [802, 819, 885]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [496, 507, 583]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [539, 568, 585]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [622, 632, 645]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [619, 642, 772]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [727, 734, 790]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [860, 867, 877]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [918, 926, 1027]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [536, 584, 667]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [613, 620, 645]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [699, 718, 847]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [145, 146, 155]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [187, 191, 202]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [201, 206, 231]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [169, 170, 172]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [183, 184, 188]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [270, 296, 300]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [747, 781, 962]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1601, 1627, 1938]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1027, 1030, 1067]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [770, 791, 944]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [894, 895, 1021]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1093, 1152, 1197]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [254, 284, 287]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [486, 518, 543]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [536, 559, 571]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [44, 45, 46]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [47, 60, 73]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [132, 150, 174]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [956, 971, 1033]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1109, 1148, 1150]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1430, 1437, 1659]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [138, 158, 168]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [149, 162, 168]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [183, 187, 216]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [103, 104, 116]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [150, 154, 172]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [167, 168, 172]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1428, 1430, 1459]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1648, 1690, 1702]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2003, 2038, 2169]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [184, 185, 192]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [251, 256, 334]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [284, 297, 317]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [75, 76, 97]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [94, 95, 119]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [213, 230, 262]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [622, 644, 721]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [811, 831, 961]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [633, 658, 678]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [402, 411, 415]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [446, 467, 483]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [390, 396, 405]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1440, 1675, 1971]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1637, 1670, 1948]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1774, 1790, 1792]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [316, 320, 337]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [458, 459, 464]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [417, 417, 433]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [294, 294, 302]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [328, 345, 413]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [403, 404, 465]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [201, 204, 237]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [255, 275, 279]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [266, 272, 393]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [484, 498, 501]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [546, 599, 603]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [791, 799, 842]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [935, 1009, 1058]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1938, 2027, 2303]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [769, 811, 1115]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [103, 108, 115]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [114, 127, 172]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [204, 248, 269]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [243, 246, 289]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [303, 308, 310]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [308, 336, 403]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1405, 1451, 1579]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1972, 2001, 2299]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1221, 1228, 1475]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1269, 1739, 1826]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1508, 1635, 1662]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1709, 1740, 2662]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1354, 1412, 1492]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1490, 1548, 1575]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [3309, 3315, 3321]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [88, 89, 93]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [108, 109, 118]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [279, 343, 353]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [483, 503, 507]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [573, 581, 617]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [992, 1070, 1078]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [88, 96, 106]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [144, 150, 152]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [112, 112, 128]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [138, 141, 159]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [164, 167, 176]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [170, 280, 362]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [185, 214, 216]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [214, 216, 258]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [256, 358, 375]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2061, 2177, 2649]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [10459, 11097, 11857]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [926, 944, 983]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [105, 105, 106]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [141, 149, 150]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [147, 165, 176]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [372, 405, 518]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [539, 581, 757]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [487, 531, 554]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [322, 322, 432]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [546, 555, 580]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [769, 835, 1103]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [49, 51, 55]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [53, 59, 64]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [78, 155, 174]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [339, 344, 365]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [378, 397, 402]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [400, 423, 496]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2378, 2392, 2561]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2830, 2856, 2866]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2994, 3082, 3887]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1303, 1305, 1334]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1382, 1411, 1423]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1662, 1837, 1871]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [566, 566, 873]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [915, 921, 940]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [719, 814, 885]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2145, 2271, 2458]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2899, 2899, 3504]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3020, 3072, 3311]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [474, 514, 539]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [651, 662, 777]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [325, 332, 358]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [441, 481, 484]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [515, 519, 548]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [540, 560, 579]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [101, 106, 125]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [136, 140, 152]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [173, 176, 183]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1771, 1814, 1982]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2030, 2037, 2595]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1380, 1592, 1615]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [100, 123, 131]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [147, 153, 257]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [147, 148, 167]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [71, 73, 74]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [88, 95, 99]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [145, 150, 161]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [664, 686, 754]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [786, 790, 817]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [763, 838, 853]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2079, 2145, 2303]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2639, 2675, 2892]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3013, 3072, 3650]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [80, 81, 82]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [86, 95, 119]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [305, 316, 331]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1116, 1335, 1434]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1238, 1256, 1592]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1743, 1758, 1797]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [51, 56, 78]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [62, 67, 86]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [104, 107, 109]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [179, 184, 184]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [205, 216, 227]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [290, 302, 633]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [49, 50, 54]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [49, 50, 56]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [144, 159, 248]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [927, 1101, 1213]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2192, 2302, 2315]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [905, 959, 1040]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [79, 79, 120]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [84, 84, 89]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [172, 201, 210]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [190, 194, 201]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [240, 247, 260]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [413, 428, 494]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [209, 212, 220]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [236, 243, 266]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [554, 586, 640]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [165, 167, 342]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [182, 182, 191]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [390, 402, 497]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [518, 525, 1208]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [620, 624, 639]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1451, 1479, 1514]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [95, 98, 106]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [104, 115, 132]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [127, 128, 142]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [51, 56, 57]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [73, 74, 80]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [151, 155, 161]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1889, 1922, 1931]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2041, 2044, 2142]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2346, 2428, 2556]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2426, 2711, 2951]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4234, 4273, 4676]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1351, 1439, 1699]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [309, 310, 354]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [341, 343, 346]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1051, 1195, 1400]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3715, 3796, 4068]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [6146, 6173, 6338]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4391, 4569, 4602]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [72, 76, 96]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [77, 78, 81]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [107, 119, 188]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [622, 647, 704]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [766, 766, 769]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [889, 891, 894]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [276, 279, 304]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [357, 358, 362]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [431, 433, 469]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [307, 316, 358]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [584, 613, 614]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [408, 436, 478]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [84, 84, 101]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [89, 103, 107]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [135, 162, 169]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1177, 1265, 1304]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2094, 2494, 2537]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1461, 1545, 1929]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [344, 348, 361]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [584, 588, 662]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [327, 365, 368]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [257, 259, 260]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [292, 307, 360]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [687, 693, 897]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [8982, 9080, 9926]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [15176, 15225, 15412]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [8711, 8819, 9161]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [49, 52, 59]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [55, 69, 74]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [66, 70, 77]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [243, 259, 293]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [347, 351, 356]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [285, 302, 321]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [574, 635, 694]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1017, 1041, 1116]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [632, 711, 793]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [301, 317, 340]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [796, 813, 819]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [487, 547, 729]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [206, 220, 235]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [274, 281, 441]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [443, 452, 502]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [118, 120, 144]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [122, 122, 145]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [282, 286, 291]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [35, 35, 40]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [46, 47, 60]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [71, 82, 135]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [102, 121, 130]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [124, 131, 133]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [150, 156, 162]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [220, 245, 263]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [245, 252, 271]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [275, 279, 314]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1456, 1533, 1617]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1767, 1770, 1827]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2131, 2172, 2453]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [944, 1111, 1251]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [986, 991, 993]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [11201, 11380, 11895]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [820, 872, 875]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1148, 1177, 1247]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [869, 922, 1031]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1067, 1099, 1134]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1199, 1216, 1327]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [939, 979, 1008]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [180, 183, 186]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [230, 234, 235]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [526, 526, 549]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4428, 4577, 4821]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5033, 5054, 5131]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5637, 5718, 6530]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [115, 119, 142]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [125, 128, 130]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [766, 779, 834]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [341, 362, 386]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [452, 456, 457]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [418, 495, 500]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [161, 167, 211]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [180, 183, 188]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [192, 217, 220]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [374, 391, 408]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [480, 491, 522]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [499, 550, 643]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [199, 207, 218]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [258, 271, 277]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [292, 319, 334]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [208, 209, 226]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [227, 228, 231]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [257, 268, 273]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [199, 217, 241]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [225, 237, 248]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [511, 512, 529]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2003, 2032, 2054]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3477, 3639, 4024]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2432, 2741, 2875]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [76, 77, 81]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [94, 104, 108]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [277, 292, 297]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [515, 526, 571]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [666, 674, 682]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [717, 721, 739]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [987, 1090, 1121]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1268, 1290, 1360]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1363, 1368, 1386]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [228, 241, 245]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [245, 245, 252]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [298, 301, 302]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [548, 580, 626]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [718, 726, 974]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [8614, 8771, 10450]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 1, "duration": [168590, 169362, 170183]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 1, "duration": [181, 187, 187]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 1, "duration": [33240, 33432, 46547]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 1, "duration": [9168, 9295, 9824]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 1, "duration": [224716, 230938, 234323]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 1, "duration": [267597, 273657, 282686]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1, "duration": [251001, 255844, 257191]}], "tantivy-0.19": [{"query": "the", "tags": ["term"], "count": 1, "duration": [1514, 1548, 1744]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [113, 120, 129]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [129, 132, 132]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [181, 185, 202]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [62, 63, 70]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [81, 85, 104]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [90, 92, 105]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [141, 142, 157]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [182, 191, 202]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [163, 167, 176]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [141, 146, 165]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [195, 198, 199]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [216, 225, 230]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [515, 530, 547]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [510, 516, 527]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1216, 1224, 1227]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [817, 820, 992]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [873, 878, 885]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1099, 1138, 1140]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1403, 1509, 1842]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2317, 2332, 2384]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1915, 2106, 2291]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [57, 62, 63]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [62, 65, 77]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [97, 99, 107]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [565, 570, 579]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [624, 626, 627]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [843, 862, 931]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1951, 1985, 2178]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2374, 2394, 2402]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2478, 2503, 2888]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [527, 564, 583]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [768, 773, 774]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [643, 646, 754]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [246, 247, 279]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [268, 270, 374]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [450, 451, 464]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [258, 258, 316]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [330, 331, 334]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [371, 379, 382]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [889, 893, 1075]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1023, 1077, 1086]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1171, 1174, 1234]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [322, 328, 398]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [361, 362, 371]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [457, 458, 516]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [87, 89, 101]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [83, 88, 95]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [346, 353, 358]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [128, 136, 139]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [143, 147, 159]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [212, 213, 218]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [932, 964, 1220]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1285, 1287, 1290]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1409, 1437, 1591]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [122, 122, 126]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [154, 155, 157]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [385, 390, 412]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [661, 668, 683]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [954, 956, 999]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1012, 1034, 1152]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1568, 1578, 1946]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1731, 1734, 1795]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1782, 1852, 1968]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1161, 1349, 2081]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [4173, 4176, 4212]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [321, 325, 331]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [236, 246, 249]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [265, 267, 271]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [656, 658, 742]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1158, 1227, 1435]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1500, 1522, 1528]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1552, 1557, 1660]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [932, 986, 1009]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1105, 1107, 1116]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1239, 1271, 1306]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [866, 895, 951]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [927, 927, 937]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1096, 1099, 1263]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [339, 350, 421]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [371, 379, 387]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [473, 488, 512]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [651, 661, 666]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [706, 725, 759]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [986, 1015, 1104]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [223, 250, 275]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [341, 342, 356]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [273, 291, 299]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [714, 716, 745]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [765, 776, 779]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1338, 1410, 1561]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [293, 302, 311]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [348, 354, 357]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [440, 445, 448]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3207, 3314, 4289]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [7424, 7448, 7822]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3075, 3081, 3087]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1191, 1359, 1420]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1458, 1470, 1512]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1572, 1573, 1584]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1733, 1798, 2120]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2463, 2493, 2632]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1974, 2100, 2182]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [73, 74, 84]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [104, 112, 117]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [98, 99, 116]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1619, 1621, 1696]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2102, 2104, 2170]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2576, 2662, 2819]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3862, 3932, 4286]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4522, 4559, 4599]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4914, 4959, 4985]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1448, 1526, 1574]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1807, 1846, 1853]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1344, 1384, 1502]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [49, 52, 81]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [48, 49, 49]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [93, 100, 202]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [244, 249, 265]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [236, 237, 243]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [373, 380, 397]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [742, 746, 753]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1952, 2043, 2071]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [934, 951, 1255]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4054, 4069, 4079]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [11409, 11663, 11674]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1486, 1502, 1538]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [108, 117, 117]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [156, 157, 157]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [148, 153, 154]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [234, 241, 419]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [376, 376, 382]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [312, 322, 324]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4458, 4469, 5111]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [8863, 8975, 9593]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5134, 5151, 5307]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [363, 364, 448]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [461, 489, 499]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [480, 483, 489]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [751, 763, 766]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [818, 833, 843]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1051, 1066, 1104]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1111, 1139, 1409]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1229, 1231, 1257]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1320, 1338, 1414]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [42, 44, 91]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [42, 43, 46]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [70, 71, 77]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [43, 43, 55]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [45, 46, 67]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [63, 66, 81]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1726, 1761, 1769]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1858, 1914, 2063]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2491, 2492, 2672]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [107, 109, 113]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [155, 159, 179]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [120, 131, 155]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [485, 503, 616]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [515, 545, 690]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [528, 532, 602]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1917, 1994, 2497]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3224, 3246, 3579]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2262, 2309, 2362]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [109, 124, 128]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [120, 122, 124]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [224, 233, 242]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [319, 324, 425]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [436, 438, 478]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [551, 551, 556]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1126, 1150, 1193]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [2443, 2491, 2567]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1469, 1532, 1628]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [339, 341, 369]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [538, 551, 563]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [606, 617, 641]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [929, 988, 1217]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1603, 1603, 1637]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1262, 1308, 1419]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [68, 69, 70]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [71, 78, 81]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [158, 158, 180]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [711, 736, 738]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [900, 912, 941]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [995, 1029, 1090]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [53, 53, 57]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [52, 53, 54]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [84, 91, 93]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [268, 282, 340]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [405, 407, 476]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [336, 342, 346]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2598, 2626, 2711]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3284, 3348, 3358]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1371, 1377, 1469]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [75, 77, 99]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [103, 105, 108]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [103, 108, 109]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [299, 307, 316]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [552, 572, 626]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [326, 348, 357]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [145, 147, 202]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [161, 163, 185]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [304, 307, 315]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [88, 88, 99]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [94, 97, 101]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [167, 173, 194]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [548, 555, 579]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [683, 692, 701]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [689, 699, 770]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [46, 50, 50]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [47, 50, 63]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [70, 71, 77]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [346, 347, 347]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [569, 580, 590]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [380, 388, 393]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [681, 683, 764]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [928, 937, 986]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1789, 1805, 1838]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1103, 1124, 1165]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1224, 1232, 1248]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1447, 1459, 1537]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [163, 167, 193]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [244, 244, 248]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [223, 257, 260]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [369, 382, 443]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [411, 418, 436]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [457, 470, 471]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [320, 327, 415]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [403, 406, 407]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [449, 471, 492]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [359, 368, 371]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [401, 407, 423]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [452, 474, 476]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [772, 953, 953]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [937, 944, 1005]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [942, 1000, 1021]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1822, 1860, 2297]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3952, 4013, 4376]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1862, 1882, 1959]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [476, 483, 583]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [640, 645, 650]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [657, 728, 752]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [7648, 7658, 7716]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [14355, 14405, 14474]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2468, 2477, 2534]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1362, 1381, 1752]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1753, 1779, 1806]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1819, 1868, 1933]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [44, 44, 47]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [51, 60, 62]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [76, 80, 117]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [925, 939, 1071]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1181, 1181, 1308]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1239, 1259, 1269]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [347, 357, 465]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [452, 465, 468]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [557, 579, 609]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [941, 970, 1187]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1320, 1330, 1337]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [973, 1052, 1160]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [372, 389, 396]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [577, 587, 592]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1431, 1438, 1521]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [783, 793, 985]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [899, 902, 920]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [942, 942, 955]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [507, 558, 611]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [777, 810, 943]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [538, 549, 553]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2720, 2758, 2792]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3124, 3133, 3176]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3820, 3917, 4303]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [490, 523, 604]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [529, 539, 546]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [642, 687, 692]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [210, 217, 266]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [230, 244, 267]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [316, 319, 323]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [47, 47, 49]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [50, 55, 66]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [399, 408, 545]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1884, 1902, 1962]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2373, 2434, 2585]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2087, 2213, 2243]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [53, 57, 79]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [63, 64, 79]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [122, 135, 139]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [246, 250, 257]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [322, 342, 398]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [322, 332, 403]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1074, 1405, 1478]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1583, 1587, 1700]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1513, 1523, 1774]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1137, 1138, 1149]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1479, 1499, 1506]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2102, 2143, 2218]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [86, 92, 117]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [107, 110, 122]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [145, 147, 173]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [92, 92, 95]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [108, 108, 119]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [863, 880, 933]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [486, 500, 565]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [606, 610, 616]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [707, 720, 805]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [553, 558, 600]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [644, 649, 650]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [744, 809, 827]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [78, 84, 104]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [135, 136, 136]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [90, 125, 170]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [121, 125, 138]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [140, 143, 149]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [180, 191, 221]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [187, 202, 202]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [200, 200, 206]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [297, 306, 352]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1961, 1975, 2053]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2553, 2569, 2660]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2670, 2685, 3113]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [62, 64, 74]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [82, 82, 83]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [93, 93, 127]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [679, 689, 804]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [769, 772, 776]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [915, 923, 926]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [129, 144, 158]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [144, 144, 157]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [160, 176, 213]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [153, 161, 186]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [151, 154, 154]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [234, 240, 242]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [517, 525, 658]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [602, 605, 635]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [558, 587, 587]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [189, 196, 219]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [236, 236, 252]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [315, 320, 393]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4369, 4392, 4398]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5140, 5146, 5205]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5885, 6249, 6760]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [955, 1184, 1819]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1365, 1383, 1408]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1135, 1161, 1218]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [397, 408, 421]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [429, 438, 455]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1207, 1248, 1273]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [153, 166, 195]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [166, 169, 169]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [232, 248, 281]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [55, 56, 65]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [55, 58, 61]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [154, 155, 163]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1128, 1139, 1146]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1233, 1243, 1247]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1699, 1701, 1716]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [153, 157, 166]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [164, 166, 175]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [259, 280, 348]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [151, 158, 170]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [215, 216, 298]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [197, 201, 220]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [136, 143, 167]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [184, 194, 201]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [132, 140, 178]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [554, 565, 761]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [609, 614, 631]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [740, 748, 871]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [46, 47, 57]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [52, 53, 62]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [99, 100, 112]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [435, 439, 441]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [475, 475, 480]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [754, 777, 782]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [725, 731, 748]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1139, 1140, 1171]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [992, 1006, 1020]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1792, 2111, 2694]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2318, 2325, 2382]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2285, 2333, 2390]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [333, 342, 398]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [343, 344, 361]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [507, 510, 579]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [986, 993, 1029]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1073, 1086, 1108]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1522, 1532, 1560]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [57, 60, 60]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [80, 83, 85]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [91, 110, 130]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [158, 160, 173]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [230, 236, 241]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [276, 279, 285]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [160, 166, 293]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [293, 308, 335]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [226, 248, 253]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [130, 134, 171]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [252, 266, 268]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [209, 226, 287]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [169, 183, 275]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [194, 196, 199]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [423, 459, 473]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3030, 3348, 3931]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [35195, 35810, 36018]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [900, 904, 904]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [230, 232, 234]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [258, 259, 260]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [307, 308, 310]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [142, 153, 160]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [154, 161, 194]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [214, 251, 261]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [139, 142, 145]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [189, 195, 196]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [393, 411, 500]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1313, 1323, 1341]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1470, 1478, 1672]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1906, 1924, 1937]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [124, 125, 127]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [155, 155, 158]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [199, 208, 211]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [57, 59, 65]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [69, 69, 79]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [73, 76, 77]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [61, 62, 67]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [63, 64, 65]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [119, 122, 134]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [591, 597, 610]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [646, 649, 650]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [787, 801, 824]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [150, 166, 242]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [282, 286, 307]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [245, 246, 248]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [290, 297, 351]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [383, 386, 390]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [380, 387, 396]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [967, 971, 1046]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1332, 1352, 1408]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1116, 1140, 1392]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [141, 148, 198]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [224, 232, 239]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [191, 198, 213]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [433, 438, 444]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [458, 459, 464]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2148, 2156, 2180]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [605, 644, 788]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [757, 761, 805]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1304, 1305, 1544]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [493, 509, 769]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [567, 572, 596]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [651, 652, 660]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [298, 308, 363]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [352, 353, 360]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [447, 473, 503]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [44, 47, 75]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [56, 56, 57]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [78, 100, 110]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [765, 774, 860]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [950, 957, 964]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [635, 665, 665]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [567, 627, 724]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [741, 748, 752]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [815, 832, 852]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [167, 172, 531]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [417, 423, 430]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [415, 433, 460]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [127, 129, 136]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [192, 195, 203]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [190, 193, 231]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [517, 536, 640]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [567, 605, 693]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [901, 943, 1036]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1061, 1180, 1325]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1293, 1318, 1357]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1365, 1483, 1525]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [513, 531, 537]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [593, 593, 617]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1471, 1483, 1496]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [212, 233, 258]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [303, 305, 306]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [278, 290, 360]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [70, 75, 75]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [84, 86, 86]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [141, 144, 144]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1426, 1464, 1837]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1615, 1628, 1632]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1916, 1952, 2029]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [43, 44, 50]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [45, 45, 49]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [85, 87, 89]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [79, 82, 108]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [102, 104, 104]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [163, 163, 221]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [465, 490, 807]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [656, 659, 678]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [675, 689, 708]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1193, 1231, 1392]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1646, 1647, 1681]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1636, 1671, 1806]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [105, 107, 131]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [148, 152, 155]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [177, 184, 192]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [173, 178, 200]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [279, 280, 290]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [278, 299, 319]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1723, 1742, 1780]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2148, 2167, 2335]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1992, 2015, 2636]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [338, 362, 387]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [426, 427, 430]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [514, 557, 562]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [334, 337, 395]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [338, 340, 343]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [471, 497, 568]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [524, 532, 536]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [635, 675, 704]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [738, 743, 744]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [121, 131, 161]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [141, 142, 143]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [170, 176, 193]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1485, 1762, 2042]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3220, 3263, 3270]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1778, 1794, 1865]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [277, 279, 288]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [374, 377, 448]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [471, 491, 502]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [285, 297, 327]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [444, 450, 451]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [455, 459, 467]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [80, 84, 89]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [109, 137, 195]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [135, 135, 205]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3412, 3641, 3684]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [5157, 5163, 5199]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4122, 4145, 4756]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [318, 320, 333]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [344, 347, 361]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [595, 625, 639]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [483, 503, 649]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [591, 597, 599]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [679, 690, 693]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1715, 1723, 2221]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1885, 1888, 1917]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2283, 2291, 2317]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [201, 208, 264]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [226, 232, 237]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [280, 285, 299]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1518, 1723, 1766]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2087, 2111, 2259]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2123, 2214, 2235]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [268, 296, 326]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [395, 413, 441]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [395, 409, 412]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [36, 38, 39]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [57, 58, 59]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [113, 115, 121]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [232, 234, 293]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [272, 280, 281]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [513, 535, 545]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [210, 220, 228]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [408, 419, 468]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [290, 307, 317]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [62, 96, 114]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [91, 95, 96]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [101, 105, 107]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [234, 252, 318]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [290, 291, 297]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [325, 337, 373]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [31, 40, 40]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [34, 35, 43]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [30, 31, 42]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [786, 796, 802]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [824, 828, 830]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1884, 1890, 1980]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [679, 703, 705]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [723, 733, 736]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1262, 1275, 1494]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [40, 44, 46]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [48, 49, 54]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [75, 75, 75]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [295, 330, 341]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [346, 349, 359]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [371, 376, 386]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [417, 451, 519]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [814, 815, 960]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [470, 474, 493]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [528, 533, 660]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [633, 647, 653]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [703, 712, 731]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [763, 773, 837]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [859, 873, 905]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1014, 1027, 1077]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [530, 540, 667]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [605, 610, 664]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [756, 773, 781]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [140, 148, 175]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [182, 182, 185]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [218, 239, 254]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [161, 166, 172]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [188, 189, 192]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [281, 295, 368]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [749, 753, 782]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1662, 1672, 1704]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [937, 966, 1015]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [763, 766, 867]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [896, 902, 920]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1034, 1065, 1105]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [263, 265, 304]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [491, 505, 678]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [517, 522, 574]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [43, 43, 46]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [47, 47, 72]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [131, 147, 180]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [916, 921, 1113]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1130, 1136, 1143]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1340, 1348, 1367]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [138, 160, 218]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [155, 160, 174]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [191, 200, 252]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [112, 124, 167]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [153, 160, 163]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [147, 149, 158]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1359, 1373, 1417]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1659, 1660, 1661]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1926, 1927, 1954]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [192, 220, 227]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [249, 252, 253]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [287, 288, 319]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [82, 86, 88]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [89, 91, 100]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [212, 214, 218]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [581, 589, 714]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [838, 839, 851]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [681, 689, 691]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [413, 414, 451]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [454, 465, 472]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [422, 426, 434]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1441, 1557, 1834]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1645, 1674, 1682]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1817, 1861, 2166]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [304, 348, 464]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [460, 470, 492]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [387, 405, 518]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [280, 286, 342]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [319, 324, 353]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [351, 366, 369]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [192, 198, 204]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [251, 256, 257]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [273, 284, 293]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [498, 503, 524]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [551, 568, 577]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [727, 767, 769]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [906, 1010, 1254]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1868, 1899, 1909]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [739, 757, 769]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [106, 108, 122]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [115, 115, 120]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [196, 200, 200]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [224, 232, 248]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [307, 311, 312]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [312, 319, 320]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1345, 1399, 1467]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1945, 1982, 2757]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1178, 1182, 1323]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1211, 1261, 1601]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1524, 1524, 1564]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1675, 1733, 1844]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1385, 1417, 1536]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1483, 1486, 1488]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [3322, 3430, 3512]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [88, 91, 93]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [107, 114, 122]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [289, 340, 352]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [489, 493, 503]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [562, 564, 584]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1078, 1098, 1117]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [86, 88, 99]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [153, 154, 173]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [128, 132, 159]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [141, 142, 169]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [167, 171, 186]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [172, 188, 209]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [164, 175, 204]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [204, 211, 223]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [236, 247, 251]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2057, 2199, 2865]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [11241, 11689, 11815]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [823, 866, 873]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [101, 106, 112]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [129, 131, 132]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [155, 161, 164]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [345, 374, 401]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [537, 545, 546]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [479, 485, 500]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [312, 329, 338]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [541, 545, 553]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [882, 936, 999]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [47, 49, 67]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [52, 53, 54]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [72, 75, 111]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [333, 339, 348]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [378, 381, 434]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [438, 440, 490]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2448, 2494, 3018]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2839, 2840, 2894]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3226, 3298, 3417]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1306, 1318, 1321]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1388, 1411, 1516]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1629, 1636, 1669]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [539, 546, 570]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [909, 962, 996]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [637, 656, 662]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2190, 2241, 2568]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2887, 3010, 3125]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3024, 3060, 3310]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [407, 416, 600]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [627, 637, 665]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [310, 322, 329]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [446, 451, 577]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [517, 518, 534]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [595, 606, 608]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [104, 112, 118]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [134, 137, 141]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [163, 171, 182]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1843, 1923, 2319]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2017, 2041, 2045]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1410, 1501, 1566]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [96, 96, 111]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [151, 157, 180]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [126, 132, 137]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [72, 74, 89]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [86, 89, 98]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [133, 140, 147]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [575, 661, 942]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [796, 797, 803]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [837, 863, 877]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2075, 2089, 2151]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2629, 2656, 2830]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2704, 2766, 2781]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [81, 87, 94]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [84, 86, 93]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [285, 287, 338]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1148, 1152, 1290]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1245, 1272, 1446]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1737, 1847, 1990]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [52, 52, 52]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [65, 67, 82]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [109, 110, 127]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [176, 182, 216]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [209, 211, 318]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [312, 313, 415]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [52, 52, 55]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [53, 66, 74]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [146, 146, 147]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [983, 1027, 1145]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2207, 2208, 2213]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [847, 896, 915]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [81, 81, 91]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [84, 85, 115]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [167, 173, 188]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [163, 178, 184]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [248, 251, 301]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [386, 397, 404]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [209, 215, 217]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [238, 244, 246]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [577, 595, 618]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [159, 166, 168]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [183, 186, 254]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [317, 329, 333]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [503, 512, 516]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [617, 617, 732]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1302, 1307, 1336]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [100, 101, 102]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [102, 104, 107]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [142, 150, 172]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [53, 53, 54]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [72, 72, 107]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [162, 162, 215]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1877, 1896, 1979]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2033, 2050, 2095]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2360, 2403, 2423]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2389, 2440, 2500]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4362, 4363, 4371]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1292, 1317, 1386]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [321, 326, 341]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [345, 348, 354]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1081, 1095, 1169]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3780, 3792, 5098]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [6176, 6263, 6291]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4565, 4673, 4678]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [73, 78, 80]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [78, 79, 80]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [106, 109, 117]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [630, 633, 660]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [770, 786, 788]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [738, 770, 774]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [267, 272, 322]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [365, 366, 420]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [391, 391, 429]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [251, 254, 443]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [605, 609, 618]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [362, 379, 433]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [83, 88, 101]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [93, 93, 94]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [108, 120, 131]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1183, 1211, 1332]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2097, 2124, 2133]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1471, 1473, 1482]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [330, 333, 394]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [571, 579, 579]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [341, 351, 404]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [255, 267, 268]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [289, 297, 301]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [608, 619, 768]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [8888, 9107, 9252]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [15280, 15296, 15416]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [8640, 9040, 10374]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [54, 55, 55]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [56, 56, 61]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [81, 82, 93]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [233, 243, 293]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [344, 356, 379]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [289, 304, 315]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [590, 615, 713]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1014, 1034, 1041]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [695, 727, 939]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [307, 553, 672]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [787, 822, 850]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [507, 516, 528]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [208, 213, 250]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [267, 269, 272]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [370, 385, 404]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [122, 132, 135]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [121, 126, 144]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [301, 309, 325]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [36, 37, 40]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [48, 49, 75]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [56, 62, 62]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [97, 104, 107]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [129, 130, 156]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [150, 152, 239]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [221, 224, 273]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [247, 266, 270]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [315, 320, 325]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1482, 1715, 1810]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1782, 1804, 1818]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2149, 2174, 2181]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [942, 960, 997]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [987, 992, 1006]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [11242, 11385, 11503]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [830, 833, 855]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1173, 1184, 1378]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [853, 864, 895]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1081, 1111, 1512]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1205, 1219, 1676]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [915, 945, 945]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [183, 185, 203]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [235, 247, 249]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [435, 439, 451]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4469, 4507, 5423]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5041, 5049, 5049]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5646, 5659, 5664]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [117, 119, 123]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [128, 133, 177]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [753, 758, 902]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [338, 340, 431]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [450, 452, 452]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [440, 505, 533]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [161, 165, 188]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [184, 188, 209]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [210, 212, 254]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [397, 417, 473]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [491, 493, 524]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [537, 543, 543]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [192, 206, 207]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [259, 261, 263]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [291, 292, 305]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [210, 211, 226]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [223, 228, 229]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [276, 277, 286]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [202, 204, 210]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [230, 231, 278]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [404, 423, 430]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1874, 1972, 2208]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3400, 3427, 3622]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2381, 2405, 2437]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [79, 79, 83]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [88, 90, 91]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [248, 250, 259]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [475, 501, 647]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [683, 700, 706]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [762, 781, 820]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [950, 956, 1579]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1283, 1285, 1288]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1324, 1385, 1385]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [231, 233, 262]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [244, 253, 260]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [311, 334, 343]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [545, 551, 566]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [684, 693, 703]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [8037, 8098, 8145]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 1, "duration": [178589, 178642, 179092]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 1, "duration": [188, 191, 191]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 1, "duration": [32071, 32271, 33060]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 1, "duration": [9314, 9485, 10183]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 1, "duration": [215349, 218015, 223933]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 1, "duration": [249647, 256298, 263833]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1, "duration": [236142, 236932, 245700]}], "lucene-8.10.1": [{"query": "the", "tags": ["term"], "count": 1, "duration": [865, 886, 1142]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [186, 198, 198]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [237, 275, 353]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [502, 507, 537]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [126, 142, 163]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [144, 153, 465]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [373, 408, 455]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [344, 360, 431]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [452, 466, 481]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [501, 620, 897]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [280, 284, 363]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [361, 388, 398]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [549, 597, 898]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [918, 1036, 1060]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [877, 881, 889]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2770, 2930, 3310]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1300, 1376, 1379]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1275, 1392, 1412]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2509, 2536, 2550]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3243, 3471, 3931]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3889, 4135, 5190]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4975, 5208, 5277]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [122, 135, 198]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [157, 183, 281]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [303, 371, 390]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1077, 1082, 1178]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1163, 1277, 1407]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2374, 2428, 2470]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4660, 4712, 5185]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [11881, 12102, 13756]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [6497, 6807, 7086]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1373, 1431, 1602]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1809, 1809, 1859]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1816, 1841, 1883]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [638, 673, 700]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [675, 682, 732]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1334, 1336, 1461]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [466, 471, 516]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [530, 553, 557]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [882, 953, 971]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1460, 1467, 1488]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1431, 1457, 1641]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2657, 2762, 2818]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [520, 531, 551]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [570, 584, 596]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1088, 1107, 1182]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [300, 340, 615]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [255, 277, 280]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1188, 1208, 1252]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [216, 227, 320]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [244, 409, 520]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [633, 659, 689]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1739, 1799, 1868]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1709, 1775, 2360]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3242, 3282, 3408]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [288, 304, 409]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [355, 384, 506]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1282, 1316, 1332]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1431, 1444, 1550]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1860, 1893, 1976]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2507, 2530, 2732]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2291, 2315, 2358]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2179, 2215, 2469]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4076, 4128, 4865]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [939, 1033, 1036]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [580, 653, 658]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1461, 1484, 1589]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [436, 445, 457]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [451, 475, 494]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1261, 1268, 1347]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1962, 2016, 2079]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2124, 2124, 2163]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3507, 3750, 4069]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1658, 1739, 1866]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1607, 1657, 1676]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2815, 2892, 3144]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1546, 1550, 1593]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2150, 2168, 2198]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2852, 2863, 3024]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [557, 600, 639]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [542, 551, 590]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1193, 1264, 1347]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1156, 1178, 1385]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1284, 1290, 1384]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2730, 2732, 3025]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [537, 569, 649]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [720, 732, 757]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [807, 869, 923]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1262, 1303, 1331]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1469, 1522, 1790]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3214, 3372, 3374]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [496, 504, 544]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [578, 616, 1082]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1037, 1077, 1096]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [5036, 5255, 5263]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [9027, 9038, 9299]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [8725, 9032, 9262]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2170, 2214, 2225]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2127, 2145, 2676]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3645, 3702, 3761]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2683, 2819, 3085]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2995, 3024, 3354]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4685, 4936, 5055]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [139, 144, 187]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [207, 209, 215]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [289, 305, 412]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3258, 3312, 3322]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4185, 4269, 4762]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5783, 5996, 6008]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [7438, 7792, 7840]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [9027, 9202, 9202]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [14119, 14131, 14417]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2401, 2408, 2436]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3696, 3819, 4865]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4425, 4547, 4713]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [113, 134, 144]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [122, 140, 141]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [303, 317, 368]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [354, 369, 430]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [366, 388, 391]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1004, 1020, 1077]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [2396, 2528, 2829]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [4256, 4273, 5311]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2748, 2786, 3029]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3723, 3926, 3981]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5469, 5562, 5657]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5192, 5208, 5942]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [325, 330, 468]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [402, 417, 562]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [909, 965, 1088]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [714, 736, 1136]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [971, 995, 1013]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1161, 1212, 1256]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [10821, 11427, 11961]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [15819, 16443, 18238]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [15773, 15897, 16134]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [640, 646, 647]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [804, 851, 886]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1239, 1268, 1283]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1100, 1157, 1214]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1169, 1185, 1263]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2535, 2609, 2785]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1583, 1604, 1614]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1670, 1725, 1726]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3061, 3453, 3546]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [107, 121, 145]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [130, 141, 184]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [788, 790, 943]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [95, 106, 113]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [91, 103, 136]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [224, 244, 245]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [4595, 4657, 4898]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [5735, 5754, 6425]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [6242, 6305, 6535]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [290, 312, 357]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [404, 406, 422]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [513, 545, 555]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [750, 773, 780]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [734, 776, 908]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1291, 1391, 1432]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [5392, 5430, 5955]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [12216, 12857, 13140]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [6784, 7017, 8461]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [197, 202, 232]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [196, 200, 274]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [531, 549, 568]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [689, 717, 830]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1064, 1065, 1280]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1460, 1594, 1636]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [2993, 3104, 3137]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [5322, 5737, 5863]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [4052, 4144, 4195]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [685, 710, 897]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1040, 1056, 1214]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1266, 1276, 1372]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2067, 2142, 2420]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2661, 2689, 2770]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3054, 3220, 3436]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [144, 158, 160]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [133, 134, 136]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [360, 453, 461]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1222, 1272, 1765]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1461, 1529, 1549]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2402, 2618, 2663]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [101, 116, 128]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [204, 215, 284]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [218, 268, 340]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [553, 566, 607]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [692, 717, 809]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [930, 972, 1100]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2430, 2488, 2600]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3791, 3941, 4129]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4247, 4425, 4483]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [175, 182, 200]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [270, 360, 423]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [317, 342, 352]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [633, 664, 687]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [689, 727, 856]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [820, 861, 867]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [304, 328, 347]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [307, 320, 466]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [781, 872, 955]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [159, 176, 178]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [199, 230, 231]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [399, 439, 442]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1232, 1316, 1518]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1426, 1447, 1477]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1865, 1924, 1989]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [175, 324, 370]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [150, 163, 197]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [796, 802, 837]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1080, 1085, 1152]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1427, 1456, 1473]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1446, 1495, 1659]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1594, 1632, 1654]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1589, 1645, 1646]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [4458, 4595, 5805]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1753, 1791, 2032]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1714, 1725, 1831]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3426, 3455, 3639]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [317, 371, 467]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [405, 429, 433]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [578, 586, 619]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [553, 586, 743]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [647, 755, 6317]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1126, 1184, 1246]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [637, 665, 709]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [790, 802, 826]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1103, 1105, 1263]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [587, 590, 702]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [627, 643, 772]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1091, 1181, 1197]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1586, 1601, 2087]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1736, 1891, 2308]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2259, 2302, 2388]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3337, 3385, 3426]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3636, 3938, 4296]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [5392, 5406, 5804]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [959, 1098, 1198]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1168, 1227, 1364]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1615, 1684, 1807]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [7744, 7746, 8141]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [15321, 15458, 15747]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [13730, 13869, 14076]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2439, 2559, 2563]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2713, 2758, 2759]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4812, 4823, 5113]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [129, 131, 191]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [115, 123, 132]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [341, 386, 462]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1955, 2063, 2231]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4077, 4137, 4168]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3126, 3139, 3466]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [654, 667, 670]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [593, 636, 647]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1166, 1180, 1242]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1431, 1528, 1688]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1610, 1620, 1662]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2407, 2492, 2609]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [620, 628, 652]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [656, 809, 864]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [4749, 4846, 4974]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1496, 1635, 1745]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1675, 1774, 1844]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2325, 2425, 2453]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1139, 1252, 1277]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1201, 1226, 1370]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1578, 1599, 1600]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4890, 4906, 5048]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5637, 5696, 5732]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [9274, 9286, 9778]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [724, 734, 770]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [718, 728, 821]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1536, 1574, 1577]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [334, 334, 503]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [358, 380, 385]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [916, 931, 981]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [147, 161, 202]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [176, 231, 284]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1033, 1062, 1627]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [5560, 5761, 5953]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [9067, 9114, 9514]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [7078, 7223, 7507]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [169, 180, 183]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [188, 188, 228]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [415, 420, 424]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [451, 459, 481]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [530, 543, 614]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [867, 901, 943]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1777, 1847, 1898]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1966, 2111, 2565]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3242, 3296, 3506]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [3051, 3057, 3387]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [3783, 4252, 4288]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [5563, 5619, 5731]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [230, 232, 240]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [277, 278, 302]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [718, 784, 819]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [240, 253, 253]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [293, 297, 333]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2336, 2357, 2393]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [944, 1015, 1066]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1130, 1148, 1156]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1688, 1753, 1761]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [839, 874, 955]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [915, 946, 975]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1871, 1910, 1915]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [219, 231, 232]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [301, 314, 386]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [336, 342, 651]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [222, 268, 291]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [244, 257, 274]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [477, 514, 535]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [300, 322, 326]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [331, 348, 359]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [756, 776, 824]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4699, 4717, 5314]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [12864, 12930, 13779]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [6729, 6820, 7125]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [116, 127, 128]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [182, 197, 221]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [253, 260, 263]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1051, 1088, 1224]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1098, 1103, 1170]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1960, 2045, 2085]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [210, 211, 216]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [224, 225, 232]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [446, 466, 469]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [409, 430, 631]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [254, 263, 273]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [632, 694, 712]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [762, 839, 981]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [837, 919, 953]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1592, 1607, 1812]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [402, 408, 433]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [504, 545, 688]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [762, 828, 828]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [7289, 7335, 7752]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [7896, 7978, 8005]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [13351, 13527, 14408]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2185, 2211, 2451]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2378, 2428, 2686]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3189, 3268, 3733]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [708, 716, 728]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [721, 736, 791]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3688, 4129, 4200]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [253, 261, 278]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [271, 276, 280]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [531, 542, 736]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [93, 104, 104]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [103, 112, 220]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [287, 348, 361]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1858, 1859, 1970]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1935, 1983, 1999]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4629, 4651, 5329]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [287, 298, 335]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [309, 344, 539]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [574, 584, 590]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [334, 371, 609]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [337, 363, 393]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [515, 560, 725]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [372, 385, 395]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [468, 470, 526]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [700, 715, 728]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [876, 1115, 1676]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [811, 989, 1021]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1645, 1876, 1934]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [114, 120, 143]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [117, 161, 167]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [255, 263, 359]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [725, 752, 772]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [909, 951, 956]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1996, 2028, 2136]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1966, 2014, 2023]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3346, 3522, 3591]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2752, 2788, 2932]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2724, 2767, 3102]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2955, 2999, 3049]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [5051, 5558, 5783]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [468, 514, 552]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [495, 499, 538]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1099, 1170, 1175]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1509, 1631, 1782]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1624, 1651, 1712]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3799, 3818, 3945]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [134, 148, 155]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [159, 165, 174]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [287, 323, 499]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [359, 364, 384]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [474, 474, 770]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [749, 766, 857]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [448, 483, 509]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [683, 717, 746]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [731, 734, 832]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [381, 388, 404]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [579, 587, 599]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [586, 628, 716]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [433, 435, 623]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [584, 589, 592]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1881, 1935, 1937]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1783, 1823, 1951]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [12044, 12457, 12583]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1539, 1549, 1800]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [356, 357, 395]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [380, 412, 433]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [838, 912, 979]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [259, 264, 303]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [324, 332, 338]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [516, 567, 721]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [367, 369, 407]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [486, 491, 535]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1191, 1197, 1544]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2644, 2670, 2671]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3358, 3359, 3503]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4913, 5048, 5435]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [299, 565, 911]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [294, 295, 298]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [504, 544, 563]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [154, 155, 156]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [133, 144, 153]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [263, 266, 346]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [133, 142, 191]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [147, 165, 179]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [453, 643, 648]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [863, 932, 1446]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [904, 924, 1067]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1882, 1902, 1993]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [357, 398, 400]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [394, 418, 518]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [500, 527, 589]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [549, 569, 576]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [716, 721, 886]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [952, 955, 959]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3113, 3241, 3615]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4490, 4563, 4571]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3875, 4075, 4539]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [336, 352, 356]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [437, 475, 481]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [655, 681, 717]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [795, 867, 873]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [841, 843, 869]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [4754, 4795, 5185]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1173, 1202, 1374]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1433, 1458, 1759]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3224, 3287, 3793]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [749, 779, 885]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [844, 854, 916]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1696, 1706, 1985]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [484, 501, 572]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [538, 579, 605]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1153, 1184, 1238]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [127, 208, 228]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [168, 170, 181]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [656, 705, 916]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1088, 1121, 1272]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1315, 1360, 1394]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1948, 1987, 2089]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [889, 931, 1045]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1128, 1147, 1151]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1996, 2032, 2156]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [268, 275, 281]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [450, 477, 648]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [8154, 8416, 8597]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [371, 379, 394]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [490, 507, 638]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [606, 630, 1032]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1444, 1447, 1466]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1725, 1726, 1821]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2479, 2913, 3057]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1837, 1901, 2157]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1822, 1825, 1843]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3301, 3372, 3478]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1174, 1236, 1241]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1317, 1335, 1450]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [3883, 3952, 4001]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [557, 562, 643]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [672, 684, 705]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [852, 907, 918]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [156, 170, 196]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [204, 223, 230]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [364, 378, 412]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2306, 2381, 2491]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2427, 2442, 2451]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4437, 4739, 5080]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [116, 122, 246]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [119, 138, 141]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [622, 670, 709]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [218, 239, 257]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [255, 260, 336]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [445, 453, 467]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [991, 1016, 1178]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1224, 1270, 1274]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1650, 1721, 1843]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2398, 2424, 2445]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2577, 2641, 2717]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3789, 3864, 3920]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [196, 216, 262]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [250, 286, 289]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [466, 486, 503]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [524, 549, 558]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [692, 698, 700]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [821, 836, 879]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [5242, 5254, 5288]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [8888, 8962, 9243]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [6099, 6362, 6536]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [701, 702, 833]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [706, 737, 754]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1279, 1363, 1366]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [518, 549, 596]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [507, 569, 639]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1139, 1156, 1362]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [989, 1017, 1369]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1111, 1134, 1143]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1719, 1916, 1973]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [202, 209, 230]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [208, 235, 256]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [433, 450, 518]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3742, 3773, 4158]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [5539, 5541, 5762]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [5154, 5241, 5507]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [798, 804, 935]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [923, 937, 978]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1471, 1509, 1591]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [917, 917, 1016]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1077, 1078, 1102]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1376, 1386, 1480]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [156, 172, 222]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [230, 281, 329]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [362, 366, 368]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [5390, 5440, 5613]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [5763, 5849, 5962]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [10688, 10895, 10944]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [492, 509, 534]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [521, 528, 539]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1472, 1498, 1551]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1044, 1055, 1146]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1165, 1230, 1253]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1742, 1812, 1817]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3767, 4083, 4658]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [6282, 6284, 6605]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [6281, 6464, 6544]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [348, 354, 376]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [321, 362, 363]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [630, 636, 651]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3852, 3926, 4249]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [7978, 8320, 8470]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5426, 5865, 6303]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [644, 693, 713]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [806, 815, 897]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1088, 1103, 1284]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [125, 143, 144]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [153, 172, 317]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1312, 1359, 1581]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [657, 697, 937]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [848, 850, 898]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1541, 1570, 1719]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [447, 450, 457]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [593, 641, 673]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1398, 1489, 1492]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [151, 181, 252]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [256, 270, 328]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [310, 357, 372]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [438, 451, 719]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [559, 586, 652]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [890, 911, 931]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [86, 101, 114]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [108, 162, 237]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [95, 108, 126]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1311, 1329, 1481]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1352, 1387, 1426]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4665, 4670, 4775]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1160, 1164, 1171]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1253, 1312, 1481]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2795, 2851, 3304]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [91, 106, 112]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [95, 96, 134]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [354, 563, 618]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [588, 618, 682]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [748, 775, 938]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [958, 1009, 1063]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [799, 804, 899]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [715, 728, 735]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1134, 1152, 1153]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [794, 832, 921]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [826, 915, 1037]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1648, 1656, 1926]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1236, 1292, 1398]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1289, 1303, 1580]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2299, 2353, 2557]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [835, 858, 1080]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [980, 993, 1062]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1835, 1837, 1865]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [328, 332, 337]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [409, 409, 424]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [530, 532, 540]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [317, 336, 372]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [365, 369, 415]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [681, 688, 702]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1932, 1959, 2623]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [3618, 3622, 3638]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2858, 3175, 3328]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1736, 1752, 2079]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2614, 2629, 2651]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2664, 2688, 2968]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [569, 611, 613]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [939, 943, 1386]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1506, 1554, 1572]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [85, 102, 131]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [102, 109, 120]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [411, 438, 497]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2120, 2155, 2163]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2583, 2600, 2662]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [3779, 3899, 4291]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [247, 277, 282]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [297, 356, 418]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [489, 540, 583]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [211, 217, 228]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [253, 262, 264]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [426, 433, 474]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2328, 2403, 2548]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2616, 2640, 2821]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4727, 4818, 5099]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [363, 383, 393]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [514, 532, 600]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [710, 726, 894]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [167, 191, 242]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [210, 229, 281]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [667, 693, 794]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1033, 1127, 1160]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1229, 1333, 1461]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1943, 1968, 1985]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [633, 634, 650]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [684, 699, 753]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1258, 1291, 1291]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2131, 2192, 2230]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1894, 1933, 2013]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4101, 4131, 4221]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [936, 1083, 1101]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1178, 1197, 1343]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1504, 1626, 1657]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [462, 534, 665]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [536, 575, 597]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [951, 956, 1013]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [543, 562, 570]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [706, 729, 749]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [861, 978, 1107]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [902, 903, 909]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1001, 1033, 1084]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2354, 2371, 2545]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2162, 2262, 2319]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2287, 2382, 2862]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2657, 2664, 2684]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [214, 261, 375]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [220, 222, 275]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [574, 684, 705]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [603, 614, 633]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [695, 729, 731]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [855, 898, 942]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2530, 2543, 2556]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2872, 2918, 3007]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4472, 4533, 4618]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2794, 2875, 2915]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4926, 5055, 5226]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4210, 4282, 4477]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [2308, 2390, 2476]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [2567, 2619, 2751]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [6194, 6419, 6775]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [205, 215, 229]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [235, 255, 369]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1253, 1254, 1600]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1103, 1123, 1159]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [1499, 1518, 1559]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2441, 2468, 2484]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [243, 287, 370]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [342, 342, 355]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [383, 487, 495]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [224, 246, 260]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [239, 270, 331]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [549, 554, 619]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [392, 463, 557]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [494, 586, 614]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [643, 681, 954]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1379, 1394, 1515]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [8522, 8525, 8623]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1469, 1492, 1665]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [168, 179, 183]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [201, 215, 340]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [530, 706, 783]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1011, 1020, 1055]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1347, 1376, 1383]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1280, 1313, 1564]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [723, 742, 810]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [991, 1054, 1230]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2054, 2108, 2162]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [98, 125, 164]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [132, 198, 280]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [227, 267, 294]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [577, 585, 743]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [593, 605, 624]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1026, 1055, 1123]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [3693, 3837, 4068]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [3660, 3695, 3828]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [7349, 7372, 7658]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2471, 2512, 2826]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3129, 3249, 3373]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4542, 4579, 5123]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [1671, 1706, 1732]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [2520, 2561, 2616]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [2089, 2149, 2218]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [5250, 5373, 5583]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [12428, 12623, 12655]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [7894, 7909, 8759]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [767, 801, 838]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [809, 850, 866]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1221, 1241, 1247]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [809, 820, 879]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [971, 983, 1005]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1470, 1509, 1540]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [274, 294, 303]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [361, 378, 382]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [550, 596, 629]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [2294, 2338, 2348]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2278, 2315, 2338]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [4049, 4098, 4295]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [279, 294, 309]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [382, 412, 424]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [500, 502, 505]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [138, 138, 143]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [193, 232, 483]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [402, 420, 421]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1461, 1462, 1563]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1606, 1619, 1713]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2119, 2128, 2299]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [5389, 5494, 5846]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [9330, 9546, 9660]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [7645, 7948, 8300]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [158, 160, 175]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [176, 177, 317]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [708, 746, 770]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2536, 2547, 2707]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3855, 3903, 4391]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4089, 4095, 4153]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [152, 159, 162]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [183, 225, 228]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [897, 902, 1105]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [486, 489, 499]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [535, 550, 571]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [919, 972, 985]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [102, 103, 115]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [99, 116, 119]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [312, 332, 464]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1952, 2015, 2034]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1757, 1837, 2273]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2610, 2647, 2829]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [167, 184, 203]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [185, 188, 194]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [388, 403, 458]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [551, 567, 723]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [768, 819, 837]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1118, 1138, 1292]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [482, 531, 536]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [667, 762, 785]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1927, 1995, 1996]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [473, 549, 562]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [514, 544, 550]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1227, 1232, 1458]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1523, 1541, 1549]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1857, 1895, 2198]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [6887, 6911, 7013]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [172, 200, 250]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [212, 244, 252]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [378, 401, 427]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [111, 127, 141]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [174, 198, 199]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [326, 347, 359]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3694, 3697, 3718]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [4757, 4760, 4825]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [6308, 6343, 6807]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3295, 3379, 3390]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3129, 3165, 3593]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4552, 4579, 4847]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [637, 667, 804]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [652, 751, 812]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [2448, 2551, 2657]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [5754, 6104, 11583]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [6732, 6967, 8281]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [11480, 11793, 11929]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [172, 184, 223]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [144, 161, 166]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [359, 369, 418]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1383, 1496, 1706]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1570, 1582, 1594]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1988, 2071, 2264]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [731, 736, 743]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [900, 916, 962]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1067, 1235, 1685]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [898, 943, 961]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1184, 1221, 1259]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1226, 1237, 1244]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [161, 166, 172]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [156, 171, 187]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [404, 417, 508]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [3334, 3432, 3506]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [8116, 8157, 8497]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [4508, 4604, 4620]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [670, 717, 742]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [953, 970, 1017]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1007, 1062, 1088]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [689, 695, 764]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [827, 834, 1177]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1908, 1918, 2426]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [24432, 24542, 26581]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [91614, 92130, 94752]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [34226, 35311, 35851]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [107, 117, 121]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [126, 141, 159]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [194, 253, 268]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [551, 593, 623]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [817, 829, 1002]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [953, 964, 1001]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1420, 1548, 2116]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1508, 1537, 1541]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2009, 2159, 2242]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [792, 803, 1103]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1507, 1515, 1572]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2162, 2203, 2307]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [408, 430, 444]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [545, 551, 579]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [923, 936, 960]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [243, 251, 352]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [276, 280, 446]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [568, 600, 606]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [119, 158, 269]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [141, 186, 207]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [426, 464, 476]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [302, 314, 380]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [364, 368, 370]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [505, 537, 659]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [353, 401, 409]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [371, 395, 442]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [694, 728, 742]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [2947, 2954, 3134]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [3031, 3077, 3135]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5859, 6193, 6317]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1808, 1894, 1997]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1805, 1824, 2012]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [19457, 19696, 19798]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1777, 1796, 1822]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [2185, 2439, 2557]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2671, 2730, 2856]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1483, 1542, 1575]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1530, 1567, 1758]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [2639, 2731, 2983]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [422, 426, 556]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [510, 536, 563]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1140, 1178, 1213]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [6931, 7012, 7323]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [6809, 6835, 6876]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [14971, 15584, 16428]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [247, 256, 286]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [254, 267, 275]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [1959, 2003, 2234]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [609, 676, 681]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [705, 716, 777]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1117, 1139, 1196]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [284, 315, 319]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [383, 428, 498]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [584, 618, 687]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [732, 740, 768]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [843, 858, 920]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1230, 1231, 1348]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [476, 520, 532]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [601, 628, 812]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [818, 879, 911]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [329, 333, 339]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [357, 383, 443]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [722, 744, 850]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [392, 435, 453]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [507, 558, 573]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [1112, 1149, 1156]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [4929, 5032, 5330]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [5648, 5966, 6592]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [7087, 7382, 7582]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1, "duration": [182, 191, 208]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 1, "duration": [223, 261, 360]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 1, "duration": [5537, 5646, 5863]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1033, 1052, 1095]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1066, 1087, 1253]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [1744, 1782, 1826]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [1685, 1802, 1837]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [1608, 1624, 1759]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [3100, 3114, 3155]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1, "duration": [357, 371, 473]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1, "duration": [385, 386, 408]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 1, "duration": [851, 879, 889]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1, "duration": [1395, 1414, 1466]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1, "duration": [1608, 1669, 1755]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1, "duration": [20275, 20625, 21568]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 1, "duration": [51539, 51774, 53224]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 1, "duration": [686, 744, 864]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 1, "duration": [1336, 1380, 1383]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 1, "duration": [6103, 6154, 6709]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 1, "duration": [667, 929, 948]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 1, "duration": [1421, 1469, 1494]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1, "duration": [6120, 6207, 6258]}]}, "TOP_10_COUNT": {"tantivy-0.18": [{"query": "the", "tags": ["term"], "count": 4168064, "duration": [10935, 11197, 11481]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 79, "duration": [121, 126, 149]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [128, 128, 130]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 15456, "duration": [305, 329, 366]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 195, "duration": [60, 61, 62]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 110, "duration": [76, 79, 93]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 4173, "duration": [163, 167, 197]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 856, "duration": [122, 139, 143]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 112, "duration": [189, 194, 197]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 104150, "duration": [1336, 1395, 1459]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [140, 141, 174]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [201, 215, 220]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 54291, "duration": [977, 1011, 1078]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 266, "duration": [482, 482, 490]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 18, "duration": [520, 521, 529]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 195119, "duration": [1902, 1987, 2073]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2173, "duration": [848, 848, 920]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [872, 882, 884]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 167943, "duration": [1757, 1764, 1927]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14165, "duration": [1297, 1346, 1380]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [2311, 2328, 2334]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 612165, "duration": [4516, 4690, 4809]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 85, "duration": [55, 58, 61]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 56, "duration": [72, 75, 112]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 7747, "duration": [213, 242, 271]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 693, "duration": [577, 589, 602]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [634, 660, 672]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 397912, "duration": [3512, 3629, 3695]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7346, "duration": [1736, 1760, 1967]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 201, "duration": [2513, 2584, 2655]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 4173861, "duration": [28978, 30435, 30641]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4496, "duration": [387, 388, 393]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 307, "duration": [752, 782, 809]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 454176, "duration": [3625, 3697, 3833]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 161, "duration": [245, 253, 356]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [260, 267, 340]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 336807, "duration": [2977, 3017, 3037]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1055, "duration": [236, 242, 247]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 177, "duration": [327, 328, 330]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 61359, "duration": [923, 947, 1930]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3760, "duration": [743, 763, 857]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 252, "duration": [1047, 1066, 1106]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 151582, "duration": [1557, 1559, 1569]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 569, "duration": [321, 328, 353]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [363, 370, 378]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 86776, "duration": [1170, 1204, 1448]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [88, 89, 90]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [84, 90, 116]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 249193, "duration": [2263, 2279, 2349]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 81, "duration": [131, 133, 135]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [141, 148, 203]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 20969, "duration": [408, 525, 703]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4617, "duration": [884, 887, 963]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 141, "duration": [1272, 1294, 1387]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 194083, "duration": [1807, 2019, 2022]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 107, "duration": [119, 120, 127]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 64, "duration": [151, 155, 156]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1192562, "duration": [8339, 8465, 8554]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1239, "duration": [619, 623, 670]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 566, "duration": [1029, 1035, 1041]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 510849, "duration": [3982, 3993, 3995]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7014, "duration": [1261, 1375, 1543]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 329, "duration": [1751, 1775, 1796]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 170364, "duration": [1670, 1685, 1713]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48653, "duration": [1177, 1179, 1212]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 44879, "duration": [3942, 4001, 4078]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 151349, "duration": [1645, 1656, 1693]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 137, "duration": [243, 243, 257]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 53, "duration": [267, 269, 273]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 95654, "duration": [1509, 1584, 1648]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7387, "duration": [952, 959, 994]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 302, "duration": [1508, 1510, 1520]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 260381, "duration": [2240, 2277, 2773]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5040, "duration": [847, 899, 1084]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 70, "duration": [1170, 1188, 1203]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 217122, "duration": [2001, 2047, 2118]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1917, "duration": [700, 715, 774]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 94, "duration": [930, 964, 979]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 584269, "duration": [4578, 4630, 4972]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 733, "duration": [384, 387, 389]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 76, "duration": [372, 396, 401]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 46081, "duration": [818, 869, 955]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 421, "duration": [644, 658, 675]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 61, "duration": [710, 748, 765]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 401520, "duration": [3284, 3417, 3546]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1187, "duration": [182, 190, 191]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [328, 332, 340]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 160168, "duration": [1577, 1601, 1626]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 475, "duration": [688, 693, 705]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [781, 781, 809]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 402259, "duration": [3421, 3633, 3637]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 604, "duration": [285, 285, 289]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [350, 354, 359]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 99117, "duration": [1185, 1205, 1213]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65770, "duration": [3326, 3333, 3380]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [7402, 7458, 7502]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 825043, "duration": [6029, 6037, 6118]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6146, "duration": [1033, 1052, 1092]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1478, 1517, 1537]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 298137, "duration": [2487, 2508, 2529]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 13581, "duration": [1323, 1347, 1473]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1894, "duration": [2446, 2457, 2461]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 229696, "duration": [2103, 2106, 2125]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 314, "duration": [70, 79, 101]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 288, "duration": [104, 105, 121]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 10040, "duration": [304, 336, 469]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6957, "duration": [1716, 1755, 1794]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [2136, 2141, 2143]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 702120, "duration": [5389, 5419, 5451]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13996, "duration": [3400, 3456, 3832]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [4573, 4611, 4619]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1251867, "duration": [9630, 9686, 9729]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4268, "duration": [1327, 1362, 1490]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 440, "duration": [1790, 1843, 1914]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 909970, "duration": [6690, 6707, 6757]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 23, "duration": [49, 49, 51]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [50, 52, 57]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 10684, "duration": [259, 295, 299]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 157, "duration": [222, 228, 239]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [247, 252, 265]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 35325, "duration": [652, 700, 1031]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1316, "duration": [725, 743, 991]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1156, "duration": [1960, 1965, 2211]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269120, "duration": [39381, 41417, 41605]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 43372, "duration": [4093, 4132, 4163]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15089, "duration": [11123, 11525, 11849]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806414, "duration": [27744, 29106, 29228]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 239, "duration": [108, 109, 121]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 124, "duration": [156, 156, 171]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 333268, "duration": [2657, 2696, 2698]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 618, "duration": [252, 276, 289]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 168, "duration": [361, 363, 375]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970283, "duration": [7463, 7465, 7511]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 44521, "duration": [4665, 4749, 4930]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 4100, "duration": [9025, 9111, 9342]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 3808757, "duration": [27626, 29147, 29508]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 960, "duration": [334, 344, 363]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 244, "duration": [467, 494, 521]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 134727, "duration": [1479, 1590, 1697]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1490, "duration": [743, 750, 836]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [833, 844, 869]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 106587, "duration": [1530, 1568, 1693]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3574, "duration": [1082, 1149, 1158]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1021, "duration": [1186, 1194, 1240]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 146818, "duration": [1544, 1568, 1713]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 20, "duration": [38, 43, 44]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [44, 46, 47]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 82708, "duration": [1202, 1242, 1335]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [46, 49, 63]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [44, 46, 50]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1791, "duration": [104, 113, 139]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 3397, "duration": [1605, 1625, 1751]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 12, "duration": [1912, 1951, 2040]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4053765, "duration": [34755, 36833, 36888]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 429, "duration": [88, 89, 89]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 41, "duration": [161, 162, 167]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 130601, "duration": [1401, 1436, 1613]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2860, "duration": [490, 502, 517]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 828, "duration": [509, 514, 518]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 54702, "duration": [999, 1038, 1101]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10899, "duration": [2241, 2264, 2287]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 922, "duration": [3177, 3184, 3205]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806986, "duration": [27172, 28832, 29371]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [109, 114, 117]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [114, 121, 123]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 11759, "duration": [255, 271, 301]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 443, "duration": [309, 313, 326]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [436, 445, 449]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798567, "duration": [25857, 26785, 26959]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1994, "duration": [1048, 1104, 1109]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1444, "duration": [2357, 2383, 2444]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269267, "duration": [39513, 41150, 41342]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 418, "duration": [328, 343, 343]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 224, "duration": [532, 536, 536]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798846, "duration": [25972, 27334, 27440]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10806, "duration": [810, 895, 976]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 831, "duration": [1575, 1595, 1637]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 401948, "duration": [3175, 3245, 3319]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 90, "duration": [70, 72, 73]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [69, 71, 72]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7731, "duration": [226, 241, 273]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3336, "duration": [662, 725, 821]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [915, 929, 939]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 237265, "duration": [2109, 2121, 2244]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48, "duration": [47, 49, 60]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [54, 55, 58]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 5320, "duration": [160, 169, 189]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1751, "duration": [222, 230, 267]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1335, "duration": [459, 469, 487]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 79894, "duration": [1122, 1182, 1224]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 19247, "duration": [2490, 2525, 2534]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 626, "duration": [3299, 3350, 3364]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 301066, "duration": [2542, 2578, 2617]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [78, 79, 80]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 81, "duration": [109, 120, 141]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 21776, "duration": [479, 557, 824]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3980, "duration": [148, 149, 150]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3891, "duration": [413, 493, 627]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 43534, "duration": [769, 907, 932]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 109, "duration": [142, 146, 152]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 97, "duration": [162, 162, 165]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 47760, "duration": [771, 784, 1339]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 61, "duration": [85, 87, 91]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [102, 108, 138]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 14465, "duration": [331, 418, 420]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2638, "duration": [594, 599, 637]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 60, "duration": [688, 726, 729]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 301693, "duration": [2500, 2588, 2825]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 12, "duration": [56, 61, 71]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [47, 51, 64]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 57879, "duration": [932, 957, 1031]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1238, "duration": [296, 297, 298]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 391, "duration": [587, 637, 924]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970192, "duration": [7373, 7481, 7561]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 415, "duration": [674, 687, 816]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [923, 936, 945]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4316960, "duration": [42105, 44071, 44402]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3896, "duration": [949, 987, 1043]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1242, 1333, 1337]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 153516, "duration": [1650, 1709, 1843]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 896, "duration": [138, 148, 153]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 475, "duration": [223, 228, 236]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 36406, "duration": [764, 787, 818]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1044, "duration": [326, 331, 340]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 74, "duration": [408, 414, 433]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 52377, "duration": [930, 1363, 1414]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1550, "duration": [275, 283, 345]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 131, "duration": [397, 403, 413]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 150258, "duration": [1632, 1632, 1886]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1246, "duration": [433, 434, 449]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 235, "duration": [402, 410, 418]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 66350, "duration": [1129, 1418, 1952]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5054, "duration": [654, 670, 839]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [953, 981, 986]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 310479, "duration": [2616, 2717, 3337]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 24403, "duration": [1618, 1817, 2227]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12115, "duration": [3676, 3747, 3867]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 503137, "duration": [3994, 4227, 4436]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2540, "duration": [402, 419, 458]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 59, "duration": [640, 649, 678]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 200883, "duration": [2066, 2159, 2451]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 96618, "duration": [7709, 7779, 7814]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1140, "duration": [14271, 14358, 14460]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1038231, "duration": [7638, 7914, 7922]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5964, "duration": [1253, 1286, 1449]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 256, "duration": [1757, 1760, 1768]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 402607, "duration": [3156, 3257, 3482]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 142, "duration": [40, 44, 47]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 142, "duration": [49, 50, 53]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 10007, "duration": [298, 306, 321]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2001, "duration": [893, 941, 1046]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [1194, 1202, 1211]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168649, "duration": [28349, 29830, 30062]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2315, "duration": [305, 313, 315]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [463, 481, 497]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 51200, "duration": [822, 847, 1103]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6825, "duration": [769, 874, 1174]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2155, "duration": [1247, 1270, 1282]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 114383, "duration": [1322, 1328, 1355]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 47, "duration": [378, 382, 405]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 33, "duration": [575, 584, 592]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4068900, "duration": [38981, 41259, 41367]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4125, "duration": [615, 654, 1000]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [946, 988, 1002]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 272980, "duration": [2307, 2322, 2322]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4710, "duration": [374, 379, 489]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2046, "duration": [725, 744, 769]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 193597, "duration": [1856, 1869, 1970]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8204, "duration": [2394, 2408, 2703]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [3274, 3293, 3298]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 854242, "duration": [6302, 6339, 6380]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1608, "duration": [420, 424, 449]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [527, 540, 553]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 66857, "duration": [1091, 1134, 1316]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 328, "duration": [209, 210, 224]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 97, "duration": [229, 233, 235]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 32425, "duration": [856, 857, 878]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [46, 46, 68]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [55, 59, 62]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 39428, "duration": [966, 1007, 1634]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10203, "duration": [1596, 1609, 1810]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [2412, 2426, 2481]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 2470107, "duration": [19848, 19928, 20124]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 55, "duration": [54, 59, 62]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 43, "duration": [63, 63, 65]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 58784, "duration": [915, 917, 919]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 901, "duration": [241, 245, 249]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 213, "duration": [320, 328, 360]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 73481, "duration": [1045, 1109, 1633]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7776, "duration": [882, 915, 916]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3077, "duration": [1468, 1549, 1604]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 127400, "duration": [1459, 1542, 1752]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1282, "duration": [1117, 1145, 1154]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 31, "duration": [1532, 1550, 1580]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 961109, "duration": [7663, 7716, 7932]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 155, "duration": [79, 80, 83]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 45, "duration": [111, 120, 121]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 280642, "duration": [2385, 2413, 2443]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 51, "duration": [88, 91, 96]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 35, "duration": [106, 110, 110]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 102668, "duration": [1275, 1283, 1310]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1997, "duration": [462, 498, 598]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 93, "duration": [645, 662, 664]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 212065, "duration": [1934, 1976, 2048]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1613, "duration": [536, 542, 581]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [642, 657, 677]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 109701, "duration": [1465, 1571, 1584]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 593, "duration": [66, 67, 71]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 373, "duration": [122, 123, 157]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 32570, "duration": [629, 648, 950]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 358, "duration": [105, 105, 134]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 89, "duration": [134, 138, 143]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 29690, "duration": [672, 712, 759]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [185, 203, 219]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [192, 196, 203]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 23089, "duration": [471, 525, 533]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7853, "duration": [1845, 1893, 2353]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 140, "duration": [2568, 2632, 2680]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169493, "duration": [29135, 30577, 30621]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 207, "duration": [63, 65, 81]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [112, 121, 132]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 8017, "duration": [208, 209, 226]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3053, "duration": [532, 547, 590]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 100, "duration": [769, 770, 792]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 132425, "duration": [1414, 1486, 1734]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 357, "duration": [106, 107, 123]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 328, "duration": [149, 150, 155]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 10614, "duration": [320, 377, 419]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 158, "duration": [221, 237, 275]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [152, 155, 163]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 22473, "duration": [411, 432, 656]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1927, "duration": [431, 439, 461]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 681, "duration": [601, 607, 621]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 88332, "duration": [1143, 1234, 1632]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 644, "duration": [158, 171, 187]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 73, "duration": [246, 257, 302]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 103711, "duration": [1526, 1541, 1565]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13480, "duration": [4066, 4122, 4506]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 969, "duration": [5147, 5157, 5165]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 918169, "duration": [6762, 6871, 6942]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 8141, "duration": [868, 993, 1326]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1392, 1466, 1481]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 375689, "duration": [2977, 2989, 2996]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 278, "duration": [386, 401, 426]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [424, 430, 441]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 212074, "duration": [1975, 1991, 2053]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 266, "duration": [134, 140, 154]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 135, "duration": [160, 165, 171]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 16569, "duration": [340, 365, 576]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 22, "duration": [54, 55, 56]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [57, 57, 63]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 6674, "duration": [253, 267, 336]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1329, "duration": [1115, 1139, 1142]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 42, "duration": [1245, 1248, 1252]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 281073, "duration": [2541, 2545, 2711]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 240, "duration": [146, 153, 156]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [167, 174, 181]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 38213, "duration": [1020, 1045, 1081]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 867, "duration": [150, 157, 184]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [219, 228, 229]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 28879, "duration": [825, 898, 906]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 406, "duration": [122, 124, 125]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 318, "duration": [189, 197, 197]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 345824, "duration": [2724, 2732, 2812]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1913, "duration": [473, 476, 546]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 171, "duration": [606, 634, 643]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 70020, "duration": [991, 1209, 1348]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 84, "duration": [47, 48, 78]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [53, 53, 66]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 10103, "duration": [222, 227, 237]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 444, "duration": [422, 423, 441]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [482, 492, 498]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 165540, "duration": [1822, 1901, 2238]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1457, "duration": [691, 693, 708]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 131, "duration": [1112, 1123, 1128]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 4174359, "duration": [28837, 30408, 30538]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11192, "duration": [1416, 1443, 1475]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [2310, 2365, 2374]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 264631, "duration": [2378, 2421, 2520]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 466, "duration": [302, 307, 312]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [344, 345, 357]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 55152, "duration": [919, 926, 1058]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1061, "duration": [1073, 1116, 1134]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 74, "duration": [1080, 1087, 1107]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 194085, "duration": [1915, 2009, 2057]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 164, "duration": [53, 54, 57]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 121, "duration": [78, 83, 96]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 12785, "duration": [347, 438, 500]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 290, "duration": [146, 155, 157]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 277, "duration": [238, 244, 245]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 352602, "duration": [2903, 3098, 3253]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1111, "duration": [135, 137, 164]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 963, "duration": [269, 273, 274]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 162074, "duration": [1731, 1768, 1888]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 608, "duration": [161, 165, 185]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 485, "duration": [259, 262, 266]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 231765, "duration": [2221, 2232, 2255]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 122, "duration": [166, 168, 179]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 10, "duration": [199, 203, 211]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 217412, "duration": [2163, 2234, 2300]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 118291, "duration": [3297, 3310, 3321]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21737, "duration": [33609, 33687, 33823]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168234, "duration": [28474, 29554, 29618]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 367, "duration": [218, 222, 224]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [252, 254, 269]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 33310, "duration": [612, 670, 781]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 192, "duration": [134, 138, 147]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [160, 161, 163]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 46274, "duration": [789, 815, 1020]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 180, "duration": [131, 138, 139]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 143, "duration": [173, 182, 184]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 268624, "duration": [2310, 2344, 2368]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2130, "duration": [1290, 1365, 1383]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1490, 1539, 1566]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 2372213, "duration": [17179, 18230, 18244]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 248, "duration": [136, 141, 143]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 68, "duration": [150, 153, 155]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 47084, "duration": [936, 1003, 1170]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [58, 63, 63]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 226, "duration": [70, 74, 102]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 4838, "duration": [179, 187, 189]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 78, "duration": [59, 63, 66]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [64, 67, 92]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 17211, "duration": [560, 571, 597]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1532, "duration": [545, 547, 624]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 173, "duration": [646, 663, 666]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 76229, "duration": [1112, 1205, 1222]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2422, "duration": [104, 106, 178]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2381, "duration": [255, 266, 270]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 6515, "duration": [179, 187, 223]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1633, "duration": [244, 255, 257]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 123, "duration": [381, 384, 393]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 73305, "duration": [997, 1298, 1373]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4110, "duration": [985, 1056, 1080]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 60, "duration": [1393, 1452, 1465]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 2315795, "duration": [17652, 18581, 18654]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [147, 161, 171]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [237, 237, 271]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 92901, "duration": [1164, 1269, 1321]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 131, "duration": [428, 433, 440]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [456, 458, 474]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 226887, "duration": [2464, 2549, 2603]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1539, "duration": [598, 604, 653]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 79, "duration": [780, 791, 918]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 322018, "duration": [2782, 2952, 3045]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1358, "duration": [466, 474, 485]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [567, 574, 576]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 68175, "duration": [1157, 1361, 1618]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 813, "duration": [286, 295, 309]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 67, "duration": [352, 364, 374]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 62207, "duration": [1094, 1106, 1497]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [65, 74, 108]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [55, 75, 89]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 33193, "duration": [588, 622, 756]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3401, "duration": [755, 758, 782]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 821, "duration": [947, 958, 964]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 134076, "duration": [1476, 1584, 2066]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2416, "duration": [552, 587, 615]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [740, 744, 754]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 105084, "duration": [1240, 1246, 1247]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 162, "duration": [164, 165, 170]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [417, 431, 488]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168064, "duration": [28005, 29738, 30139]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 361, "duration": [117, 134, 166]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [191, 199, 207]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 167104, "duration": [1780, 1783, 1822]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 679, "duration": [529, 539, 549]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [572, 591, 602]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 730213, "duration": [5525, 5574, 5817]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5744, "duration": [892, 962, 1061]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [1302, 1329, 1335]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 222790, "duration": [2020, 2022, 2035]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 377, "duration": [493, 510, 516]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 16, "duration": [611, 626, 697]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 774500, "duration": [6256, 6650, 6800]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 639, "duration": [191, 193, 199]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [302, 315, 322]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 188645, "duration": [1899, 1994, 2147]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 138, "duration": [109, 116, 125]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [85, 85, 87]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 14092, "duration": [432, 441, 442]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5577, "duration": [1243, 1257, 1354]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [1618, 1656, 1660]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 310569, "duration": [2580, 2605, 2610]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 29, "duration": [42, 42, 46]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [44, 44, 47]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 14156, "duration": [351, 358, 393]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 144, "duration": [78, 79, 79]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [106, 111, 112]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 69112, "duration": [1048, 1060, 1106]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2936, "duration": [425, 434, 590]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 611, "duration": [657, 664, 727]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 192280, "duration": [1814, 1823, 1900]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9630, "duration": [980, 1014, 1200]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 181, "duration": [1631, 1648, 1655]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 389360, "duration": [3036, 3055, 3056]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 490, "duration": [94, 96, 96]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 414, "duration": [149, 149, 158]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 11304, "duration": [394, 422, 431]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 431, "duration": [179, 180, 183]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 115, "duration": [295, 315, 372]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 308550, "duration": [2571, 2705, 2806]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6560, "duration": [1422, 1437, 1871]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 16, "duration": [2178, 2197, 2222]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 4014085, "duration": [29352, 30896, 30971]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1218, "duration": [352, 357, 400]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [424, 433, 437]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 119020, "duration": [1400, 1446, 1449]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 531, "duration": [302, 334, 337]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 82, "duration": [348, 350, 365]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 43329, "duration": [773, 777, 924]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2111, "duration": [466, 479, 479]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [637, 658, 660]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 159993, "duration": [1582, 1594, 1817]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 370, "duration": [119, 130, 133]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [137, 140, 141]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 11717, "duration": [424, 447, 455]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 25282, "duration": [1362, 1377, 1459]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 210, "duration": [3294, 3326, 3336]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 909593, "duration": [6424, 6661, 7091]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 350, "duration": [293, 304, 310]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 141, "duration": [373, 374, 378]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 758590, "duration": [5708, 5811, 6293]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1273, "duration": [274, 298, 308]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [497, 506, 512]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 349637, "duration": [2844, 3003, 3007]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 220, "duration": [76, 81, 104]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 206, "duration": [95, 97, 97]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 7958, "duration": [213, 213, 220]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 30970, "duration": [3331, 3403, 3525]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 272, "duration": [5211, 5414, 5446]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 446943, "duration": [3472, 3481, 3661]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 112, "duration": [350, 354, 355]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [335, 339, 346]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 51473, "duration": [1331, 1349, 1461]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1763, "duration": [582, 590, 608]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [596, 641, 661]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 266528, "duration": [2258, 2267, 2289]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5003, "duration": [1788, 1846, 1908]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [1905, 1929, 1960]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980371, "duration": [27572, 28474, 28790]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [176, 180, 182]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 158, "duration": [219, 225, 225]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 21196, "duration": [410, 411, 461]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5094, "duration": [1728, 1895, 1902]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 419, "duration": [2122, 2179, 2278]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169609, "duration": [28619, 30261, 30416]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1216, "duration": [266, 271, 280]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 50, "duration": [380, 407, 409]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 196687, "duration": [1822, 1826, 1854]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 56, "duration": [35, 35, 43]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 53, "duration": [54, 56, 57]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 144768, "duration": [1452, 1525, 1968]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [247, 255, 279]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [262, 265, 268]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 727128, "duration": [5523, 5638, 5881]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 176, "duration": [202, 208, 221]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [418, 424, 428]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168609, "duration": [28394, 30512, 30540]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 521, "duration": [59, 61, 96]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 516, "duration": [101, 104, 146]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 11727, "duration": [280, 285, 417]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [216, 223, 226]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [306, 327, 353]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 100754, "duration": [1236, 1259, 1279]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [32, 32, 66]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 35, "duration": [35, 36, 39]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 63, "duration": [36, 36, 37]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 425, "duration": [754, 761, 771]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [834, 836, 842]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 279042, "duration": [2725, 2736, 2934]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 757, "duration": [648, 664, 702]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [738, 738, 749]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 292410, "duration": [2579, 2696, 2805]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 74, "duration": [38, 39, 41]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 52, "duration": [63, 63, 64]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1372, "duration": [112, 132, 186]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1159, "duration": [241, 244, 251]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 120, "duration": [342, 355, 428]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 146946, "duration": [1470, 1507, 1706]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6552, "duration": [361, 434, 439]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 6339, "duration": [611, 611, 624]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 63852, "duration": [919, 954, 1024]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1950, "duration": [490, 525, 552]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [616, 646, 649]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 67801, "duration": [1334, 1343, 1377]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2956, "duration": [653, 658, 666]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [877, 880, 894]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 172197, "duration": [1818, 1883, 2409]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1145, "duration": [510, 526, 649]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 133, "duration": [616, 628, 652]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 139608, "duration": [1487, 1491, 1696]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 330, "duration": [128, 131, 135]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [177, 180, 184]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 75177, "duration": [1282, 1388, 1490]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 341, "duration": [178, 189, 210]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [186, 193, 197]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 65937, "duration": [1174, 1202, 1227]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 983, "duration": [706, 745, 770]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 603, "duration": [1659, 1661, 1891]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269185, "duration": [39024, 40865, 40996]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1514, "duration": [688, 697, 731]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 44, "duration": [954, 956, 958]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 3107761, "duration": [21747, 22735, 22878]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 240, "duration": [261, 262, 274]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 27, "duration": [490, 514, 552]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168301, "duration": [28497, 29952, 30117]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 14, "duration": [43, 43, 45]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [47, 47, 55]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 16308, "duration": [345, 393, 481]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2705, "duration": [947, 966, 1177]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 26, "duration": [1118, 1138, 1250]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 651176, "duration": [4942, 4943, 5004]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 125, "duration": [136, 138, 154]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [156, 157, 163]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 38349, "duration": [631, 647, 694]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 606, "duration": [97, 99, 116]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 348, "duration": [138, 142, 156]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 8849, "duration": [311, 341, 361]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2771, "duration": [1289, 1296, 1307]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 393, "duration": [1694, 1742, 1759]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 337147, "duration": [2860, 2955, 3002]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 537, "duration": [182, 183, 186]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [266, 266, 287]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 90307, "duration": [1227, 1247, 1374]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 94, "duration": [72, 81, 84]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 69, "duration": [91, 95, 99]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 53641, "duration": [895, 919, 941]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2723, "duration": [565, 582, 604]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 638, "duration": [832, 839, 856]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 132261, "duration": [1778, 1853, 1889]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 489, "duration": [394, 398, 414]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [455, 457, 465]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 75263, "duration": [1050, 1073, 1182]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9989, "duration": [1116, 1149, 1350]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1673, 1774, 1807]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 178211, "duration": [1790, 1813, 1850]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1195, "duration": [268, 272, 284]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [465, 475, 491]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 477882, "duration": [3662, 3838, 3877]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 834, "duration": [270, 284, 293]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [329, 333, 334]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 68527, "duration": [971, 1064, 1254]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 424, "duration": [195, 221, 223]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 39, "duration": [259, 269, 292]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 294537, "duration": [2446, 2464, 2543]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 400, "duration": [473, 488, 492]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 137, "duration": [540, 552, 554]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 555477, "duration": [4367, 4429, 4624]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10926, "duration": [658, 659, 667]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 4589, "duration": [1900, 1931, 2068]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 962508, "duration": [6712, 6731, 6770]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 44, "duration": [107, 109, 113]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [151, 154, 180]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 22177, "duration": [572, 620, 840]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1249, "duration": [203, 214, 217]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 55, "duration": [303, 307, 320]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 183559, "duration": [1738, 1769, 2089]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6482, "duration": [1154, 1157, 1165]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2037, "duration": [1848, 1852, 1865]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 318670, "duration": [2717, 2769, 2771]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3112, "duration": [1124, 1150, 1160]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1533, 1542, 1551]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3802855, "duration": [26430, 27982, 27995]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 2192, "duration": [1258, 1403, 1410]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 163, "duration": [1535, 1605, 1619]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 254583, "duration": [2589, 2689, 2759]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 76, "duration": [95, 102, 103]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [107, 109, 119]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 162351, "duration": [1798, 2124, 2368]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 571, "duration": [468, 484, 492]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [572, 584, 588]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 620188, "duration": [4714, 4981, 4983]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 415, "duration": [76, 82, 85]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 117, "duration": [146, 152, 152]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 91128, "duration": [1178, 1238, 1286]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 739, "duration": [138, 142, 175]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 298, "duration": [158, 168, 171]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 9778, "duration": [281, 284, 308]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 301, "duration": [166, 169, 176]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 24, "duration": [205, 207, 207]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 140156, "duration": [1477, 1525, 1662]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 31324, "duration": [1800, 1876, 1982]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8245, "duration": [10876, 10912, 10975]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168226, "duration": [29080, 29222, 29481]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 381, "duration": [91, 91, 91]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 341, "duration": [120, 144, 146]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 11347, "duration": [411, 440, 445]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1929, "duration": [294, 347, 384]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 34, "duration": [546, 554, 563]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 485132, "duration": [3673, 3774, 3793]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 293, "duration": [309, 312, 357]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 251, "duration": [584, 614, 618]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3800825, "duration": [26623, 28043, 28346]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 40, "duration": [47, 48, 53]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [87, 89, 105]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 4010, "duration": [159, 161, 202]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1002, "duration": [401, 407, 427]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [379, 402, 404]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 57181, "duration": [857, 941, 978]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11227, "duration": [2211, 2214, 2516]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [2849, 2888, 2931]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 324999, "duration": [2786, 2893, 2928]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2871, "duration": [1304, 1327, 1448]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 48, "duration": [1393, 1411, 1520]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1012784, "duration": [7385, 7394, 7661]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1241, "duration": [489, 490, 630]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 443, "duration": [911, 931, 990]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806173, "duration": [26975, 28702, 28877]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8686, "duration": [2069, 2084, 2211]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [2875, 2877, 3043]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168904, "duration": [28593, 29377, 29520]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2488, "duration": [339, 344, 465]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1598, "duration": [564, 576, 583]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 121970, "duration": [1396, 1414, 1424]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1791, "duration": [482, 493, 502]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [522, 527, 534]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 152743, "duration": [1529, 1538, 1549]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [114, 122, 133]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [142, 143, 161]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 126726, "duration": [1484, 1572, 1740]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9823, "duration": [1802, 1891, 1923]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1790, "duration": [2036, 2197, 2244]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 212022, "duration": [1997, 2007, 2046]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 373, "duration": [97, 99, 103]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [159, 163, 196]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 148462, "duration": [1500, 1502, 1517]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 97, "duration": [75, 76, 78]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [91, 93, 99]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 7393, "duration": [211, 219, 226]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3519, "duration": [534, 537, 663]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [800, 812, 815]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 355372, "duration": [2818, 2867, 2907]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7697, "duration": [1858, 1871, 1908]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 55, "duration": [2662, 2663, 2785]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 4015608, "duration": [28902, 29765, 29933]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 55, "duration": [79, 81, 83]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [84, 84, 88]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 11520, "duration": [442, 451, 469]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2703, "duration": [1024, 1086, 1322]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [1259, 1277, 1336]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980777, "duration": [27415, 28453, 28618]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 66, "duration": [49, 53, 55]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [70, 75, 77]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 178640, "duration": [1707, 1738, 1841]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 136, "duration": [184, 192, 207]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 25, "duration": [212, 215, 218]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748828, "duration": [5902, 6065, 6097]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 47, "duration": [60, 74, 79]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [52, 52, 56]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 3783, "duration": [234, 292, 295]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14379, "duration": [983, 985, 1100]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8754, "duration": [1761, 1773, 2065]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 273351, "duration": [2312, 2324, 2349]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65, "duration": [79, 86, 86]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [86, 91, 125]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 29487, "duration": [529, 548, 580]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 426, "duration": [240, 245, 265]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 52, "duration": [251, 254, 281]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 463674, "duration": [3862, 4097, 4200]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 128, "duration": [212, 223, 228]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [247, 254, 260]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 687518, "duration": [5054, 5134, 5157]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 88, "duration": [207, 208, 208]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 33, "duration": [184, 186, 190]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 638451, "duration": [4797, 4920, 5034]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 339, "duration": [497, 500, 506]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 58, "duration": [612, 614, 710]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1424119, "duration": [11871, 12027, 12034]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 114, "duration": [98, 101, 108]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 42, "duration": [110, 113, 116]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 16349, "duration": [385, 425, 587]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 129, "duration": [47, 47, 47]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 122, "duration": [70, 70, 116]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 16639, "duration": [587, 589, 624]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5942, "duration": [1671, 1698, 1841]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 20, "duration": [2065, 2079, 2079]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1004290, "duration": [7869, 7959, 7965]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 9831, "duration": [2442, 2479, 2531]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 5175, "duration": [4272, 4298, 4305]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 3815913, "duration": [26262, 27289, 27413]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 101, "duration": [311, 323, 323]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 26, "duration": [340, 365, 368]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 621002, "duration": [4784, 4821, 4913]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 42326, "duration": [3591, 3661, 3672]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 105, "duration": [6195, 6303, 6420]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 506318, "duration": [3887, 3915, 4062]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 110, "duration": [75, 82, 91]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 46, "duration": [74, 76, 77]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7141, "duration": [204, 285, 294]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3633, "duration": [515, 534, 566]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [780, 786, 789]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 341994, "duration": [2709, 2797, 2837]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 861, "duration": [255, 258, 347]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 98, "duration": [359, 360, 363]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 236925, "duration": [2146, 2237, 2263]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2784, "duration": [281, 294, 377]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 853, "duration": [573, 578, 591]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 254858, "duration": [2443, 2545, 2639]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 218, "duration": [75, 80, 83]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [90, 92, 94]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 7833, "duration": [206, 226, 255]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4083, "duration": [1085, 1190, 1396]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 877, "duration": [2037, 2058, 2244]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 4171625, "duration": [29379, 30573, 30885]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2520, "duration": [230, 240, 285]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1404, "duration": [498, 514, 563]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 138987, "duration": [1503, 1579, 1611]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [252, 256, 262]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 28, "duration": [295, 295, 296]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1078395, "duration": [7720, 8088, 8149]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 92527, "duration": [9087, 9260, 9277]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 95, "duration": [15210, 15347, 15443]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4270464, "duration": [40939, 42894, 43140]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 60, "duration": [52, 52, 52]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [56, 57, 60]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 7172, "duration": [194, 198, 203]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1015, "duration": [215, 220, 229]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 86, "duration": [364, 366, 367]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 200981, "duration": [1863, 1909, 1920]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4474, "duration": [495, 555, 629]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3236, "duration": [870, 925, 961]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 360654, "duration": [2854, 2861, 2949]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 980, "duration": [305, 306, 406]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 784, "duration": [751, 782, 786]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168065, "duration": [27996, 29260, 29496]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 284, "duration": [201, 215, 220]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 214, "duration": [267, 278, 302]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 126816, "duration": [1448, 1459, 1465]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 83, "duration": [109, 110, 120]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 16, "duration": [126, 134, 135]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 55586, "duration": [1053, 1101, 1134]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 58, "duration": [33, 41, 44]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 54, "duration": [50, 52, 60]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 15162, "duration": [303, 315, 379]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 201, "duration": [121, 149, 150]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [125, 136, 141]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 170597, "duration": [1666, 1676, 1682]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 434, "duration": [204, 206, 226]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [243, 244, 273]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 26300, "duration": [499, 520, 721]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3258, "duration": [1457, 1478, 1491]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 244, "duration": [1785, 1798, 1856]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 467039, "duration": [3783, 3861, 3956]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 121, "duration": [978, 1041, 1050]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 20, "duration": [1005, 1057, 1065]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 635117, "duration": [4977, 5044, 5132]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4708, "duration": [663, 670, 690]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1322, "duration": [1119, 1127, 1142]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 487676, "duration": [3693, 3832, 3888]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3919, "duration": [912, 953, 1001]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1515, "duration": [1170, 1198, 1217]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 144566, "duration": [1574, 1669, 1819]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 234, "duration": [171, 182, 185]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 151, "duration": [229, 232, 256]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 192019, "duration": [1792, 1828, 1845]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8481, "duration": [4138, 4269, 4287]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 82, "duration": [5101, 5101, 5108]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 778663, "duration": [5769, 5802, 5880]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 24, "duration": [122, 154, 157]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 19, "duration": [131, 138, 140]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 231009, "duration": [2108, 2130, 2160]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2050, "duration": [282, 311, 321]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 314, "duration": [440, 444, 445]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 89056, "duration": [1118, 1121, 1148]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 319, "duration": [146, 151, 152]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [181, 183, 186]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 41550, "duration": [716, 749, 815]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1982, "duration": [325, 337, 342]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [505, 539, 560]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 126649, "duration": [1390, 1430, 1453]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 652, "duration": [181, 184, 204]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [262, 262, 291]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 148177, "duration": [1529, 1552, 1564]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 372, "duration": [196, 198, 203]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 115, "duration": [228, 231, 236]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 27089, "duration": [527, 541, 644]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 169, "duration": [192, 194, 197]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 65, "duration": [236, 245, 264]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 536978, "duration": [4139, 4429, 4721]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 16193, "duration": [1732, 1821, 1942]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2840, "duration": [3400, 3659, 3665]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 686232, "duration": [6148, 6216, 7485]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 21, "duration": [79, 90, 104]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [88, 90, 91]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748534, "duration": [6001, 6074, 6267]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2570, "duration": [466, 486, 743]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 33, "duration": [680, 690, 714]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 155369, "duration": [1661, 1713, 2077]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6165, "duration": [898, 920, 956]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 255, "duration": [1285, 1298, 1305]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 126586, "duration": [1474, 1571, 1601]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 425, "duration": [211, 211, 213]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [244, 254, 257]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 36113, "duration": [624, 637, 758]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 237, "duration": [555, 571, 574]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 37, "duration": [705, 725, 743]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3837687, "duration": [29640, 30872, 30946]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 660, "duration": [169040, 170270, 170409]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 79, "duration": [181, 202, 205]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 4168064, "duration": [39812, 41874, 42070]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 748535, "duration": [11112, 11210, 11290]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 79, "duration": [211414, 217380, 218200]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 4168064, "duration": [258593, 259510, 267284]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1950439, "duration": [237618, 239222, 240156]}], "tantivy-0.19": [{"query": "the", "tags": ["term"], "count": 4168064, "duration": [16712, 17022, 18496]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 79, "duration": [128, 128, 150]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [131, 136, 138]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 15456, "duration": [301, 317, 353]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 195, "duration": [61, 65, 74]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 110, "duration": [85, 88, 93]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 4173, "duration": [181, 191, 269]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 856, "duration": [133, 142, 148]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 112, "duration": [189, 197, 201]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 104150, "duration": [1611, 1742, 1744]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [140, 145, 146]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [202, 203, 206]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 54291, "duration": [1052, 1061, 1580]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 266, "duration": [490, 503, 505]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 18, "duration": [519, 527, 548]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 195119, "duration": [1928, 2070, 2285]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2173, "duration": [938, 970, 977]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [870, 890, 917]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 167943, "duration": [1672, 1805, 1955]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14165, "duration": [1348, 1509, 1794]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [2332, 2363, 2382]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 612165, "duration": [4431, 4873, 5300]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 85, "duration": [57, 57, 57]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 56, "duration": [69, 71, 79]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 7747, "duration": [224, 264, 275]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 693, "duration": [597, 599, 658]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [662, 681, 708]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 397912, "duration": [3403, 3507, 3808]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7346, "duration": [1784, 1796, 2846]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 201, "duration": [2474, 2588, 2670]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 4173861, "duration": [28451, 28876, 29043]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4496, "duration": [385, 418, 584]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 307, "duration": [751, 758, 820]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 454176, "duration": [3434, 3629, 3712]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 161, "duration": [253, 268, 273]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [261, 269, 386]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 336807, "duration": [2826, 3059, 3070]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1055, "duration": [242, 245, 274]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 177, "duration": [334, 345, 346]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 61359, "duration": [994, 1073, 1533]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3760, "duration": [764, 945, 1010]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 252, "duration": [1086, 1096, 1153]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 151582, "duration": [1611, 1626, 1945]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 569, "duration": [321, 333, 345]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [371, 382, 384]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 86776, "duration": [1194, 1322, 1432]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [89, 141, 268]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [93, 122, 123]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 249193, "duration": [2252, 2283, 2469]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 81, "duration": [136, 138, 147]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [145, 149, 164]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 20969, "duration": [407, 498, 550]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4617, "duration": [913, 923, 1152]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 141, "duration": [1266, 1283, 1333]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 194083, "duration": [1904, 1942, 2574]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 107, "duration": [117, 126, 127]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 64, "duration": [158, 163, 179]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1192562, "duration": [7934, 8018, 8636]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1239, "duration": [624, 635, 664]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 566, "duration": [1031, 1076, 1142]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 510849, "duration": [3721, 3887, 3914]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7014, "duration": [1444, 1510, 1572]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 329, "duration": [1797, 1801, 1828]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 170364, "duration": [1728, 1781, 1908]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48653, "duration": [1186, 1214, 1235]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 44879, "duration": [3996, 4046, 4320]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 151349, "duration": [1709, 1716, 1969]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 137, "duration": [249, 265, 320]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 53, "duration": [268, 270, 271]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 95654, "duration": [1368, 1671, 2235]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7387, "duration": [981, 1090, 1151]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 302, "duration": [1497, 1538, 1550]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 260381, "duration": [2438, 2515, 2524]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5040, "duration": [909, 938, 1067]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 70, "duration": [1178, 1195, 1207]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 217122, "duration": [2156, 2247, 2497]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1917, "duration": [722, 731, 738]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 94, "duration": [934, 988, 997]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 584269, "duration": [4430, 4452, 5466]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 733, "duration": [368, 448, 495]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 76, "duration": [399, 403, 411]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 46081, "duration": [906, 941, 1358]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 421, "duration": [667, 707, 898]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 61, "duration": [713, 751, 833]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 401520, "duration": [3388, 3394, 3522]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1187, "duration": [180, 184, 231]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [341, 342, 458]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 160168, "duration": [1634, 1688, 1799]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 475, "duration": [717, 731, 735]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [776, 798, 836]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 402259, "duration": [3352, 3594, 6584]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 604, "duration": [299, 301, 326]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [350, 364, 375]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 99117, "duration": [1262, 1344, 1352]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65770, "duration": [3308, 3399, 3474]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [7522, 7550, 7654]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 825043, "duration": [6009, 6321, 6386]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6146, "duration": [1050, 1150, 1490]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1517, 1537, 1673]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 298137, "duration": [2490, 2508, 2539]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 13581, "duration": [1316, 1329, 1385]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1894, "duration": [2481, 2499, 2518]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 229696, "duration": [2198, 2216, 2233]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 314, "duration": [76, 82, 82]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 288, "duration": [102, 107, 108]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 10040, "duration": [303, 330, 355]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6957, "duration": [1813, 1820, 1918]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [2132, 2220, 2220]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 702120, "duration": [5010, 5083, 5281]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13996, "duration": [3446, 3505, 4389]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [4567, 4607, 4698]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1251867, "duration": [9036, 9089, 9110]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4268, "duration": [1343, 1359, 1408]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 440, "duration": [1891, 1908, 1918]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 909970, "duration": [6459, 6463, 6843]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 23, "duration": [52, 54, 60]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [50, 51, 59]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 10684, "duration": [262, 273, 302]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 157, "duration": [235, 247, 251]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [241, 251, 276]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 35325, "duration": [684, 735, 838]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1316, "duration": [745, 761, 768]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1156, "duration": [1991, 2180, 2271]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269120, "duration": [38083, 38378, 39159]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 43372, "duration": [4110, 4220, 5798]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15089, "duration": [11868, 12045, 14150]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806414, "duration": [25333, 26922, 27514]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 239, "duration": [110, 111, 177]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 124, "duration": [157, 159, 161]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 333268, "duration": [2695, 2720, 2807]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 618, "duration": [262, 265, 295]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 168, "duration": [379, 380, 400]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970283, "duration": [6974, 7120, 7400]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 44521, "duration": [4479, 4732, 4925]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 4100, "duration": [9189, 9383, 9441]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 3808757, "duration": [26804, 27181, 27235]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 960, "duration": [340, 357, 376]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 244, "duration": [460, 476, 481]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 134727, "duration": [1520, 1640, 1870]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1490, "duration": [723, 776, 794]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [843, 858, 896]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 106587, "duration": [1638, 1690, 2103]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3574, "duration": [1107, 1155, 1177]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1021, "duration": [1202, 1240, 1388]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 146818, "duration": [1695, 1754, 2494]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 20, "duration": [38, 63, 73]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [45, 46, 52]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 82708, "duration": [1209, 1222, 1364]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [53, 59, 80]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [46, 48, 52]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1791, "duration": [97, 110, 132]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 3397, "duration": [1626, 2025, 2246]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 12, "duration": [1860, 1933, 1986]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4053765, "duration": [34013, 34114, 34296]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 429, "duration": [97, 104, 106]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 41, "duration": [161, 164, 167]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 130601, "duration": [1438, 1496, 1529]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2860, "duration": [486, 490, 524]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 828, "duration": [507, 514, 549]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 54702, "duration": [1062, 1072, 1094]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10899, "duration": [2255, 2279, 2366]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 922, "duration": [3266, 3332, 3568]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806986, "duration": [25498, 26731, 29025]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [107, 109, 168]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [116, 117, 138]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 11759, "duration": [264, 270, 279]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 443, "duration": [315, 319, 488]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [432, 443, 487]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798567, "duration": [23766, 24720, 24906]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1994, "duration": [1082, 1198, 2130]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1444, "duration": [2405, 2455, 2646]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269267, "duration": [36200, 37856, 39867]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 418, "duration": [344, 351, 423]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 224, "duration": [536, 575, 620]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798846, "duration": [25263, 27260, 27410]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10806, "duration": [815, 1091, 1473]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 831, "duration": [1585, 1605, 1631]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 401948, "duration": [3124, 3349, 3440]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 90, "duration": [77, 78, 80]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [73, 75, 76]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7731, "duration": [223, 276, 280]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3336, "duration": [748, 859, 903]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [905, 938, 1053]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 237265, "duration": [2127, 2247, 2598]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48, "duration": [53, 53, 90]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [54, 70, 71]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 5320, "duration": [158, 181, 192]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1751, "duration": [222, 238, 292]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1335, "duration": [466, 481, 497]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 79894, "duration": [1141, 1179, 1491]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 19247, "duration": [2530, 2713, 3099]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 626, "duration": [3306, 3374, 3472]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 301066, "duration": [2414, 2501, 3118]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [79, 81, 89]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 81, "duration": [111, 131, 141]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 21776, "duration": [429, 623, 653]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3980, "duration": [181, 196, 209]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3891, "duration": [421, 460, 506]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 43534, "duration": [865, 931, 1120]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 109, "duration": [143, 144, 145]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 97, "duration": [161, 165, 178]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 47760, "duration": [864, 1182, 1228]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 61, "duration": [86, 89, 89]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [108, 114, 143]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 14465, "duration": [348, 470, 537]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2638, "duration": [586, 650, 678]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 60, "duration": [732, 767, 850]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 301693, "duration": [2521, 2588, 4394]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 12, "duration": [77, 78, 83]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [50, 50, 57]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 57879, "duration": [971, 1020, 1066]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1238, "duration": [305, 344, 518]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 391, "duration": [558, 598, 599]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970192, "duration": [7187, 7622, 8152]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 415, "duration": [702, 782, 818]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [961, 970, 978]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4316960, "duration": [38830, 40752, 40958]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3896, "duration": [988, 1037, 1061]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1351, 1360, 1374]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 153516, "duration": [1829, 1859, 2097]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 896, "duration": [144, 150, 181]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 475, "duration": [228, 229, 234]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 36406, "duration": [855, 872, 1181]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1044, "duration": [332, 341, 347]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 74, "duration": [425, 432, 438]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 52377, "duration": [938, 959, 1287]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1550, "duration": [282, 289, 527]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 131, "duration": [405, 462, 500]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 150258, "duration": [1700, 1705, 1723]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1246, "duration": [420, 445, 510]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 235, "duration": [410, 422, 432]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 66350, "duration": [1102, 1160, 1361]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5054, "duration": [722, 923, 1160]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [986, 994, 1040]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 310479, "duration": [2651, 2652, 2767]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 24403, "duration": [1655, 1957, 1963]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12115, "duration": [3884, 4173, 4306]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 503137, "duration": [4091, 4422, 4867]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2540, "duration": [407, 451, 491]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 59, "duration": [639, 679, 761]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 200883, "duration": [2252, 2267, 2274]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 96618, "duration": [7875, 7890, 7926]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1140, "duration": [14505, 14526, 14718]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1038231, "duration": [7574, 7644, 7776]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5964, "duration": [1277, 1294, 1448]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 256, "duration": [1814, 1816, 1818]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 402607, "duration": [3143, 3222, 3310]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 142, "duration": [40, 48, 75]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 142, "duration": [50, 51, 51]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 10007, "duration": [317, 376, 610]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2001, "duration": [919, 942, 990]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [1167, 1193, 1206]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168649, "duration": [28566, 29985, 30419]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2315, "duration": [301, 318, 359]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [493, 499, 506]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 51200, "duration": [841, 844, 904]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6825, "duration": [813, 951, 1000]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2155, "duration": [1257, 1297, 1301]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 114383, "duration": [1360, 1370, 1417]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 47, "duration": [384, 384, 396]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 33, "duration": [580, 630, 634]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4068900, "duration": [37867, 38651, 40560]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4125, "duration": [675, 710, 736]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [999, 1024, 1025]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 272980, "duration": [2339, 2342, 2478]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4710, "duration": [409, 506, 632]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2046, "duration": [710, 721, 764]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 193597, "duration": [1853, 1930, 2051]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8204, "duration": [2473, 2546, 2790]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [3265, 3294, 3303]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 854242, "duration": [6224, 6437, 6867]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1608, "duration": [429, 432, 434]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [532, 532, 534]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 66857, "duration": [1244, 1351, 1637]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 328, "duration": [217, 230, 262]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 97, "duration": [236, 236, 320]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 32425, "duration": [847, 869, 964]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [50, 51, 56]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [54, 54, 55]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 39428, "duration": [1015, 1048, 1312]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10203, "duration": [1630, 1950, 2016]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [2413, 2468, 2540]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 2470107, "duration": [18449, 18560, 18715]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 55, "duration": [53, 56, 57]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 43, "duration": [63, 70, 81]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 58784, "duration": [965, 976, 1087]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 901, "duration": [238, 245, 257]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 213, "duration": [329, 339, 391]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 73481, "duration": [1069, 1209, 1512]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7776, "duration": [896, 1034, 1043]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3077, "duration": [1595, 1754, 1998]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 127400, "duration": [1613, 1614, 1779]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1282, "duration": [1117, 1171, 1215]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 31, "duration": [1545, 1607, 1611]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 961109, "duration": [7226, 7397, 7654]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 155, "duration": [84, 86, 104]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 45, "duration": [120, 124, 126]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 280642, "duration": [2505, 2508, 2548]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 51, "duration": [93, 94, 119]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 35, "duration": [109, 111, 138]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 102668, "duration": [1394, 1464, 1919]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1997, "duration": [445, 497, 513]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 93, "duration": [605, 666, 681]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 212065, "duration": [2052, 2070, 2197]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1613, "duration": [544, 556, 619]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [644, 656, 659]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 109701, "duration": [1459, 1528, 1656]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 593, "duration": [85, 87, 89]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 373, "duration": [123, 127, 138]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 32570, "duration": [642, 691, 1015]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 358, "duration": [105, 112, 116]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 89, "duration": [134, 139, 144]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 29690, "duration": [633, 686, 712]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [203, 219, 221]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [195, 198, 201]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 23089, "duration": [530, 589, 613]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7853, "duration": [1885, 1901, 1948]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 140, "duration": [2619, 2692, 2692]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169493, "duration": [28486, 30146, 32730]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 207, "duration": [62, 66, 68]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [117, 138, 150]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 8017, "duration": [204, 209, 228]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3053, "duration": [544, 552, 579]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 100, "duration": [770, 772, 813]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 132425, "duration": [1548, 1580, 1656]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 357, "duration": [105, 112, 127]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 328, "duration": [149, 156, 181]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 10614, "duration": [369, 394, 422]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 158, "duration": [213, 218, 221]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [155, 163, 164]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 22473, "duration": [580, 662, 672]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1927, "duration": [469, 609, 784]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 681, "duration": [597, 636, 646]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 88332, "duration": [1158, 1588, 2027]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 644, "duration": [157, 165, 186]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 73, "duration": [250, 258, 275]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 103711, "duration": [1645, 1670, 2117]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13480, "duration": [4164, 4283, 4462]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 969, "duration": [5199, 5199, 5316]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 918169, "duration": [6326, 6463, 6836]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 8141, "duration": [1029, 1037, 1394]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1488, 1616, 1751]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 375689, "duration": [2968, 2977, 3335]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 278, "duration": [393, 415, 439]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [421, 431, 449]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 212074, "duration": [1972, 2101, 2193]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 266, "duration": [142, 169, 178]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 135, "duration": [172, 173, 178]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 16569, "duration": [356, 362, 409]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 22, "duration": [56, 59, 60]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [57, 57, 59]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 6674, "duration": [265, 276, 297]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1329, "duration": [1134, 1170, 1220]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 42, "duration": [1246, 1256, 1621]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 281073, "duration": [2544, 2665, 2706]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 240, "duration": [155, 196, 207]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [175, 216, 237]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 38213, "duration": [996, 1058, 1082]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 867, "duration": [143, 148, 156]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [228, 245, 262]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 28879, "duration": [796, 865, 907]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 406, "duration": [123, 152, 341]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 318, "duration": [186, 190, 207]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 345824, "duration": [2724, 2730, 4133]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1913, "duration": [509, 533, 543]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 171, "duration": [618, 648, 672]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 70020, "duration": [1066, 1159, 1247]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 84, "duration": [52, 54, 65]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [57, 57, 72]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 10103, "duration": [221, 248, 358]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 444, "duration": [419, 430, 445]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [483, 486, 494]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 165540, "duration": [1958, 1975, 2032]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1457, "duration": [680, 682, 790]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 131, "duration": [1134, 1156, 1190]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 4174359, "duration": [26408, 28571, 30435]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11192, "duration": [1412, 1431, 1755]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [2368, 2378, 2380]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 264631, "duration": [2472, 2539, 2557]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 466, "duration": [306, 317, 332]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [342, 346, 351]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 55152, "duration": [1097, 1116, 1123]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1061, "duration": [1136, 1142, 1225]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 74, "duration": [1083, 1096, 1397]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 194085, "duration": [1993, 2076, 2283]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 164, "duration": [58, 58, 66]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 121, "duration": [80, 87, 93]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 12785, "duration": [348, 413, 484]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 290, "duration": [148, 158, 170]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 277, "duration": [244, 248, 271]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 352602, "duration": [2853, 3068, 3091]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1111, "duration": [135, 137, 189]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 963, "duration": [274, 283, 390]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 162074, "duration": [1825, 1905, 1985]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 608, "duration": [174, 192, 298]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 485, "duration": [260, 264, 282]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 231765, "duration": [2429, 2489, 2489]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 122, "duration": [162, 168, 173]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 10, "duration": [212, 216, 220]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 217412, "duration": [2267, 2320, 2333]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 118291, "duration": [3332, 3361, 3621]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21737, "duration": [36033, 37656, 41247]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168234, "duration": [26223, 27610, 29792]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 367, "duration": [219, 227, 229]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [249, 262, 323]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 33310, "duration": [646, 669, 735]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 192, "duration": [135, 136, 143]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [159, 159, 163]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 46274, "duration": [817, 1136, 1346]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 180, "duration": [131, 138, 140]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 143, "duration": [197, 200, 216]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 268624, "duration": [2209, 2356, 2431]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2130, "duration": [1310, 1423, 1752]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1548, 1599, 1604]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 2372213, "duration": [15790, 17034, 17456]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 248, "duration": [143, 143, 183]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 68, "duration": [149, 153, 155]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 47084, "duration": [1076, 1461, 1713]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [59, 70, 73]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 226, "duration": [88, 101, 102]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 4838, "duration": [219, 234, 414]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 78, "duration": [59, 69, 74]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [67, 69, 70]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 17211, "duration": [537, 577, 617]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1532, "duration": [541, 553, 610]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 173, "duration": [641, 656, 670]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 76229, "duration": [1161, 1199, 1275]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2422, "duration": [111, 112, 291]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2381, "duration": [257, 272, 444]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 6515, "duration": [210, 211, 276]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1633, "duration": [244, 263, 355]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 123, "duration": [391, 394, 427]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 73305, "duration": [1049, 1190, 1220]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4110, "duration": [1038, 1095, 1136]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 60, "duration": [1434, 1437, 1629]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 2315795, "duration": [17408, 17614, 18847]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [162, 232, 242]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [240, 277, 341]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 92901, "duration": [1225, 1385, 1499]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 131, "duration": [430, 445, 457]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [455, 462, 465]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 226887, "duration": [2545, 2645, 2804]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1539, "duration": [604, 607, 633]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 79, "duration": [793, 799, 815]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 322018, "duration": [2951, 3013, 3288]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1358, "duration": [459, 484, 518]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [569, 570, 577]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 68175, "duration": [1351, 1466, 1536]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 813, "duration": [299, 331, 353]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 67, "duration": [380, 385, 397]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 62207, "duration": [1057, 1240, 1786]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [88, 92, 154]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [70, 73, 97]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 33193, "duration": [577, 630, 905]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3401, "duration": [781, 788, 935]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 821, "duration": [954, 1006, 1015]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 134076, "duration": [1494, 1627, 1725]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2416, "duration": [556, 573, 634]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [733, 742, 751]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 105084, "duration": [1228, 1506, 1876]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 162, "duration": [165, 166, 168]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [415, 421, 436]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168064, "duration": [27640, 27791, 28184]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 361, "duration": [114, 124, 126]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [198, 199, 214]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 167104, "duration": [1828, 1909, 1974]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 679, "duration": [527, 579, 634]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [598, 602, 685]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 730213, "duration": [5299, 5356, 5878]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5744, "duration": [917, 953, 986]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [1313, 1349, 1359]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 222790, "duration": [2041, 2084, 2212]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 377, "duration": [506, 517, 536]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 16, "duration": [632, 644, 658]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 774500, "duration": [6047, 6591, 7234]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 639, "duration": [205, 211, 220]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [309, 316, 319]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 188645, "duration": [1992, 2079, 2290]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 138, "duration": [117, 118, 199]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [88, 94, 108]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 14092, "duration": [439, 442, 447]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5577, "duration": [1301, 1313, 1377]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [1617, 1667, 1690]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 310569, "duration": [2631, 2724, 2795]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 29, "duration": [46, 47, 50]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [47, 48, 48]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 14156, "duration": [393, 396, 444]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 144, "duration": [78, 87, 96]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [107, 108, 118]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 69112, "duration": [1056, 1156, 1571]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2936, "duration": [413, 437, 461]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 611, "duration": [653, 668, 673]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 192280, "duration": [1903, 2042, 2062]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9630, "duration": [952, 978, 1150]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 181, "duration": [1661, 1668, 1688]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 389360, "duration": [3029, 3034, 3771]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 490, "duration": [99, 110, 125]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 414, "duration": [163, 179, 333]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 11304, "duration": [433, 500, 517]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 431, "duration": [175, 181, 183]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 115, "duration": [282, 299, 302]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 308550, "duration": [2562, 2847, 2880]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6560, "duration": [1596, 1643, 1657]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 16, "duration": [2212, 2394, 4173]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 4014085, "duration": [26867, 28760, 30808]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1218, "duration": [347, 371, 417]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [423, 431, 450]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 119020, "duration": [1413, 1697, 1824]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 531, "duration": [333, 340, 490]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 82, "duration": [368, 371, 404]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 43329, "duration": [989, 1030, 1179]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2111, "duration": [480, 523, 559]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [635, 666, 666]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 159993, "duration": [1709, 1828, 2599]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 370, "duration": [124, 147, 160]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [141, 144, 150]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 11717, "duration": [292, 427, 460]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 25282, "duration": [1416, 1465, 1728]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 210, "duration": [3350, 3401, 3408]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 909593, "duration": [6073, 6122, 6827]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 350, "duration": [290, 302, 406]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 141, "duration": [367, 375, 378]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 758590, "duration": [5373, 5553, 5630]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1273, "duration": [283, 285, 302]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [487, 509, 556]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 349637, "duration": [2800, 3052, 3366]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 220, "duration": [82, 84, 93]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 206, "duration": [105, 117, 120]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 7958, "duration": [262, 332, 362]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 30970, "duration": [3372, 3380, 3609]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 272, "duration": [5161, 5441, 5534]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 446943, "duration": [3475, 3555, 3689]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 112, "duration": [344, 344, 377]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [343, 344, 346]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 51473, "duration": [1285, 1290, 1306]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1763, "duration": [573, 643, 705]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [627, 640, 729]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 266528, "duration": [2268, 2321, 2392]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5003, "duration": [1841, 1900, 1968]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [1934, 1937, 2038]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980371, "duration": [26030, 26184, 26631]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [186, 192, 227]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 158, "duration": [224, 225, 249]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 21196, "duration": [393, 418, 449]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5094, "duration": [1648, 1894, 1917]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 419, "duration": [2286, 2332, 2474]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169609, "duration": [26081, 27654, 29545]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1216, "duration": [273, 284, 287]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 50, "duration": [397, 405, 416]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 196687, "duration": [1831, 1905, 1941]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 56, "duration": [36, 37, 37]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 53, "duration": [56, 70, 90]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 144768, "duration": [1500, 1582, 1630]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [254, 273, 295]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [266, 276, 281]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 727128, "duration": [5395, 5402, 5455]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 176, "duration": [208, 213, 223]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [411, 427, 439]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168609, "duration": [25808, 27744, 30498]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 521, "duration": [62, 66, 69]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 516, "duration": [95, 96, 107]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 11727, "duration": [324, 398, 402]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [212, 220, 238]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [304, 312, 350]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 100754, "duration": [1223, 1569, 1729]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [36, 41, 42]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 35, "duration": [34, 37, 55]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 63, "duration": [42, 44, 47]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 425, "duration": [783, 798, 810]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [827, 832, 847]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 279042, "duration": [2608, 2648, 2885]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 757, "duration": [659, 671, 709]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [730, 749, 773]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 292410, "duration": [2716, 2865, 3129]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 74, "duration": [39, 43, 55]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 52, "duration": [49, 57, 66]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1372, "duration": [108, 114, 137]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1159, "duration": [243, 246, 272]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 120, "duration": [352, 360, 365]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 146946, "duration": [1539, 1579, 1585]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6552, "duration": [433, 487, 667]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 6339, "duration": [644, 675, 704]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 63852, "duration": [965, 1025, 1216]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1950, "duration": [508, 560, 720]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [630, 640, 650]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 67801, "duration": [1362, 1445, 1683]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2956, "duration": [649, 665, 800]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [883, 888, 901]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 172197, "duration": [1879, 1952, 2077]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1145, "duration": [507, 533, 550]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 133, "duration": [614, 620, 629]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 139608, "duration": [1618, 1633, 1749]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 330, "duration": [141, 149, 154]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [185, 186, 192]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 75177, "duration": [1352, 1397, 1532]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 341, "duration": [164, 182, 215]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [191, 195, 205]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 65937, "duration": [1130, 1214, 1877]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 983, "duration": [748, 808, 1149]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 603, "duration": [1679, 1691, 1852]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269185, "duration": [37760, 38344, 38998]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1514, "duration": [689, 735, 792]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 44, "duration": [923, 940, 957]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 3107761, "duration": [21259, 21644, 22919]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 240, "duration": [259, 273, 298]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 27, "duration": [494, 523, 626]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168301, "duration": [27498, 27980, 28069]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 14, "duration": [43, 44, 54]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [48, 49, 64]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 16308, "duration": [344, 354, 440]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2705, "duration": [909, 972, 1072]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 26, "duration": [1146, 1151, 1151]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 651176, "duration": [4785, 4820, 4884]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 125, "duration": [142, 150, 160]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [158, 160, 175]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 38349, "duration": [639, 641, 686]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 606, "duration": [96, 106, 135]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 348, "duration": [146, 149, 202]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 8849, "duration": [355, 358, 363]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2771, "duration": [1313, 1510, 1783]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 393, "duration": [1693, 1728, 1760]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 337147, "duration": [2953, 2975, 3272]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 537, "duration": [183, 188, 202]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [254, 257, 263]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 90307, "duration": [1240, 1334, 1375]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 94, "duration": [82, 87, 95]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 69, "duration": [97, 98, 99]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 53641, "duration": [1046, 1104, 1441]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2723, "duration": [579, 646, 662]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 638, "duration": [852, 852, 869]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 132261, "duration": [1784, 1822, 2375]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 489, "duration": [405, 407, 416]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [459, 468, 481]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 75263, "duration": [1114, 1176, 1668]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9989, "duration": [1167, 1172, 1479]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1674, 1775, 2459]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 178211, "duration": [1740, 1795, 1920]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1195, "duration": [275, 346, 366]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [485, 493, 520]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 477882, "duration": [3833, 3836, 4299]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 834, "duration": [273, 274, 291]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [327, 339, 356]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 68527, "duration": [960, 1095, 1342]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 424, "duration": [208, 209, 216]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 39, "duration": [312, 325, 351]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 294537, "duration": [2456, 2466, 3056]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 400, "duration": [488, 491, 500]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 137, "duration": [555, 555, 558]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 555477, "duration": [4108, 4342, 4461]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10926, "duration": [673, 695, 819]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 4589, "duration": [1875, 1950, 2441]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 962508, "duration": [6357, 6365, 6516]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 44, "duration": [116, 127, 138]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [154, 160, 196]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 22177, "duration": [536, 543, 606]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1249, "duration": [200, 206, 218]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 55, "duration": [303, 315, 317]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 183559, "duration": [1787, 1859, 1994]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6482, "duration": [1160, 1261, 1300]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2037, "duration": [1870, 1887, 2073]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 318670, "duration": [2740, 2770, 3167]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3112, "duration": [1212, 1224, 1258]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1541, 1652, 1655]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3802855, "duration": [24058, 26160, 29331]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 2192, "duration": [1300, 1403, 1434]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 163, "duration": [1509, 1628, 1787]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 254583, "duration": [2569, 2590, 2647]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 76, "duration": [91, 98, 135]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [107, 118, 148]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 162351, "duration": [2101, 2118, 2184]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 571, "duration": [472, 489, 512]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [585, 588, 597]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 620188, "duration": [4521, 4834, 5275]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 415, "duration": [77, 81, 100]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 117, "duration": [155, 167, 200]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 91128, "duration": [1206, 1227, 1576]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 739, "duration": [137, 143, 151]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 298, "duration": [165, 166, 173]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 9778, "duration": [344, 354, 389]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 301, "duration": [177, 193, 194]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 24, "duration": [200, 203, 209]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 140156, "duration": [1502, 1550, 1683]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 31324, "duration": [1761, 1904, 2184]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8245, "duration": [11164, 11435, 12463]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168226, "duration": [26753, 27261, 29452]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 381, "duration": [90, 93, 94]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 341, "duration": [124, 126, 223]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 11347, "duration": [460, 463, 668]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1929, "duration": [303, 312, 348]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 34, "duration": [543, 554, 789]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 485132, "duration": [3534, 3614, 3702]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 293, "duration": [315, 321, 324]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 251, "duration": [580, 603, 660]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3800825, "duration": [26558, 27190, 28371]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 40, "duration": [51, 56, 59]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [89, 93, 122]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 4010, "duration": [155, 171, 213]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1002, "duration": [342, 374, 437]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [388, 401, 520]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 57181, "duration": [930, 933, 2338]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11227, "duration": [2133, 2641, 2793]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [2870, 2915, 2923]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 324999, "duration": [2857, 2924, 3833]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2871, "duration": [1291, 1312, 1348]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 48, "duration": [1385, 1396, 1786]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1012784, "duration": [6947, 7012, 7659]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1241, "duration": [500, 521, 565]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 443, "duration": [923, 944, 950]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806173, "duration": [26597, 27039, 29018]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8686, "duration": [2116, 2129, 2804]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [2890, 2892, 3032]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168904, "duration": [26178, 27284, 27840]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2488, "duration": [347, 374, 499]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1598, "duration": [602, 607, 629]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 121970, "duration": [1415, 1564, 1618]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1791, "duration": [476, 530, 601]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [521, 528, 535]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 152743, "duration": [1685, 1692, 1728]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [113, 125, 155]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [139, 144, 144]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 126726, "duration": [1642, 1652, 2018]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9823, "duration": [1823, 1911, 1946]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1790, "duration": [2244, 2261, 2361]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 212022, "duration": [1931, 1977, 2204]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 373, "duration": [94, 103, 109]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [168, 183, 213]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 148462, "duration": [1573, 1578, 1678]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 97, "duration": [74, 79, 85]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [93, 98, 101]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 7393, "duration": [243, 252, 258]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3519, "duration": [528, 534, 576]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [808, 812, 875]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 355372, "duration": [2789, 2832, 2993]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7697, "duration": [1902, 1944, 2234]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 55, "duration": [2661, 2665, 2671]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 4015608, "duration": [26346, 27392, 28309]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 55, "duration": [82, 85, 86]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [85, 87, 130]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 11520, "duration": [472, 506, 531]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2703, "duration": [1048, 1064, 1226]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [1247, 1272, 1278]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980777, "duration": [25197, 25943, 28928]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 66, "duration": [51, 51, 53]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [84, 111, 119]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 178640, "duration": [1854, 1885, 1891]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 136, "duration": [185, 202, 214]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 25, "duration": [206, 211, 218]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748828, "duration": [5570, 6326, 6335]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 47, "duration": [60, 63, 65]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [52, 53, 55]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 3783, "duration": [232, 237, 264]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14379, "duration": [975, 1293, 1449]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8754, "duration": [1781, 1790, 1929]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 273351, "duration": [2348, 2449, 2494]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65, "duration": [87, 87, 90]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [89, 99, 116]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 29487, "duration": [512, 611, 647]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 426, "duration": [210, 248, 271]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 52, "duration": [248, 252, 260]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 463674, "duration": [4055, 4170, 4627]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 128, "duration": [233, 253, 313]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [255, 264, 290]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 687518, "duration": [4814, 4831, 6129]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 88, "duration": [210, 237, 282]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 33, "duration": [178, 189, 195]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 638451, "duration": [4693, 4945, 4949]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 339, "duration": [488, 489, 510]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 58, "duration": [604, 624, 642]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1424119, "duration": [11162, 11563, 11655]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 114, "duration": [99, 113, 134]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 42, "duration": [109, 111, 121]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 16349, "duration": [401, 471, 743]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 129, "duration": [47, 52, 53]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 122, "duration": [67, 102, 110]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 16639, "duration": [576, 606, 615]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5942, "duration": [1677, 1860, 2064]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 20, "duration": [2069, 2093, 2119]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1004290, "duration": [7714, 8218, 9496]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 9831, "duration": [2353, 2357, 2884]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 5175, "duration": [4303, 4327, 5505]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 3815913, "duration": [24956, 25994, 27919]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 101, "duration": [313, 320, 327]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 26, "duration": [362, 375, 405]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 621002, "duration": [4564, 4617, 4963]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 42326, "duration": [3678, 3855, 3868]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 105, "duration": [6437, 6478, 6659]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 506318, "duration": [3835, 3945, 4006]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 110, "duration": [75, 77, 96]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 46, "duration": [78, 81, 85]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7141, "duration": [206, 224, 479]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3633, "duration": [553, 556, 933]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [776, 780, 781]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 341994, "duration": [2801, 2865, 2884]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 861, "duration": [261, 267, 292]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 98, "duration": [362, 372, 375]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 236925, "duration": [2238, 2266, 2767]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2784, "duration": [265, 285, 299]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 853, "duration": [565, 598, 663]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 254858, "duration": [2430, 2570, 2653]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 218, "duration": [79, 80, 94]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [94, 95, 127]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 7833, "duration": [254, 281, 424]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4083, "duration": [1093, 1103, 1220]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 877, "duration": [2091, 2542, 2930]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 4171625, "duration": [28037, 28124, 28430]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2520, "duration": [267, 291, 297]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1404, "duration": [532, 554, 561]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 138987, "duration": [1546, 1863, 2031]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [255, 260, 262]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 28, "duration": [289, 307, 418]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1078395, "duration": [7507, 7854, 8181]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 92527, "duration": [9179, 9213, 10175]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 95, "duration": [15433, 15520, 16116]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4270464, "duration": [37675, 39937, 44332]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 60, "duration": [53, 56, 59]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [56, 60, 88]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 7172, "duration": [190, 197, 210]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1015, "duration": [217, 224, 227]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 86, "duration": [346, 352, 362]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 200981, "duration": [1891, 1896, 2116]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4474, "duration": [469, 563, 647]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3236, "duration": [953, 978, 1128]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 360654, "duration": [2864, 2973, 2993]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 980, "duration": [288, 306, 322]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 784, "duration": [751, 785, 968]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168065, "duration": [27521, 28290, 29458]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 284, "duration": [210, 214, 245]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 214, "duration": [266, 270, 279]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 126816, "duration": [1552, 1584, 1611]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 83, "duration": [115, 118, 120]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 16, "duration": [130, 132, 145]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 55586, "duration": [998, 1052, 1306]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 58, "duration": [35, 35, 37]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 54, "duration": [44, 53, 61]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 15162, "duration": [319, 329, 476]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 201, "duration": [125, 146, 164]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [123, 126, 131]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 170597, "duration": [1692, 1701, 2008]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 434, "duration": [207, 214, 218]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [250, 274, 280]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 26300, "duration": [560, 690, 869]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3258, "duration": [1483, 1488, 1571]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 244, "duration": [1793, 1816, 1842]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 467039, "duration": [3750, 3913, 4065]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 121, "duration": [997, 1055, 1451]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 20, "duration": [994, 1003, 1014]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 635117, "duration": [4745, 4885, 5197]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4708, "duration": [662, 678, 688]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1322, "duration": [1144, 1148, 1222]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 487676, "duration": [3595, 3784, 3932]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3919, "duration": [979, 1149, 1192]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1515, "duration": [1175, 1180, 1323]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 144566, "duration": [1654, 1811, 1825]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 234, "duration": [181, 185, 209]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 151, "duration": [230, 234, 239]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 192019, "duration": [1949, 1982, 2250]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8481, "duration": [4331, 4487, 4990]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 82, "duration": [5092, 5138, 5275]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 778663, "duration": [5613, 5635, 6125]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 24, "duration": [132, 139, 153]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 19, "duration": [130, 135, 137]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 231009, "duration": [2496, 2636, 3877]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2050, "duration": [294, 297, 335]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 314, "duration": [436, 451, 457]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 89056, "duration": [1147, 1173, 1301]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 319, "duration": [153, 157, 169]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [183, 185, 185]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 41550, "duration": [840, 867, 945]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1982, "duration": [325, 339, 360]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [529, 547, 565]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 126649, "duration": [1411, 1487, 1797]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 652, "duration": [183, 186, 220]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [260, 265, 282]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 148177, "duration": [1485, 1605, 1641]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 372, "duration": [203, 205, 211]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 115, "duration": [227, 239, 288]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 27089, "duration": [533, 794, 834]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 169, "duration": [200, 203, 212]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 65, "duration": [230, 231, 248]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 536978, "duration": [4246, 4327, 4362]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 16193, "duration": [1836, 1886, 2177]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2840, "duration": [3652, 3766, 4275]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 686232, "duration": [5791, 5895, 6538]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 21, "duration": [83, 88, 112]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [92, 94, 106]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748534, "duration": [5757, 6061, 6157]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2570, "duration": [484, 489, 547]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 33, "duration": [681, 722, 813]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 155369, "duration": [1820, 1852, 2018]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6165, "duration": [1004, 1010, 1079]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 255, "duration": [1284, 1286, 1292]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 126586, "duration": [1502, 1590, 1841]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 425, "duration": [211, 224, 263]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [247, 247, 251]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 36113, "duration": [645, 646, 772]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 237, "duration": [590, 593, 598]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 37, "duration": [728, 749, 756]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3837687, "duration": [28996, 29217, 29688]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 660, "duration": [176896, 181575, 182528]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 79, "duration": [189, 191, 196]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 4168064, "duration": [40345, 41341, 41657]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 748535, "duration": [11100, 11207, 11630]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 79, "duration": [220873, 224631, 229382]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 4168064, "duration": [272074, 273495, 274026]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1950439, "duration": [246228, 250372, 253009]}], "lucene-8.10.1": [{"query": "the", "tags": ["term"], "count": 4168064, "duration": [39770, 41127, 41353]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 79, "duration": [159, 169, 219]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [225, 270, 279]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 15456, "duration": [610, 906, 1043]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 195, "duration": [108, 117, 159]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 110, "duration": [127, 131, 180]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 4173, "duration": [361, 378, 456]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 856, "duration": [351, 366, 427]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 112, "duration": [433, 471, 481]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 104150, "duration": [1571, 1643, 1724]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [262, 290, 297]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [372, 415, 422]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 54291, "duration": [1460, 1508, 1689]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 266, "duration": [629, 638, 1091]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 18, "duration": [790, 811, 934]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 195119, "duration": [3795, 3797, 4028]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2173, "duration": [1122, 1144, 1175]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [1191, 1198, 1203]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 167943, "duration": [3099, 3140, 3446]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14165, "duration": [2649, 2875, 2974]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [3642, 4069, 4816]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 612165, "duration": [9966, 10012, 10258]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 85, "duration": [99, 111, 126]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 56, "duration": [160, 170, 192]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 7747, "duration": [399, 413, 511]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 693, "duration": [919, 999, 1168]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [1050, 1089, 1306]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 397912, "duration": [7006, 7089, 7749]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7346, "duration": [4028, 5110, 6278]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 201, "duration": [11546, 11595, 11616]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 4173861, "duration": [63645, 68365, 70628]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4496, "duration": [1083, 1083, 1086]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 307, "duration": [1657, 1675, 1717]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 454176, "duration": [7413, 7470, 8793]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 161, "duration": [608, 639, 664]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [632, 640, 685]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 336807, "duration": [5740, 5883, 7018]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1055, "duration": [336, 353, 436]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 177, "duration": [488, 500, 561]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 61359, "duration": [1689, 1747, 1915]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3760, "duration": [1076, 1112, 1560]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 252, "duration": [1401, 1426, 1642]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 151582, "duration": [2932, 2939, 3384]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 569, "duration": [413, 442, 573]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [518, 546, 584]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 86776, "duration": [1966, 2028, 2112]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [239, 313, 479]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [259, 298, 325]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 249193, "duration": [4474, 4600, 5242]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 81, "duration": [163, 175, 205]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [213, 215, 217]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 20969, "duration": [1253, 1600, 1651]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4617, "duration": [1366, 1402, 1413]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 141, "duration": [1664, 1696, 1775]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 194083, "duration": [3614, 3702, 3751]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 107, "duration": [259, 276, 321]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 64, "duration": [336, 344, 397]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1192562, "duration": [18351, 18488, 19578]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1239, "duration": [1182, 1182, 1209]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 566, "duration": [1992, 2027, 2055]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 510849, "duration": [8622, 8893, 9192]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7014, "duration": [1731, 1842, 1899]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 329, "duration": [2085, 2209, 2313]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 170364, "duration": [3209, 3287, 3313]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48653, "duration": [2122, 2165, 2232]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 44879, "duration": [4588, 4677, 4741]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 151349, "duration": [3277, 3295, 3747]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 137, "duration": [460, 492, 613]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 53, "duration": [423, 429, 444]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 95654, "duration": [2390, 2586, 3982]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7387, "duration": [1554, 1827, 2082]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 302, "duration": [2025, 2034, 2041]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 260381, "duration": [4632, 4664, 5278]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5040, "duration": [1331, 1403, 1822]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 70, "duration": [1543, 1575, 1597]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 217122, "duration": [3833, 3934, 4284]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1917, "duration": [1301, 1337, 1558]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 94, "duration": [1942, 1952, 2052]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 584269, "duration": [9650, 9747, 9926]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 733, "duration": [464, 465, 485]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 76, "duration": [480, 488, 724]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 46081, "duration": [1644, 1769, 2191]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 421, "duration": [908, 964, 1243]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 61, "duration": [1237, 1243, 1374]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 401520, "duration": [6723, 6882, 7197]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1187, "duration": [430, 431, 652]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [676, 697, 700]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 160168, "duration": [2625, 2627, 2664]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 475, "duration": [1006, 1036, 1168]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [1316, 1480, 1729]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 402259, "duration": [7100, 7131, 7211]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 604, "duration": [433, 463, 505]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [561, 570, 584]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 99117, "duration": [2033, 2129, 2412]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65770, "duration": [5059, 5061, 5176]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [8865, 9026, 9289]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 825043, "duration": [13118, 13570, 13572]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6146, "duration": [1469, 1677, 1705]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1999, 2040, 2092]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 298137, "duration": [5074, 5426, 5464]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 13581, "duration": [1896, 2007, 2241]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1894, "duration": [2925, 3016, 3358]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 229696, "duration": [4160, 4169, 4538]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 314, "duration": [147, 148, 167]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 288, "duration": [188, 188, 194]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 10040, "duration": [593, 723, 733]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6957, "duration": [2990, 3019, 3888]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [3812, 3827, 3862]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 702120, "duration": [11897, 12677, 13554]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13996, "duration": [5830, 5870, 6501]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [8639, 9062, 9523]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1251867, "duration": [22558, 23236, 23482]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4268, "duration": [2462, 2608, 2673]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 440, "duration": [3411, 3524, 4600]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 909970, "duration": [15317, 15419, 15623]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 23, "duration": [92, 104, 109]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [101, 120, 147]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 10684, "duration": [375, 575, 677]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 157, "duration": [281, 313, 350]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [329, 352, 725]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 35325, "duration": [1849, 2035, 2241]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1316, "duration": [2243, 2254, 2350]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1156, "duration": [4342, 4466, 4830]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269120, "duration": [101525, 103290, 105077]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 43372, "duration": [10263, 10386, 10577]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15089, "duration": [27607, 28231, 28489]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806414, "duration": [61221, 64520, 65082]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 239, "duration": [282, 290, 314]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 124, "duration": [367, 418, 421]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 333268, "duration": [3781, 3789, 3818]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 618, "duration": [703, 891, 956]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 168, "duration": [931, 950, 973]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970283, "duration": [17191, 17769, 17772]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 44521, "duration": [10771, 10968, 11096]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 4100, "duration": [25977, 26529, 27542]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 3808757, "duration": [61911, 62445, 64400]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 960, "duration": [482, 489, 876]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 244, "duration": [805, 815, 876]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 134727, "duration": [2659, 2781, 2784]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1490, "duration": [835, 836, 956]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [1107, 1119, 1142]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 106587, "duration": [2421, 2789, 3457]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3574, "duration": [1159, 1165, 1414]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1021, "duration": [1491, 1580, 1628]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 146818, "duration": [2872, 2995, 3018]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 20, "duration": [92, 97, 125]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [111, 128, 227]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 82708, "duration": [1035, 1043, 1153]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [121, 141, 264]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [81, 91, 147]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1791, "duration": [166, 176, 422]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 3397, "duration": [4109, 4111, 4505]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 12, "duration": [5401, 5468, 5472]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4053765, "duration": [81386, 85974, 89176]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 429, "duration": [251, 276, 306]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 41, "duration": [365, 373, 455]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 130601, "duration": [1735, 1749, 1756]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2860, "duration": [631, 679, 701]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 828, "duration": [672, 678, 738]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 54702, "duration": [1711, 1812, 1879]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10899, "duration": [5537, 5573, 6827]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 922, "duration": [11073, 11324, 11522]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806986, "duration": [61469, 61738, 64097]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [168, 213, 265]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [185, 203, 273]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 11759, "duration": [575, 764, 1264]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 443, "duration": [626, 799, 1370]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [964, 1005, 1018]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798567, "duration": [55825, 56261, 62388]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1994, "duration": [2761, 2788, 2845]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1444, "duration": [5794, 5831, 6388]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269267, "duration": [101436, 102204, 109221]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 418, "duration": [568, 570, 1050]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 224, "duration": [936, 942, 1194]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798846, "duration": [54635, 57277, 58049]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10806, "duration": [1709, 2001, 2222]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 831, "duration": [2531, 2535, 2914]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 401948, "duration": [6509, 6833, 6942]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 90, "duration": [126, 215, 271]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [126, 154, 191]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7731, "duration": [380, 392, 478]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3336, "duration": [967, 1038, 1169]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [1386, 1451, 1479]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 237265, "duration": [4065, 4254, 4268]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48, "duration": [97, 102, 109]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [139, 141, 254]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 5320, "duration": [240, 258, 384]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1751, "duration": [412, 437, 512]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1335, "duration": [694, 755, 829]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 79894, "duration": [1792, 1906, 2454]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 19247, "duration": [2956, 3112, 3168]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 626, "duration": [3728, 3824, 4013]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 301066, "duration": [5146, 5336, 7291]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [143, 147, 272]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 81, "duration": [234, 235, 284]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 21776, "duration": [922, 1003, 1363]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3980, "duration": [348, 379, 536]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3891, "duration": [708, 999, 1010]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 43534, "duration": [1299, 1481, 1485]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 109, "duration": [236, 295, 349]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 97, "duration": [297, 321, 337]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 47760, "duration": [1449, 1458, 1884]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 61, "duration": [138, 149, 241]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [197, 199, 243]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 14465, "duration": [766, 1016, 1838]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2638, "duration": [1170, 1196, 1213]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 60, "duration": [1321, 1342, 1345]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 301693, "duration": [4956, 5149, 5235]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 12, "duration": [194, 210, 255]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [122, 126, 154]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 57879, "duration": [1104, 1113, 1191]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1238, "duration": [976, 979, 990]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 391, "duration": [1441, 1453, 1510]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970192, "duration": [16691, 17537, 17893]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 415, "duration": [1494, 1573, 1702]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [1551, 1578, 1920]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4316960, "duration": [103775, 110018, 110106]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3896, "duration": [1093, 1209, 1234]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1590, 1598, 1603]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 153516, "duration": [2949, 2992, 3521]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 896, "duration": [240, 289, 316]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 475, "duration": [350, 422, 428]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 36406, "duration": [1573, 1713, 2527]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1044, "duration": [471, 484, 530]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 74, "duration": [571, 659, 747]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 52377, "duration": [1805, 1910, 1929]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1550, "duration": [494, 537, 552]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 131, "duration": [699, 709, 718]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 150258, "duration": [2741, 2778, 2787]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1246, "duration": [601, 625, 1204]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 235, "duration": [588, 695, 784]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 66350, "duration": [1851, 1976, 2040]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5054, "duration": [1138, 1281, 1373]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [1604, 1698, 1852]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 310479, "duration": [5247, 5295, 5349]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 24403, "duration": [2608, 2658, 4043]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12115, "duration": [4937, 5015, 5121]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 503137, "duration": [8101, 8264, 8530]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2540, "duration": [697, 813, 859]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 59, "duration": [1130, 1200, 1550]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 200883, "duration": [3550, 3554, 3595]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 96618, "duration": [9026, 9193, 9225]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1140, "duration": [15475, 15526, 15923]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1038231, "duration": [16541, 17834, 18116]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5964, "duration": [1812, 1892, 1894]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 256, "duration": [2477, 2634, 3101]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 402607, "duration": [6542, 7031, 7797]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 142, "duration": [122, 128, 135]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 142, "duration": [144, 222, 294]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 10007, "duration": [647, 730, 1082]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2001, "duration": [1864, 1865, 2012]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [3919, 3954, 4017]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168649, "duration": [62143, 62350, 65037]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2315, "duration": [394, 520, 536]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [608, 654, 694]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 51200, "duration": [1307, 1496, 1524]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6825, "duration": [986, 1066, 1289]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2155, "duration": [1528, 1627, 1678]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 114383, "duration": [2468, 2480, 2625]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 47, "duration": [524, 530, 576]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 33, "duration": [662, 671, 676]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4068900, "duration": [96451, 101700, 105742]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4125, "duration": [1087, 1321, 1527]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [1675, 1685, 1738]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 272980, "duration": [4577, 4770, 4996]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4710, "duration": [872, 979, 1089]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2046, "duration": [1269, 1328, 1610]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 193597, "duration": [3415, 3545, 3549]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8204, "duration": [3748, 3876, 3984]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [5223, 5285, 5437]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 854242, "duration": [14131, 14149, 14328]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1608, "duration": [527, 561, 713]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [663, 673, 828]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 66857, "duration": [1866, 1917, 1950]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 328, "duration": [257, 339, 401]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 97, "duration": [327, 336, 363]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 32425, "duration": [1807, 1891, 2869]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [128, 157, 205]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [160, 167, 167]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 39428, "duration": [1718, 1891, 1941]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10203, "duration": [5152, 5217, 5251]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [8816, 8846, 8946]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 2470107, "duration": [44456, 46305, 46569]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 55, "duration": [169, 174, 188]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 43, "duration": [176, 199, 209]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 58784, "duration": [876, 913, 2076]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 901, "duration": [347, 377, 422]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 213, "duration": [508, 509, 626]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 73481, "duration": [1730, 1800, 1973]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7776, "duration": [1220, 1433, 2229]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3077, "duration": [1848, 1923, 2041]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 127400, "duration": [2645, 2681, 2835]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1282, "duration": [2507, 2527, 2610]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 31, "duration": [3756, 4035, 4272]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 961109, "duration": [18187, 18500, 18604]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 155, "duration": [211, 222, 232]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 45, "duration": [265, 284, 316]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 280642, "duration": [2871, 2997, 3013]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 51, "duration": [209, 216, 222]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 35, "duration": [277, 281, 435]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 102668, "duration": [2453, 2492, 2921]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1997, "duration": [793, 846, 869]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 93, "duration": [1142, 1174, 1253]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 212065, "duration": [3726, 3817, 3833]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1613, "duration": [650, 692, 743]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [884, 895, 915]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 109701, "duration": [2359, 2373, 2437]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 593, "duration": [196, 210, 231]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 373, "duration": [278, 292, 353]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 32570, "duration": [866, 974, 1633]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 358, "duration": [188, 199, 288]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 89, "duration": [237, 267, 270]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 29690, "duration": [1280, 1383, 1387]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [263, 306, 383]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [273, 338, 345]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 23089, "duration": [1124, 1375, 1859]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7853, "duration": [4133, 4471, 4724]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 140, "duration": [10919, 11191, 11571]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169493, "duration": [64051, 66203, 66778]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 207, "duration": [113, 126, 391]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [270, 273, 496]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 8017, "duration": [433, 435, 576]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3053, "duration": [763, 841, 878]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 100, "duration": [1027, 1058, 1164]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 132425, "duration": [2655, 2699, 2775]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 357, "duration": [161, 175, 185]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 328, "duration": [221, 241, 253]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 10614, "duration": [953, 1056, 1057]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 158, "duration": [319, 344, 352]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [223, 227, 239]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 22473, "duration": [949, 1298, 1332]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1927, "duration": [562, 608, 611]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 681, "duration": [804, 834, 852]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 88332, "duration": [2071, 2076, 2095]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 644, "duration": [326, 340, 356]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 73, "duration": [511, 524, 559]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 103711, "duration": [1984, 2054, 2387]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13480, "duration": [5967, 6061, 6176]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 969, "duration": [7331, 7354, 8072]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 918169, "duration": [15503, 15553, 16095]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 8141, "duration": [1884, 1964, 2266]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [2325, 2419, 2445]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 375689, "duration": [6120, 6371, 6419]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 278, "duration": [633, 667, 704]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [662, 677, 1064]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 212074, "duration": [4004, 4075, 4109]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 266, "duration": [187, 189, 218]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 135, "duration": [277, 301, 356]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 16569, "duration": [632, 640, 1117]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 22, "duration": [90, 94, 98]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [99, 100, 150]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 6674, "duration": [505, 512, 648]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1329, "duration": [1397, 1918, 1953]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 42, "duration": [1735, 1808, 1865]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 281073, "duration": [5134, 5188, 5230]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 240, "duration": [217, 222, 274]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [266, 273, 388]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 38213, "duration": [1646, 1687, 1771]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 867, "duration": [257, 327, 356]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [314, 328, 335]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 28879, "duration": [1640, 1644, 1758]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 406, "duration": [322, 323, 333]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 318, "duration": [459, 465, 475]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 345824, "duration": [3800, 3905, 3967]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1913, "duration": [697, 759, 823]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 171, "duration": [760, 764, 805]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 70020, "duration": [1718, 2102, 2192]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 84, "duration": [106, 118, 134]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [108, 152, 155]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 10103, "duration": [310, 332, 339]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 444, "duration": [620, 634, 636]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [809, 828, 829]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 165540, "duration": [3326, 3504, 3559]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1457, "duration": [1745, 1808, 2177]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 131, "duration": [3198, 3283, 3370]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 4174359, "duration": [63665, 63883, 65741]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11192, "duration": [1707, 1871, 2559]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [2768, 2921, 2925]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 264631, "duration": [4629, 4838, 4861]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 466, "duration": [375, 414, 414]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [440, 464, 497]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 55152, "duration": [1757, 1829, 2104]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1061, "duration": [1360, 1474, 1512]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 74, "duration": [1458, 1486, 1500]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 194085, "duration": [3934, 4034, 4883]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 164, "duration": [123, 130, 160]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 121, "duration": [170, 200, 330]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 12785, "duration": [799, 889, 1642]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 290, "duration": [313, 389, 579]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 277, "duration": [490, 503, 670]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 352602, "duration": [5959, 6142, 6261]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1111, "duration": [368, 429, 442]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 963, "duration": [632, 632, 762]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 162074, "duration": [2441, 2617, 2692]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 608, "duration": [484, 513, 532]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 485, "duration": [561, 575, 587]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 231765, "duration": [4046, 4255, 4439]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 122, "duration": [357, 387, 496]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 10, "duration": [515, 525, 668]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 217412, "duration": [4085, 4134, 4275]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 118291, "duration": [11105, 11114, 11323]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21737, "duration": [57878, 59427, 59962]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168234, "duration": [61442, 61791, 65717]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 367, "duration": [292, 304, 345]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [381, 392, 534]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 33310, "duration": [1125, 1551, 1582]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 192, "duration": [204, 234, 245]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [286, 289, 433]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 46274, "duration": [1359, 1550, 2211]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 180, "duration": [358, 384, 469]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 143, "duration": [461, 487, 735]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 268624, "duration": [4689, 4692, 4737]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2130, "duration": [2207, 2217, 2569]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [3136, 3204, 3226]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 2372213, "duration": [38605, 38779, 41890]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 248, "duration": [252, 254, 668]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 68, "duration": [268, 310, 316]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 47084, "duration": [1517, 1531, 1534]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [139, 160, 177]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 226, "duration": [125, 144, 154]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 4838, "duration": [371, 407, 416]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 78, "duration": [122, 136, 154]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [145, 152, 169]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 17211, "duration": [1047, 1105, 1190]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1532, "duration": [640, 649, 659]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 173, "duration": [887, 900, 975]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 76229, "duration": [2183, 2207, 2211]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2422, "duration": [196, 201, 290]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2381, "duration": [465, 472, 486]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 6515, "duration": [470, 483, 491]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1633, "duration": [391, 436, 520]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 123, "duration": [590, 612, 640]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 73305, "duration": [1656, 1834, 1982]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4110, "duration": [3070, 3090, 3107]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 60, "duration": [4171, 4290, 4496]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 2315795, "duration": [39717, 41576, 42469]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [325, 342, 410]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [532, 534, 541]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 92901, "duration": [1788, 1863, 2075]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 131, "duration": [626, 630, 713]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [786, 799, 840]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 226887, "duration": [4511, 4564, 4727]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1539, "duration": [1071, 1103, 1129]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 79, "duration": [1407, 1453, 1462]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 322018, "duration": [5857, 6084, 6553]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1358, "duration": [584, 653, 706]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [785, 816, 949]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 68175, "duration": [2151, 2213, 2383]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 813, "duration": [430, 441, 551]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 67, "duration": [505, 541, 692]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 62207, "duration": [1991, 2077, 2304]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [251, 252, 286]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [203, 309, 438]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 33193, "duration": [656, 810, 1082]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3401, "duration": [953, 963, 1047]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 821, "duration": [1211, 1287, 1420]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 134076, "duration": [2657, 2848, 2926]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2416, "duration": [715, 734, 774]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [1003, 1047, 1157]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 105084, "duration": [2204, 2223, 2337]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 162, "duration": [253, 292, 307]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [422, 578, 935]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168064, "duration": [38109, 40270, 41071]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 361, "duration": [313, 330, 381]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [470, 504, 527]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 167104, "duration": [2371, 2372, 2424]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 679, "duration": [1207, 1229, 1240]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [1618, 1627, 1630]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 730213, "duration": [12106, 12727, 13003]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5744, "duration": [1299, 1603, 1952]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [1742, 1764, 1778]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 222790, "duration": [4246, 4269, 5483]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 377, "duration": [984, 1007, 1068]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 16, "duration": [1259, 1261, 1509]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 774500, "duration": [14070, 14860, 14934]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 639, "duration": [500, 549, 622]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [639, 650, 688]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 188645, "duration": [3122, 3181, 3209]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 138, "duration": [246, 285, 351]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [178, 184, 196]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 14092, "duration": [864, 900, 1498]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5577, "duration": [1695, 1716, 1817]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [2213, 2294, 2477]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 310569, "duration": [5223, 5228, 5417]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 29, "duration": [100, 131, 157]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [139, 153, 352]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 14156, "duration": [591, 757, 792]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 144, "duration": [175, 255, 332]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [236, 251, 281]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 69112, "duration": [1354, 1369, 1412]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2936, "duration": [938, 992, 1014]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 611, "duration": [1151, 1193, 1220]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 192280, "duration": [3392, 3419, 3601]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9630, "duration": [1538, 1609, 1932]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 181, "duration": [2498, 2601, 2866]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 389360, "duration": [6411, 6430, 6548]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 490, "duration": [136, 161, 213]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 414, "duration": [267, 281, 366]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 11304, "duration": [1016, 1016, 1019]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 431, "duration": [470, 475, 673]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 115, "duration": [807, 818, 871]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 308550, "duration": [5194, 5233, 5428]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6560, "duration": [4342, 4509, 4522]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 16, "duration": [8347, 8499, 8643]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 4014085, "duration": [67279, 69455, 70214]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1218, "duration": [545, 561, 715]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [655, 658, 712]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 119020, "duration": [2498, 2692, 3894]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 531, "duration": [433, 434, 555]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 82, "duration": [514, 618, 758]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 43329, "duration": [1570, 1764, 2046]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2111, "duration": [685, 704, 987]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [961, 962, 1021]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 159993, "duration": [2967, 2987, 3027]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 370, "duration": [164, 192, 197]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [193, 194, 213]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 11717, "duration": [735, 752, 1108]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 25282, "duration": [3302, 3305, 3510]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 210, "duration": [5375, 5381, 5593]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 909593, "duration": [13784, 13971, 14511]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 350, "duration": [691, 699, 723]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 141, "duration": [902, 914, 974]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 758590, "duration": [12378, 12456, 13179]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1273, "duration": [703, 745, 910]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [1216, 1247, 1537]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 349637, "duration": [5574, 5705, 6039]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 220, "duration": [141, 190, 212]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 206, "duration": [155, 198, 208]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 7958, "duration": [719, 745, 922]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 30970, "duration": [3856, 4153, 4350]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 272, "duration": [5674, 5683, 6001]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 446943, "duration": [7570, 7650, 7795]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 112, "duration": [446, 459, 464]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [461, 467, 493]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 51473, "duration": [2212, 2250, 2271]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1763, "duration": [963, 1009, 1110]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [1127, 1162, 1183]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 266528, "duration": [4400, 4467, 4565]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5003, "duration": [3687, 3690, 3831]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [5761, 7115, 8556]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980371, "duration": [59704, 64643, 65046]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [265, 286, 428]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 158, "duration": [310, 340, 363]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 21196, "duration": [717, 755, 784]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5094, "duration": [3524, 3547, 3846]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 419, "duration": [7643, 8318, 8716]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169609, "duration": [62723, 65722, 66045]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1216, "duration": [527, 528, 545]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 50, "duration": [778, 784, 864]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 196687, "duration": [3338, 3476, 3552]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 56, "duration": [91, 98, 123]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 53, "duration": [122, 122, 142]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 144768, "duration": [1510, 1536, 1641]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [609, 648, 653]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [745, 752, 759]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 727128, "duration": [12027, 12328, 12688]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 176, "duration": [394, 453, 573]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [546, 604, 643]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168609, "duration": [62670, 65724, 69038]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 521, "duration": [128, 145, 168]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 516, "duration": [222, 227, 297]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 11727, "duration": [827, 839, 939]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [338, 360, 374]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [614, 722, 806]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 100754, "duration": [1942, 2044, 2105]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [74, 76, 91]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 35, "duration": [102, 132, 139]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 63, "duration": [65, 124, 259]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 425, "duration": [1024, 1052, 1396]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [1237, 1244, 1325]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 279042, "duration": [5069, 5330, 5369]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 757, "duration": [932, 968, 995]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [1159, 1166, 1230]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 292410, "duration": [5278, 5314, 5471]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 74, "duration": [77, 79, 150]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 52, "duration": [83, 91, 107]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1372, "duration": [242, 272, 337]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1159, "duration": [466, 472, 532]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 120, "duration": [682, 697, 918]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 146946, "duration": [2629, 2639, 2790]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6552, "duration": [859, 871, 884]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 6339, "duration": [843, 904, 1384]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 63852, "duration": [1521, 1693, 1790]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1950, "duration": [684, 760, 832]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [797, 798, 822]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 67801, "duration": [2233, 2234, 2394]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2956, "duration": [823, 846, 1205]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [1176, 1205, 1246]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 172197, "duration": [3138, 3202, 3280]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1145, "duration": [662, 664, 681]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 133, "duration": [895, 897, 930]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 139608, "duration": [2666, 2919, 3414]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 330, "duration": [269, 297, 308]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [373, 374, 442]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 75177, "duration": [1527, 1540, 1747]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 341, "duration": [292, 298, 328]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [345, 368, 428]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 65937, "duration": [1655, 1683, 1691]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 983, "duration": [1905, 1954, 2092]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 603, "duration": [3513, 3554, 3587]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269185, "duration": [95937, 101215, 101609]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1514, "duration": [1498, 1522, 1659]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 44, "duration": [2421, 2428, 2672]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 3107761, "duration": [46759, 48460, 49650]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 240, "duration": [501, 525, 586]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 27, "duration": [888, 913, 918]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168301, "duration": [61264, 65277, 73687]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 14, "duration": [93, 95, 102]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [99, 102, 106]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 16308, "duration": [611, 779, 1304]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2705, "duration": [1884, 1936, 2501]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 26, "duration": [2476, 2585, 2623]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 651176, "duration": [10734, 11159, 11389]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 125, "duration": [202, 218, 225]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [275, 276, 323]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 38349, "duration": [1026, 1100, 1233]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 606, "duration": [167, 181, 208]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 348, "duration": [214, 222, 269]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 8849, "duration": [849, 886, 1006]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2771, "duration": [1735, 1854, 1886]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 393, "duration": [2383, 2471, 2485]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 337147, "duration": [5941, 6282, 6493]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 537, "duration": [300, 309, 504]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [463, 465, 533]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 90307, "duration": [1906, 1907, 1955]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 94, "duration": [194, 234, 281]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 69, "duration": [193, 214, 249]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 53641, "duration": [1518, 1674, 1904]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2723, "duration": [862, 881, 943]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 638, "duration": [1186, 1187, 1217]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 132261, "duration": [2667, 2721, 2756]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 489, "duration": [459, 497, 572]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [607, 634, 835]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 75263, "duration": [1940, 1949, 2795]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9989, "duration": [1563, 1614, 1718]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1886, 1949, 1986]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 178211, "duration": [3411, 3425, 3521]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1195, "duration": [708, 727, 999]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [1108, 1158, 1291]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 477882, "duration": [6808, 7034, 7126]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 834, "duration": [352, 362, 405]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [486, 487, 495]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 68527, "duration": [1634, 1651, 1713]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 424, "duration": [505, 508, 600]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 39, "duration": [725, 777, 966]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 294537, "duration": [4107, 4213, 4216]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 400, "duration": [719, 745, 787]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 137, "duration": [985, 1165, 1200]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 555477, "duration": [9262, 9538, 9964]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10926, "duration": [2984, 3250, 3370]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 4589, "duration": [3946, 4164, 4301]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 962508, "duration": [14946, 15016, 16169]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 44, "duration": [162, 168, 239]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [281, 294, 376]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 22177, "duration": [1176, 1221, 1946]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1249, "duration": [502, 538, 565]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 55, "duration": [677, 692, 699]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 183559, "duration": [3056, 3077, 3398]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6482, "duration": [1942, 2157, 2458]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2037, "duration": [2880, 2922, 3010]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 318670, "duration": [5968, 6051, 6503]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3112, "duration": [2458, 2603, 2730]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [4529, 4651, 5705]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3802855, "duration": [60148, 60200, 62480]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 2192, "duration": [2041, 2195, 2245]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 163, "duration": [2451, 2541, 2567]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 254583, "duration": [5693, 5751, 6120]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 76, "duration": [197, 197, 316]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [232, 249, 369]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 162351, "duration": [3142, 3283, 3674]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 571, "duration": [906, 915, 940]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1375, 1585, 1629]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 620188, "duration": [10455, 11223, 11344]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 415, "duration": [222, 274, 301]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 117, "duration": [314, 314, 323]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 91128, "duration": [1378, 1416, 1438]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 739, "duration": [224, 237, 250]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 298, "duration": [217, 228, 372]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 9778, "duration": [895, 1017, 1152]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 301, "duration": [358, 448, 854]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 24, "duration": [455, 469, 477]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 140156, "duration": [2313, 2360, 2362]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 31324, "duration": [6669, 6752, 7110]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8245, "duration": [22722, 22805, 23897]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168226, "duration": [61205, 63027, 65701]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 381, "duration": [132, 150, 161]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 341, "duration": [190, 206, 207]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 11347, "duration": [990, 1053, 1102]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1929, "duration": [803, 875, 919]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 34, "duration": [1321, 1342, 1436]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 485132, "duration": [6981, 7291, 7342]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 293, "duration": [718, 718, 775]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 251, "duration": [1114, 1121, 1302]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3800825, "duration": [57672, 60498, 61961]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 40, "duration": [84, 95, 301]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [212, 227, 258]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 4010, "duration": [291, 347, 384]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1002, "duration": [589, 596, 601]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [556, 651, 676]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 57181, "duration": [1483, 1608, 1774]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11227, "duration": [2670, 2678, 2860]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [3504, 3584, 3593]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 324999, "duration": [5880, 5915, 6631]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2871, "duration": [2102, 2142, 2198]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 48, "duration": [2953, 3170, 3200]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1012784, "duration": [16264, 17046, 17522]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1241, "duration": [1462, 1629, 1771]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 443, "duration": [2447, 2474, 2522]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806173, "duration": [59978, 60364, 63144]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8686, "duration": [4596, 4690, 4757]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [12337, 12458, 12638]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168904, "duration": [63106, 65625, 66655]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2488, "duration": [595, 635, 680]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1598, "duration": [910, 963, 1150]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 121970, "duration": [2415, 2511, 3261]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1791, "duration": [720, 733, 754]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [873, 874, 922]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 152743, "duration": [2846, 2949, 2967]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [261, 299, 303]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [365, 404, 549]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 126726, "duration": [1773, 1939, 2028]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9823, "duration": [1680, 1728, 1918]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1790, "duration": [2569, 2616, 2651]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 212022, "duration": [3792, 3795, 3982]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 373, "duration": [256, 265, 285]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [393, 421, 513]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 148462, "duration": [1951, 2321, 2417]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 97, "duration": [107, 110, 127]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [168, 213, 214]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 7393, "duration": [488, 640, 720]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3519, "duration": [1260, 1316, 1635]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [1539, 1577, 1589]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 355372, "duration": [6046, 6072, 6236]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7697, "duration": [4615, 4753, 4978]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 55, "duration": [8433, 8473, 8594]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 4015608, "duration": [64213, 67012, 68454]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 55, "duration": [152, 173, 272]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [162, 163, 181]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 11520, "duration": [1211, 1215, 1253]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2703, "duration": [2235, 2387, 2391]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [3653, 3656, 3662]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980777, "duration": [59730, 60894, 63442]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 66, "duration": [111, 141, 153]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [206, 214, 232]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 178640, "duration": [1769, 1862, 2459]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 136, "duration": [464, 464, 591]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 25, "duration": [520, 544, 550]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748828, "duration": [14186, 14272, 14294]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 47, "duration": [119, 130, 177]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [96, 99, 131]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 3783, "duration": [429, 460, 489]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14379, "duration": [2073, 2141, 2247]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8754, "duration": [2691, 2724, 2791]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 273351, "duration": [4644, 4675, 4929]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65, "duration": [141, 155, 171]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [176, 194, 280]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 29487, "duration": [759, 891, 1198]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 426, "duration": [644, 647, 717]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 52, "duration": [771, 795, 899]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 463674, "duration": [8300, 8681, 8742]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 128, "duration": [449, 462, 471]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [609, 632, 671]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 687518, "duration": [11174, 11799, 11969]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 88, "duration": [510, 529, 569]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 33, "duration": [492, 515, 523]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 638451, "duration": [10403, 10894, 10914]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 339, "duration": [1347, 1435, 1487]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 58, "duration": [1937, 2086, 2297]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1424119, "duration": [28311, 29512, 30858]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 114, "duration": [141, 177, 203]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 42, "duration": [221, 223, 348]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 16349, "duration": [894, 1079, 1087]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 129, "duration": [115, 118, 141]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 122, "duration": [184, 216, 222]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 16639, "duration": [1070, 1097, 1141]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5942, "duration": [2799, 2981, 3486]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 20, "duration": [4589, 4734, 5151]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1004290, "duration": [18530, 18573, 19558]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 9831, "duration": [4993, 5074, 5787]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 5175, "duration": [9862, 9992, 10297]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 3815913, "duration": [57667, 57772, 57983]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 101, "duration": [477, 504, 615]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 26, "duration": [606, 660, 725]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 621002, "duration": [10423, 10652, 10711]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 42326, "duration": [4449, 4473, 4542]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 105, "duration": [6765, 7046, 7930]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 506318, "duration": [8469, 8880, 8991]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 110, "duration": [150, 171, 188]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 46, "duration": [131, 149, 167]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7141, "duration": [641, 690, 741]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3633, "duration": [1081, 1083, 1229]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [1496, 1519, 1573]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 341994, "duration": [5587, 5639, 6012]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 861, "duration": [585, 609, 696]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 98, "duration": [824, 831, 875]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 236925, "duration": [3806, 3903, 4007]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2784, "duration": [841, 1080, 1081]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 853, "duration": [1124, 1152, 1159]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 254858, "duration": [4296, 4428, 5836]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 218, "duration": [138, 151, 205]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [141, 183, 191]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 7833, "duration": [690, 742, 1002]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4083, "duration": [2991, 3036, 3873]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 877, "duration": [7702, 7778, 8106]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 4171625, "duration": [65024, 67235, 67692]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2520, "duration": [534, 561, 612]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1404, "duration": [983, 992, 1260]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 138987, "duration": [2650, 2674, 2718]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [570, 591, 718]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 28, "duration": [793, 816, 860]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1078395, "duration": [17302, 17365, 17414]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 92527, "duration": [24368, 24988, 25098]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 95, "duration": [79934, 81391, 81771]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4270464, "duration": [104679, 108320, 115008]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 60, "duration": [106, 132, 137]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [105, 111, 111]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 7172, "duration": [292, 450, 671]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1015, "duration": [470, 491, 748]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 86, "duration": [739, 867, 869]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 200981, "duration": [3122, 3143, 3202]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4474, "duration": [1348, 1508, 1548]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3236, "duration": [1809, 1846, 1948]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 360654, "duration": [5722, 5815, 5817]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 980, "duration": [784, 795, 812]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 784, "duration": [1407, 1427, 1783]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168065, "duration": [43567, 45029, 45577]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 284, "duration": [370, 380, 388]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 214, "duration": [509, 513, 547]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 126816, "duration": [2654, 2695, 2722]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 83, "duration": [193, 210, 220]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 16, "duration": [244, 248, 265]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 55586, "duration": [1472, 1498, 1520]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 58, "duration": [77, 79, 88]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 54, "duration": [100, 108, 165]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 15162, "duration": [373, 440, 531]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 201, "duration": [387, 390, 391]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [335, 340, 353]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 170597, "duration": [2143, 2161, 2200]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 434, "duration": [267, 276, 288]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [349, 355, 364]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 26300, "duration": [1509, 1629, 1828]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3258, "duration": [2092, 2121, 2417]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 244, "duration": [2838, 2847, 2865]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 467039, "duration": [8125, 8653, 8974]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 121, "duration": [1506, 1537, 1740]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 20, "duration": [1690, 1702, 1715]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 635117, "duration": [11112, 11183, 11617]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4708, "duration": [1280, 1321, 1418]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1322, "duration": [2068, 2081, 2507]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 487676, "duration": [7773, 8138, 8189]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3919, "duration": [1256, 1266, 1393]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1515, "duration": [1492, 1495, 1736]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 144566, "duration": [2850, 2872, 2948]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 234, "duration": [371, 397, 432]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 151, "duration": [483, 486, 531]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 192019, "duration": [3559, 3638, 3754]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8481, "duration": [5287, 5562, 6189]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 82, "duration": [6190, 6219, 6270]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 778663, "duration": [12875, 13522, 13549]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 24, "duration": [218, 245, 272]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 19, "duration": [235, 256, 370]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 231009, "duration": [4245, 4383, 4400]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2050, "duration": [440, 457, 545]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 314, "duration": [654, 710, 723]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 89056, "duration": [1918, 2058, 2139]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 319, "duration": [220, 243, 268]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [285, 330, 349]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 41550, "duration": [1644, 1715, 1778]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1982, "duration": [563, 566, 683]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [858, 943, 1031]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 126649, "duration": [2470, 2478, 2480]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 652, "duration": [401, 434, 542]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [569, 695, 764]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 148177, "duration": [2571, 2573, 2680]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 372, "duration": [262, 272, 497]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 115, "duration": [332, 334, 347]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 27089, "duration": [1218, 1634, 1858]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 169, "duration": [341, 375, 554]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 65, "duration": [446, 472, 492]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 536978, "duration": [8578, 8887, 8963]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 16193, "duration": [3805, 3976, 4325]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2840, "duration": [7091, 7281, 7403]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 686232, "duration": [14901, 15478, 15523]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 21, "duration": [176, 198, 253]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [172, 188, 258]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748534, "duration": [13563, 13614, 14522]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2570, "duration": [776, 791, 910]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 33, "duration": [993, 1129, 1361]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 155369, "duration": [2898, 2924, 2945]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6165, "duration": [1295, 1411, 1418]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 255, "duration": [1507, 1552, 1561]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 126586, "duration": [2745, 2775, 4192]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 425, "duration": [274, 277, 290]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [335, 366, 418]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 36113, "duration": [1440, 1451, 2110]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 237, "duration": [1306, 1376, 1612]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 37, "duration": [1610, 1624, 1797]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3837687, "duration": [66902, 71231, 71245]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 660, "duration": [42436, 43109, 43783]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 79, "duration": [626, 671, 1186]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 4168064, "duration": [39636, 41774, 42008]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 748534, "duration": [14094, 14493, 14909]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 79, "duration": [623, 649, 707]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 4168064, "duration": [40143, 42219, 45061]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 748534, "duration": [13858, 14261, 14627]}]}, "COUNT": {"tantivy-0.18": [{"query": "the", "tags": ["term"], "count": 4168064, "duration": [19, 20, 24]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 79, "duration": [106, 107, 107]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [121, 126, 177]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 15456, "duration": [99, 105, 142]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 195, "duration": [51, 55, 57]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 110, "duration": [69, 71, 73]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 4173, "duration": [76, 80, 81]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 856, "duration": [75, 76, 78]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 112, "duration": [176, 179, 197]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 104150, "duration": [200, 203, 213]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [122, 122, 151]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [193, 196, 252]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 54291, "duration": [148, 153, 157]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 266, "duration": [456, 458, 461]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 18, "duration": [510, 522, 525]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 195119, "duration": [334, 334, 340]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2173, "duration": [666, 668, 690]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [870, 881, 897]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 167943, "duration": [278, 280, 342]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14165, "duration": [1098, 1121, 1171]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [2334, 2377, 2385]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 612165, "duration": [891, 921, 931]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 85, "duration": [46, 47, 48]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 56, "duration": [61, 62, 62]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 7747, "duration": [82, 86, 87]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 693, "duration": [512, 534, 554]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [624, 633, 641]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 397912, "duration": [610, 616, 617]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7346, "duration": [1649, 1675, 1918]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 201, "duration": [2357, 2379, 2589]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 4173861, "duration": [5995, 6136, 6144]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4496, "duration": [285, 290, 291]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 307, "duration": [755, 757, 762]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 454176, "duration": [651, 667, 668]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 161, "duration": [219, 254, 278]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [262, 263, 277]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 336807, "duration": [500, 512, 515]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1055, "duration": [210, 211, 218]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 177, "duration": [318, 321, 322]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 61359, "duration": [157, 157, 173]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3760, "duration": [674, 681, 686]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 252, "duration": [1019, 1078, 1085]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 151582, "duration": [259, 267, 381]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 569, "duration": [283, 289, 292]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [360, 362, 366]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 86776, "duration": [178, 184, 186]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [79, 81, 81]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [84, 85, 86]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 249193, "duration": [385, 389, 393]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 81, "duration": [121, 122, 127]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [137, 140, 145]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 20969, "duration": [105, 106, 135]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4617, "duration": [817, 819, 823]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 141, "duration": [1251, 1256, 1262]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 194083, "duration": [309, 314, 315]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 107, "duration": [100, 100, 119]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 64, "duration": [145, 149, 150]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1192562, "duration": [1777, 1795, 1799]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1239, "duration": [536, 544, 556]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 566, "duration": [938, 943, 1054]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 510849, "duration": [777, 784, 812]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7014, "duration": [1073, 1086, 1105]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 329, "duration": [1704, 1706, 1762]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 170364, "duration": [281, 282, 290]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48653, "duration": [668, 680, 693]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 44879, "duration": [3657, 3672, 3756]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 151349, "duration": [314, 320, 460]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 137, "duration": [220, 223, 232]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 53, "duration": [256, 262, 264]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 95654, "duration": [213, 218, 225]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7387, "duration": [864, 867, 876]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 302, "duration": [1471, 1480, 1496]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 260381, "duration": [386, 392, 402]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5040, "duration": [691, 696, 701]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 70, "duration": [1098, 1108, 1451]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 217122, "duration": [338, 342, 345]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1917, "duration": [658, 665, 670]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 94, "duration": [908, 936, 1018]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 584269, "duration": [873, 886, 892]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 733, "duration": [299, 304, 308]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 76, "duration": [368, 376, 376]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 46081, "duration": [136, 140, 143]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 421, "duration": [602, 608, 612]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 61, "duration": [704, 709, 714]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 401520, "duration": [587, 618, 622]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1187, "duration": [143, 144, 147]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [319, 327, 330]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 160168, "duration": [267, 270, 272]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 475, "duration": [646, 652, 656]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [770, 775, 826]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 402259, "duration": [601, 619, 622]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 604, "duration": [256, 259, 276]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [344, 345, 351]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 99117, "duration": [195, 199, 204]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65770, "duration": [2667, 2675, 2697]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [7389, 7652, 7838]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 825043, "duration": [1248, 1253, 1274]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6146, "duration": [892, 901, 911]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1468, 1469, 1480]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 298137, "duration": [444, 454, 458]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 13581, "duration": [1177, 1179, 1221]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1894, "duration": [2407, 2415, 2423]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 229696, "duration": [371, 380, 399]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 314, "duration": [50, 51, 65]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 288, "duration": [75, 75, 76]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 10040, "duration": [89, 92, 95]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6957, "duration": [1226, 1226, 1238]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [2123, 2132, 2157]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 702120, "duration": [1085, 1096, 1105]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13996, "duration": [3048, 3096, 3102]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [4557, 4601, 4606]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1251867, "duration": [2148, 2197, 3045]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4268, "duration": [1158, 1177, 1201]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 440, "duration": [1772, 1793, 1824]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 909970, "duration": [1387, 1399, 1409]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 23, "duration": [42, 45, 50]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [45, 47, 55]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 10684, "duration": [89, 90, 93]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 157, "duration": [211, 212, 213]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [236, 242, 243]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 35325, "duration": [127, 132, 169]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1316, "duration": [583, 612, 655]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1156, "duration": [1800, 1844, 1859]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269120, "duration": [11102, 11109, 11187]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 43372, "duration": [2920, 2982, 3012]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15089, "duration": [10701, 10709, 10853]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806414, "duration": [6068, 6124, 6523]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 239, "duration": [97, 100, 103]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 124, "duration": [155, 156, 157]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 333268, "duration": [476, 478, 483]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 618, "duration": [201, 207, 213]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 168, "duration": [359, 368, 368]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970283, "duration": [1700, 1704, 1985]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 44521, "duration": [3334, 3387, 3692]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 4100, "duration": [8646, 8672, 8719]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 3808757, "duration": [5979, 6306, 6408]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 960, "duration": [303, 304, 306]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 244, "duration": [446, 449, 451]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 134727, "duration": [245, 252, 261]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1490, "duration": [667, 680, 692]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [821, 830, 830]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 106587, "duration": [253, 262, 289]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3574, "duration": [875, 879, 904]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1021, "duration": [1201, 1214, 1286]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 146818, "duration": [258, 259, 261]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 20, "duration": [32, 36, 49]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [42, 43, 53]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 82708, "duration": [173, 177, 180]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [34, 34, 35]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [42, 44, 46]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1791, "duration": [59, 63, 80]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 3397, "duration": [1528, 1573, 1595]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 12, "duration": [1933, 1939, 1955]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4053765, "duration": [9454, 9684, 9739]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 429, "duration": [67, 69, 103]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 41, "duration": [145, 151, 191]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 130601, "duration": [230, 232, 301]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2860, "duration": [275, 285, 288]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 828, "duration": [492, 494, 502]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 54702, "duration": [154, 155, 161]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10899, "duration": [1244, 1285, 1317]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 922, "duration": [3156, 3157, 3172]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806986, "duration": [5964, 6076, 6116]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [100, 104, 111]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [114, 119, 126]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 11759, "duration": [91, 96, 119]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 443, "duration": [267, 269, 276]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [439, 465, 465]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798567, "duration": [5356, 5419, 5534]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1994, "duration": [947, 975, 997]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1444, "duration": [2291, 2500, 2717]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269267, "duration": [10956, 11039, 11042]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 418, "duration": [309, 310, 377]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 224, "duration": [508, 514, 531]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798846, "duration": [5350, 5361, 5375]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10806, "duration": [632, 640, 650]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 831, "duration": [1538, 1590, 1621]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 401948, "duration": [578, 593, 597]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 90, "duration": [59, 61, 61]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [67, 68, 69]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7731, "duration": [86, 87, 88]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3336, "duration": [581, 596, 622]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [897, 914, 915]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 237265, "duration": [361, 366, 372]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48, "duration": [39, 42, 43]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [49, 51, 51]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 5320, "duration": [79, 80, 81]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1751, "duration": [187, 189, 201]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1335, "duration": [348, 354, 363]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 79894, "duration": [180, 183, 200]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 19247, "duration": [1822, 1843, 1863]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 626, "duration": [3290, 3307, 3332]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 301066, "duration": [446, 450, 450]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [64, 64, 66]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 81, "duration": [95, 96, 98]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 21776, "duration": [106, 112, 127]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3980, "duration": [64, 66, 66]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3891, "duration": [338, 339, 341]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 43534, "duration": [136, 148, 206]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 109, "duration": [126, 127, 169]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 97, "duration": [159, 160, 176]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 47760, "duration": [150, 152, 152]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 61, "duration": [79, 81, 136]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [94, 97, 113]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 14465, "duration": [97, 99, 100]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2638, "duration": [367, 379, 405]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 60, "duration": [684, 686, 788]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 301693, "duration": [433, 442, 444]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 12, "duration": [44, 48, 50]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [45, 47, 49]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 57879, "duration": [144, 147, 168]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1238, "duration": [261, 269, 272]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 391, "duration": [552, 554, 570]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970192, "duration": [1710, 1720, 1726]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 415, "duration": [624, 640, 750]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [919, 928, 946]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4316960, "duration": [11991, 12047, 12256]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3896, "duration": [878, 890, 898]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1220, 1277, 1288]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 153516, "duration": [259, 264, 266]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 896, "duration": [119, 121, 125]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 475, "duration": [209, 211, 226]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 36406, "duration": [123, 128, 129]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1044, "duration": [299, 300, 300]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 74, "duration": [400, 404, 412]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 52377, "duration": [151, 157, 166]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1550, "duration": [244, 246, 246]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 131, "duration": [409, 415, 423]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 150258, "duration": [257, 261, 270]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1246, "duration": [275, 290, 301]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 235, "duration": [387, 394, 427]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 66350, "duration": [158, 160, 160]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5054, "duration": [473, 476, 477]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [942, 953, 964]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 310479, "duration": [465, 479, 485]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 24403, "duration": [1334, 1362, 1376]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12115, "duration": [3356, 3455, 3493]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 503137, "duration": [733, 744, 760]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2540, "duration": [348, 356, 362]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 59, "duration": [636, 638, 640]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 200883, "duration": [321, 321, 325]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 96618, "duration": [6829, 6899, 6922]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1140, "duration": [14209, 14386, 14520]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1038231, "duration": [1524, 1603, 1629]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5964, "duration": [1110, 1120, 1131]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 256, "duration": [1718, 1750, 1769]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 402607, "duration": [577, 591, 653]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 142, "duration": [31, 31, 33]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 142, "duration": [41, 43, 44]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 10007, "duration": [101, 101, 109]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2001, "duration": [771, 790, 795]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [1155, 1158, 1165]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168649, "duration": [5778, 5812, 5815]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2315, "duration": [256, 257, 266]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [461, 467, 473]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 51200, "duration": [145, 145, 151]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6825, "duration": [612, 616, 623]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2155, "duration": [1189, 1200, 1219]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 114383, "duration": [217, 222, 225]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 47, "duration": [359, 388, 408]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 33, "duration": [579, 587, 634]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4068900, "duration": [11135, 11559, 11563]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4125, "duration": [497, 500, 510]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [910, 914, 961]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 272980, "duration": [404, 411, 412]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4710, "duration": [292, 298, 302]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2046, "duration": [669, 674, 680]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 193597, "duration": [320, 328, 330]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8204, "duration": [2156, 2183, 2202]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [3172, 3178, 3217]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 854242, "duration": [1302, 1305, 1306]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1608, "duration": [395, 399, 399]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [532, 544, 560]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 66857, "duration": [161, 162, 164]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 328, "duration": [187, 192, 198]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 97, "duration": [223, 225, 236]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 32425, "duration": [125, 129, 134]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [40, 40, 46]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [50, 53, 62]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 39428, "duration": [142, 142, 146]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10203, "duration": [1100, 1135, 1217]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [2385, 2399, 2413]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 2470107, "duration": [4951, 4964, 6472]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 55, "duration": [44, 46, 46]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 43, "duration": [59, 62, 62]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 58784, "duration": [141, 145, 198]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 901, "duration": [203, 204, 260]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 213, "duration": [311, 318, 321]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 73481, "duration": [167, 168, 168]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7776, "duration": [788, 796, 799]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3077, "duration": [1412, 1439, 1446]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 127400, "duration": [238, 241, 244]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1282, "duration": [947, 972, 976]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 31, "duration": [1500, 1543, 1552]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 961109, "duration": [1697, 1747, 1764]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 155, "duration": [71, 71, 72]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 45, "duration": [108, 109, 154]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 280642, "duration": [418, 419, 439]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 51, "duration": [79, 80, 81]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 35, "duration": [103, 107, 142]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 102668, "duration": [207, 209, 259]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1997, "duration": [361, 366, 368]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 93, "duration": [619, 620, 622]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 212065, "duration": [336, 349, 356]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1613, "duration": [473, 491, 511]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [657, 661, 663]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 109701, "duration": [208, 223, 328]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 593, "duration": [43, 46, 69]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 373, "duration": [104, 105, 106]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 32570, "duration": [120, 121, 124]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 358, "duration": [91, 91, 91]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 89, "duration": [132, 138, 140]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 29690, "duration": [119, 119, 124]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [164, 166, 224]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [195, 196, 197]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 23089, "duration": [111, 121, 123]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7853, "duration": [1661, 1693, 1747]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 140, "duration": [2584, 2730, 2743]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169493, "duration": [6076, 6116, 6443]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 207, "duration": [45, 58, 64]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [64, 69, 122]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 8017, "duration": [83, 86, 86]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3053, "duration": [488, 489, 489]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 100, "duration": [749, 785, 795]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 132425, "duration": [236, 238, 240]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 357, "duration": [92, 94, 96]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 328, "duration": [119, 121, 126]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 10614, "duration": [96, 99, 101]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 158, "duration": [166, 171, 173]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [148, 153, 153]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 22473, "duration": [107, 109, 134]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1927, "duration": [397, 405, 405]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 681, "duration": [572, 577, 579]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 88332, "duration": [185, 186, 187]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 644, "duration": [138, 138, 139]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 73, "duration": [234, 234, 238]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 103711, "duration": [210, 212, 235]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13480, "duration": [3484, 3534, 3543]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 969, "duration": [5043, 5139, 5201]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 918169, "duration": [1390, 1394, 1397]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 8141, "duration": [647, 658, 660]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1365, 1393, 1394]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 375689, "duration": [549, 550, 798]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 278, "duration": [362, 364, 365]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [418, 437, 561]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 212074, "duration": [350, 355, 358]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 266, "duration": [126, 130, 132]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 135, "duration": [153, 156, 158]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 16569, "duration": [101, 101, 111]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 22, "duration": [47, 49, 55]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [56, 56, 72]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 6674, "duration": [86, 87, 95]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1329, "duration": [1033, 1039, 1049]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 42, "duration": [1228, 1271, 1274]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 281073, "duration": [455, 465, 480]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 240, "duration": [136, 143, 180]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [166, 170, 171]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 38213, "duration": [125, 131, 174]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 867, "duration": [110, 115, 119]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [210, 212, 214]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 28879, "duration": [126, 130, 134]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 406, "duration": [113, 119, 121]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 318, "duration": [164, 164, 190]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 345824, "duration": [495, 497, 499]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1913, "duration": [436, 449, 451]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 171, "duration": [599, 610, 619]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 70020, "duration": [167, 169, 215]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 84, "duration": [38, 39, 52]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [50, 50, 52]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 10103, "duration": [87, 87, 88]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 444, "duration": [389, 398, 410]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [474, 483, 486]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 165540, "duration": [288, 295, 297]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1457, "duration": [586, 590, 591]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 131, "duration": [1088, 1115, 1151]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 4174359, "duration": [5922, 5958, 6198]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11192, "duration": [1271, 1276, 1288]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [2264, 2342, 2647]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 264631, "duration": [410, 413, 434]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 466, "duration": [284, 290, 298]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [338, 345, 352]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 55152, "duration": [149, 154, 167]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1061, "duration": [912, 963, 983]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 74, "duration": [1068, 1082, 1090]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 194085, "duration": [324, 330, 333]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 164, "duration": [44, 45, 45]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 121, "duration": [71, 71, 71]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 12785, "duration": [97, 102, 105]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 290, "duration": [130, 134, 134]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 277, "duration": [215, 216, 221]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 352602, "duration": [547, 549, 549]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1111, "duration": [99, 101, 102]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 963, "duration": [252, 298, 332]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 162074, "duration": [271, 273, 278]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 608, "duration": [101, 102, 107]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 485, "duration": [225, 231, 235]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 231765, "duration": [368, 373, 374]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 122, "duration": [150, 150, 210]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 10, "duration": [197, 198, 199]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 217412, "duration": [364, 367, 378]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 118291, "duration": [1610, 1610, 1918]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21737, "duration": [31281, 31387, 31779]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168234, "duration": [5729, 5806, 6173]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 367, "duration": [196, 210, 225]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [246, 272, 273]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 33310, "duration": [123, 124, 202]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 192, "duration": [110, 113, 118]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [156, 156, 164]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 46274, "duration": [141, 142, 142]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 180, "duration": [108, 112, 140]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 143, "duration": [178, 182, 183]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 268624, "duration": [410, 420, 436]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2130, "duration": [1119, 1164, 1179]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1484, 1486, 1489]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 2372213, "duration": [4047, 4049, 4137]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 248, "duration": [101, 104, 106]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 68, "duration": [145, 146, 166]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 47084, "duration": [140, 142, 155]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [40, 40, 58]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 226, "duration": [51, 52, 53]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 4838, "duration": [76, 76, 79]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 78, "duration": [51, 59, 65]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [60, 61, 95]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 17211, "duration": [111, 112, 113]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1532, "duration": [505, 507, 512]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 173, "duration": [634, 636, 651]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 76229, "duration": [173, 174, 178]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2422, "duration": [64, 65, 75]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2381, "duration": [210, 218, 220]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 6515, "duration": [86, 87, 97]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1633, "duration": [213, 214, 223]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 123, "duration": [375, 380, 391]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 73305, "duration": [168, 172, 181]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4110, "duration": [751, 769, 818]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 60, "duration": [1373, 1387, 1768]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 2315795, "duration": [4513, 4533, 4551]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [99, 100, 101]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [195, 205, 214]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 92901, "duration": [192, 196, 198]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 131, "duration": [395, 505, 515]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [460, 463, 463]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 226887, "duration": [404, 405, 424]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1539, "duration": [520, 522, 599]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 79, "duration": [744, 748, 778]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 322018, "duration": [513, 529, 530]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1358, "duration": [419, 420, 423]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [560, 582, 684]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 68175, "duration": [158, 169, 305]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 813, "duration": [255, 256, 263]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 67, "duration": [350, 350, 353]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 62207, "duration": [165, 167, 180]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [45, 48, 48]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [52, 52, 55]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 33193, "duration": [112, 116, 124]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3401, "duration": [584, 615, 617]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 821, "duration": [894, 905, 908]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 134076, "duration": [236, 242, 251]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2416, "duration": [487, 499, 540]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [738, 742, 743]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 105084, "duration": [203, 206, 209]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 162, "duration": [156, 156, 160]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [400, 404, 429]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168064, "duration": [5581, 5621, 5761]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 361, "duration": [92, 93, 100]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [181, 181, 183]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 167104, "duration": [276, 278, 286]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 679, "duration": [421, 441, 442]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [580, 584, 620]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 730213, "duration": [1120, 1122, 1126]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5744, "duration": [805, 806, 1010]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [1300, 1307, 1309]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 222790, "duration": [345, 362, 364]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 377, "duration": [476, 483, 599]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 16, "duration": [613, 614, 629]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 774500, "duration": [1334, 1360, 1391]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 639, "duration": [156, 158, 172]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [293, 299, 300]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 188645, "duration": [299, 303, 303]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 138, "duration": [73, 112, 132]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [82, 82, 83]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 14092, "duration": [110, 111, 112]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5577, "duration": [1103, 1105, 1108]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [1611, 1619, 1623]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 310569, "duration": [452, 454, 480]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 29, "duration": [35, 38, 56]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [40, 42, 42]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 14156, "duration": [92, 96, 103]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 144, "duration": [63, 63, 87]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [98, 99, 107]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 69112, "duration": [164, 167, 173]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2936, "duration": [328, 331, 332]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 611, "duration": [609, 628, 641]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 192280, "duration": [309, 312, 320]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9630, "duration": [770, 779, 787]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 181, "duration": [1639, 1643, 1662]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 389360, "duration": [563, 565, 574]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 490, "duration": [79, 80, 101]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 414, "duration": [122, 124, 127]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 11304, "duration": [98, 103, 104]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 431, "duration": [150, 153, 169]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 115, "duration": [273, 273, 281]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 308550, "duration": [476, 497, 519]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6560, "duration": [1264, 1285, 1301]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 16, "duration": [2179, 2183, 2194]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 4014085, "duration": [6591, 6601, 6611]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1218, "duration": [300, 310, 320]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [424, 426, 453]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 119020, "duration": [225, 228, 229]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 531, "duration": [284, 285, 285]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 82, "duration": [338, 340, 369]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 43329, "duration": [136, 138, 174]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2111, "duration": [411, 428, 430]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [624, 635, 681]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 159993, "duration": [276, 279, 279]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 370, "duration": [99, 100, 115]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [132, 135, 142]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 11717, "duration": [96, 98, 98]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 25282, "duration": [1001, 1007, 1015]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 210, "duration": [3179, 3225, 3442]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 909593, "duration": [1314, 1338, 1359]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 350, "duration": [236, 254, 306]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 141, "duration": [364, 368, 411]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 758590, "duration": [1125, 1146, 1161]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1273, "duration": [229, 240, 273]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [444, 468, 479]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 349637, "duration": [515, 519, 524]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 220, "duration": [65, 66, 66]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 206, "duration": [82, 83, 90]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 7958, "duration": [89, 90, 108]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 30970, "duration": [2860, 2870, 3190]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 272, "duration": [5113, 5272, 5294]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 446943, "duration": [647, 662, 672]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 112, "duration": [298, 317, 318]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [335, 347, 352]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 51473, "duration": [183, 183, 187]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1763, "duration": [389, 396, 400]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [604, 606, 612]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 266528, "duration": [396, 409, 412]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5003, "duration": [1525, 1534, 1538]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [1862, 1904, 1930]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980371, "duration": [5609, 5710, 6074]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [164, 166, 168]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 158, "duration": [215, 216, 217]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 21196, "duration": [110, 112, 114]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5094, "duration": [1049, 1258, 1269]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 419, "duration": [2040, 2128, 2354]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169609, "duration": [5810, 5829, 5849]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1216, "duration": [228, 230, 235]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 50, "duration": [377, 380, 386]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 196687, "duration": [313, 318, 358]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 56, "duration": [30, 31, 48]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 53, "duration": [51, 51, 52]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 144768, "duration": [240, 241, 243]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [199, 201, 207]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [257, 261, 265]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 727128, "duration": [1111, 1113, 1123]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 176, "duration": [187, 189, 195]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [420, 430, 430]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168609, "duration": [5717, 5776, 5847]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 521, "duration": [44, 55, 66]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 516, "duration": [76, 78, 79]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 11727, "duration": [93, 97, 129]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [192, 194, 213]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [294, 297, 297]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 100754, "duration": [201, 203, 204]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [27, 27, 29]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 35, "duration": [29, 30, 31]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 63, "duration": [27, 29, 32]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 425, "duration": [717, 721, 734]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [835, 854, 885]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 279042, "duration": [431, 435, 452]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 757, "duration": [598, 603, 650]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [724, 732, 748]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 292410, "duration": [465, 468, 469]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 74, "duration": [32, 35, 36]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 52, "duration": [44, 46, 46]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1372, "duration": [60, 67, 77]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1159, "duration": [201, 205, 214]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 120, "duration": [330, 330, 338]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 146946, "duration": [253, 256, 260]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6552, "duration": [150, 154, 159]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 6339, "duration": [513, 514, 523]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 63852, "duration": [161, 163, 192]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1950, "duration": [439, 455, 457]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [629, 637, 856]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 67801, "duration": [178, 185, 189]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2956, "duration": [580, 583, 596]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [860, 873, 877]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 172197, "duration": [282, 286, 289]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1145, "duration": [478, 481, 485]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 133, "duration": [610, 622, 778]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 139608, "duration": [240, 243, 244]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 330, "duration": [110, 111, 134]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [178, 188, 193]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 75177, "duration": [176, 177, 179]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 341, "duration": [138, 139, 140]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [186, 187, 189]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 65937, "duration": [160, 161, 166]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 983, "duration": [640, 646, 671]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 603, "duration": [1546, 1656, 1684]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269185, "duration": [10765, 10917, 11028]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1514, "duration": [630, 647, 733]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 44, "duration": [898, 916, 918]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 3107761, "duration": [4745, 4764, 4808]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 240, "duration": [229, 230, 239]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 27, "duration": [486, 488, 490]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168301, "duration": [5712, 6037, 6271]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 14, "duration": [40, 41, 72]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [47, 51, 53]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 16308, "duration": [112, 119, 126]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2705, "duration": [771, 776, 778]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 26, "duration": [1134, 1135, 1428]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 651176, "duration": [991, 994, 1019]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 125, "duration": [119, 124, 137]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [146, 153, 154]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 38349, "duration": [129, 129, 131]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 606, "duration": [76, 79, 80]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 348, "duration": [131, 133, 154]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 8849, "duration": [89, 90, 122]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2771, "duration": [1192, 1196, 1206]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 393, "duration": [1657, 1668, 1686]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 337147, "duration": [514, 533, 549]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 537, "duration": [159, 159, 160]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [257, 258, 272]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 90307, "duration": [187, 188, 191]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 94, "duration": [64, 65, 73]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 69, "duration": [84, 85, 86]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 53641, "duration": [164, 168, 170]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2723, "duration": [510, 516, 522]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 638, "duration": [782, 804, 836]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 132261, "duration": [244, 245, 280]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 489, "duration": [366, 392, 409]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [450, 456, 463]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 75263, "duration": [160, 172, 242]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9989, "duration": [974, 992, 995]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1678, 1729, 1747]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 178211, "duration": [296, 303, 304]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1195, "duration": [207, 207, 220]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [459, 467, 640]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 477882, "duration": [680, 683, 701]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 834, "duration": [232, 235, 237]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [324, 329, 340]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 68527, "duration": [158, 160, 162]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 424, "duration": [139, 153, 187]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 39, "duration": [246, 249, 251]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 294537, "duration": [435, 441, 451]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 400, "duration": [457, 459, 461]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 137, "duration": [545, 547, 600]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 555477, "duration": [823, 836, 838]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10926, "duration": [431, 435, 438]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 4589, "duration": [1714, 1737, 1743]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 962508, "duration": [1388, 1399, 1424]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 44, "duration": [100, 101, 105]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [116, 125, 138]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 22177, "duration": [108, 110, 118]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1249, "duration": [149, 154, 220]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 55, "duration": [299, 302, 323]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 183559, "duration": [292, 293, 297]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6482, "duration": [1024, 1025, 1026]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2037, "duration": [1806, 1814, 1817]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 318670, "duration": [503, 519, 532]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3112, "duration": [847, 856, 1069]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1527, 1537, 1567]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3802855, "duration": [5432, 5441, 5962]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 2192, "duration": [1152, 1183, 1183]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 163, "duration": [1506, 1553, 1554]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 254583, "duration": [507, 523, 683]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 76, "duration": [74, 78, 79]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [104, 110, 119]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 162351, "duration": [310, 316, 345]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 571, "duration": [423, 434, 538]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [575, 580, 596]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 620188, "duration": [939, 940, 954]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 415, "duration": [60, 60, 60]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 117, "duration": [141, 141, 150]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 91128, "duration": [182, 185, 188]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 739, "duration": [84, 84, 86]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 298, "duration": [144, 149, 169]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 9778, "duration": [100, 101, 121]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 301, "duration": [132, 137, 144]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 24, "duration": [202, 206, 211]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 140156, "duration": [247, 250, 257]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 31324, "duration": [1480, 1495, 1500]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8245, "duration": [9745, 9756, 9843]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168226, "duration": [5672, 6008, 6064]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 381, "duration": [75, 77, 88]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 341, "duration": [106, 108, 113]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 11347, "duration": [106, 106, 188]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1929, "duration": [228, 242, 245]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 34, "duration": [537, 556, 556]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 485132, "duration": [687, 696, 704]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 293, "duration": [275, 283, 286]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 251, "duration": [542, 542, 554]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3800825, "duration": [5617, 5626, 5632]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 40, "duration": [42, 43, 44]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [78, 83, 89]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 4010, "duration": [75, 76, 85]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1002, "duration": [267, 268, 275]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [373, 389, 393]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 57181, "duration": [148, 151, 152]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11227, "duration": [1865, 1894, 1914]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [2861, 2866, 2885]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 324999, "duration": [487, 488, 500]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2871, "duration": [1085, 1099, 1112]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 48, "duration": [1381, 1405, 1416]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1012784, "duration": [1573, 1577, 1634]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1241, "duration": [421, 426, 457]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 443, "duration": [898, 912, 1166]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806173, "duration": [5815, 5931, 5996]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8686, "duration": [2087, 2108, 2124]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [2835, 2849, 3515]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168904, "duration": [5820, 5874, 6142]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2488, "duration": [291, 295, 297]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1598, "duration": [530, 531, 546]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 121970, "duration": [222, 226, 230]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1791, "duration": [333, 339, 342]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [512, 524, 547]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 152743, "duration": [256, 269, 270]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [77, 90, 116]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [133, 140, 141]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 126726, "duration": [227, 235, 292]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9823, "duration": [1155, 1156, 1175]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1790, "duration": [1923, 1934, 1945]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 212022, "duration": [339, 340, 358]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 373, "duration": [71, 76, 84]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [154, 158, 168]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 148462, "duration": [255, 257, 258]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 97, "duration": [67, 70, 74]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [82, 86, 89]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 7393, "duration": [84, 86, 109]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3519, "duration": [404, 405, 407]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [793, 799, 871]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 355372, "duration": [506, 523, 542]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7697, "duration": [1673, 1706, 1715]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 55, "duration": [2633, 2679, 2682]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 4015608, "duration": [6174, 6227, 6271]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 55, "duration": [71, 73, 73]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [84, 84, 84]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 11520, "duration": [115, 115, 121]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2703, "duration": [976, 977, 978]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [1247, 1269, 1280]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980777, "duration": [5665, 5672, 5672]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 66, "duration": [42, 43, 43]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [62, 64, 91]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 178640, "duration": [284, 285, 298]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 136, "duration": [159, 170, 171]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 25, "duration": [215, 224, 281]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748828, "duration": [1286, 1291, 1292]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 47, "duration": [48, 50, 54]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [49, 50, 54]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 3783, "duration": [82, 84, 88]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14379, "duration": [476, 480, 495]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8754, "duration": [1653, 1702, 1749]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 273351, "duration": [416, 432, 445]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65, "duration": [71, 72, 72]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [85, 86, 86]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 29487, "duration": [120, 121, 122]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 426, "duration": [172, 235, 298]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 52, "duration": [248, 251, 269]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 463674, "duration": [769, 781, 785]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 128, "duration": [184, 187, 190]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [240, 243, 248]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 687518, "duration": [1006, 1021, 1059]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 88, "duration": [142, 146, 153]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 33, "duration": [188, 188, 259]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 638451, "duration": [912, 927, 949]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 339, "duration": [429, 459, 467]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 58, "duration": [624, 631, 639]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1424119, "duration": [2866, 2890, 2917]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 114, "duration": [82, 83, 83]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 42, "duration": [100, 100, 105]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 16349, "duration": [101, 101, 119]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 129, "duration": [39, 40, 52]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 122, "duration": [63, 64, 68]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 16639, "duration": [125, 139, 145]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5942, "duration": [1426, 1431, 1506]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 20, "duration": [2058, 2064, 2305]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1004290, "duration": [1776, 1815, 1830]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 9831, "duration": [1988, 2073, 2128]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 5175, "duration": [3738, 3793, 3801]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 3815913, "duration": [5461, 5517, 5520]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 101, "duration": [285, 296, 302]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 26, "duration": [347, 348, 349]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 621002, "duration": [961, 970, 973]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 42326, "duration": [3158, 3209, 3210]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 105, "duration": [6300, 6387, 6420]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 506318, "duration": [738, 739, 747]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 110, "duration": [63, 64, 78]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 46, "duration": [72, 74, 91]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7141, "duration": [84, 86, 86]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3633, "duration": [417, 438, 444]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [766, 818, 828]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 341994, "duration": [492, 501, 504]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 861, "duration": [215, 220, 221]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 98, "duration": [356, 362, 435]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 236925, "duration": [363, 366, 397]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2784, "duration": [185, 189, 189]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 853, "duration": [537, 540, 543]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 254858, "duration": [406, 427, 428]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 218, "duration": [66, 67, 69]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [88, 91, 92]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 7833, "duration": [87, 88, 105]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4083, "duration": [943, 961, 1154]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 877, "duration": [1988, 2307, 2628]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 4171625, "duration": [5967, 6259, 6361]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2520, "duration": [179, 184, 188]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1404, "duration": [448, 464, 485]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 138987, "duration": [244, 247, 251]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [220, 222, 259]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 28, "duration": [291, 296, 302]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1078395, "duration": [1667, 1708, 2108]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 92527, "duration": [6777, 6797, 6861]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 95, "duration": [15490, 15521, 15737]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4270464, "duration": [11671, 11963, 12189]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 60, "duration": [42, 43, 50]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [53, 55, 60]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 7172, "duration": [82, 84, 104]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1015, "duration": [160, 160, 160]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 86, "duration": [345, 358, 374]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 200981, "duration": [328, 331, 331]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4474, "duration": [347, 349, 351]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3236, "duration": [782, 795, 807]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 360654, "duration": [523, 529, 530]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 980, "duration": [250, 253, 260]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 784, "duration": [747, 752, 1107]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168065, "duration": [5553, 5605, 5650]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 284, "duration": [191, 192, 216]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 214, "duration": [266, 266, 284]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 126816, "duration": [246, 249, 257]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 83, "duration": [97, 98, 100]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 16, "duration": [126, 126, 127]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 55586, "duration": [153, 178, 202]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 58, "duration": [27, 29, 39]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 54, "duration": [43, 44, 45]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 15162, "duration": [91, 92, 105]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 201, "duration": [87, 87, 89]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [126, 132, 232]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 170597, "duration": [277, 283, 299]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 434, "duration": [186, 188, 203]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [231, 232, 236]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 26300, "duration": [116, 117, 163]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3258, "duration": [1333, 1345, 1464]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 244, "duration": [1769, 1775, 1809]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 467039, "duration": [734, 739, 745]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 121, "duration": [916, 923, 933]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 20, "duration": [983, 993, 1009]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 635117, "duration": [951, 959, 1112]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4708, "duration": [554, 555, 582]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1322, "duration": [1100, 1110, 1118]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 487676, "duration": [724, 729, 740]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3919, "duration": [779, 798, 804]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1515, "duration": [1135, 1139, 1157]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 144566, "duration": [253, 257, 259]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 234, "duration": [151, 157, 158]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 151, "duration": [218, 226, 227]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 192019, "duration": [320, 325, 327]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8481, "duration": [3921, 3956, 3968]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 82, "duration": [5154, 5164, 5220]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 778663, "duration": [1146, 1146, 1163]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 24, "duration": [108, 113, 119]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 19, "duration": [134, 136, 137]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 231009, "duration": [393, 406, 414]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2050, "duration": [251, 251, 267]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 314, "duration": [430, 441, 442]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 89056, "duration": [189, 191, 301]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 319, "duration": [131, 135, 145]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [183, 185, 191]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 41550, "duration": [132, 137, 139]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1982, "duration": [283, 283, 287]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [487, 489, 542]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 126649, "duration": [232, 245, 256]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 652, "duration": [150, 153, 187]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [259, 259, 263]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 148177, "duration": [258, 261, 286]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 372, "duration": [172, 173, 176]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 115, "duration": [217, 220, 220]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 27089, "duration": [118, 119, 149]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 169, "duration": [186, 215, 223]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 65, "duration": [219, 226, 228]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 536978, "duration": [790, 790, 796]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 16193, "duration": [1317, 1320, 1320]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2840, "duration": [3406, 3418, 3436]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 686232, "duration": [1555, 1561, 1615]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 21, "duration": [72, 93, 104]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [89, 92, 114]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748534, "duration": [1286, 1298, 1357]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2570, "duration": [414, 414, 435]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 33, "duration": [671, 681, 685]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 155369, "duration": [268, 270, 285]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6165, "duration": [790, 799, 800]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 255, "duration": [1278, 1306, 1346]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 126586, "duration": [235, 239, 241]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 425, "duration": [191, 197, 205]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [245, 248, 249]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 36113, "duration": [131, 133, 137]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 237, "duration": [497, 499, 507]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 37, "duration": [680, 694, 718]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3837687, "duration": [6861, 6929, 6983]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 660, "duration": [167828, 168141, 169095]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 79, "duration": [160, 176, 223]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 4168064, "duration": [2964, 3080, 3543]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 748535, "duration": [4102, 4173, 5074]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 79, "duration": [228751, 230976, 243505]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 4168064, "duration": [226606, 232783, 242394]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1950439, "duration": [233732, 233934, 242893]}], "tantivy-0.19": [{"query": "the", "tags": ["term"], "count": 4168064, "duration": [19, 20, 23]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 79, "duration": [104, 107, 109]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [122, 122, 209]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 15456, "duration": [98, 98, 113]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 195, "duration": [51, 55, 56]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 110, "duration": [73, 77, 77]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 4173, "duration": [80, 83, 86]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 856, "duration": [76, 78, 82]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 112, "duration": [174, 174, 178]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 104150, "duration": [208, 210, 220]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [116, 118, 118]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [190, 195, 203]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 54291, "duration": [146, 153, 159]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 266, "duration": [451, 452, 459]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 18, "duration": [505, 506, 510]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 195119, "duration": [341, 344, 345]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2173, "duration": [660, 666, 683]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [869, 872, 886]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 167943, "duration": [284, 287, 310]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14165, "duration": [1093, 1096, 1102]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [2279, 2301, 2333]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 612165, "duration": [880, 886, 890]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 85, "duration": [47, 48, 49]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 56, "duration": [61, 70, 72]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 7747, "duration": [83, 84, 87]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 693, "duration": [514, 518, 533]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [621, 623, 625]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 397912, "duration": [621, 639, 654]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7346, "duration": [1640, 1664, 1908]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 201, "duration": [2349, 2382, 2744]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 4173861, "duration": [6219, 6252, 6307]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4496, "duration": [282, 283, 301]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 307, "duration": [723, 727, 730]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 454176, "duration": [653, 655, 657]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 161, "duration": [237, 242, 354]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [262, 263, 274]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 336807, "duration": [513, 519, 523]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1055, "duration": [209, 210, 213]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 177, "duration": [317, 320, 329]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 61359, "duration": [153, 160, 165]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3760, "duration": [675, 686, 691]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 252, "duration": [993, 1002, 1019]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 151582, "duration": [269, 270, 290]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 569, "duration": [285, 289, 302]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [354, 354, 358]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 86776, "duration": [188, 192, 217]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [77, 78, 78]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [80, 82, 103]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 249193, "duration": [388, 397, 401]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 81, "duration": [120, 121, 123]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [134, 134, 139]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 20969, "duration": [105, 109, 109]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4617, "duration": [808, 813, 825]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 141, "duration": [1216, 1229, 1277]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 194083, "duration": [315, 324, 329]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 107, "duration": [100, 102, 103]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 64, "duration": [143, 151, 153]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1192562, "duration": [1789, 1808, 1826]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1239, "duration": [537, 553, 554]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 566, "duration": [914, 914, 963]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 510849, "duration": [804, 807, 812]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7014, "duration": [1077, 1108, 1364]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 329, "duration": [1672, 1677, 1694]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 170364, "duration": [285, 290, 297]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48653, "duration": [660, 662, 669]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 44879, "duration": [3537, 3542, 3842]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 151349, "duration": [319, 330, 336]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 137, "duration": [221, 224, 233]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 53, "duration": [258, 259, 263]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 95654, "duration": [210, 217, 240]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7387, "duration": [845, 853, 858]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 302, "duration": [1443, 1452, 1459]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 260381, "duration": [399, 402, 402]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5040, "duration": [681, 687, 705]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 70, "duration": [1086, 1088, 1107]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 217122, "duration": [348, 348, 357]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1917, "duration": [660, 671, 683]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 94, "duration": [922, 927, 945]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 584269, "duration": [889, 898, 961]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 733, "duration": [299, 303, 303]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 76, "duration": [365, 365, 374]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 46081, "duration": [141, 142, 145]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 421, "duration": [610, 618, 620]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 61, "duration": [701, 703, 710]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 401520, "duration": [627, 628, 628]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1187, "duration": [144, 144, 144]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [313, 318, 319]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 160168, "duration": [267, 269, 273]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 475, "duration": [652, 657, 669]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [770, 779, 868]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 402259, "duration": [624, 637, 646]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 604, "duration": [257, 258, 266]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [342, 344, 345]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 99117, "duration": [200, 202, 209]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65770, "duration": [2581, 2606, 2681]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [7273, 7281, 7357]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 825043, "duration": [1248, 1265, 1277]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6146, "duration": [902, 910, 932]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1421, 1432, 1443]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 298137, "duration": [464, 466, 467]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 13581, "duration": [1146, 1165, 1169]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1894, "duration": [2345, 2354, 2376]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 229696, "duration": [374, 403, 627]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 314, "duration": [50, 50, 52]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 288, "duration": [72, 73, 77]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 10040, "duration": [92, 93, 95]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6957, "duration": [1232, 1238, 1248]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [2117, 2118, 2132]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 702120, "duration": [1093, 1093, 1098]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13996, "duration": [3011, 3035, 3059]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [4559, 4566, 4589]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1251867, "duration": [2216, 2222, 2234]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4268, "duration": [1151, 1154, 1166]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 440, "duration": [1755, 1778, 1781]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 909970, "duration": [1394, 1403, 1409]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 23, "duration": [42, 48, 48]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [47, 48, 76]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 10684, "duration": [89, 93, 98]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 157, "duration": [214, 216, 221]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [235, 237, 246]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 35325, "duration": [130, 131, 170]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1316, "duration": [588, 617, 823]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1156, "duration": [1854, 1913, 1977]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269120, "duration": [11187, 11219, 11689]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 43372, "duration": [2907, 2922, 3148]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15089, "duration": [10612, 10715, 10845]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806414, "duration": [6125, 6213, 6434]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 239, "duration": [95, 97, 98]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 124, "duration": [148, 148, 153]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 333268, "duration": [482, 500, 632]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 618, "duration": [198, 203, 304]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 168, "duration": [360, 361, 413]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970283, "duration": [1723, 1736, 1746]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 44521, "duration": [3259, 3272, 3275]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 4100, "duration": [8596, 8637, 8921]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 3808757, "duration": [6196, 6202, 6378]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 960, "duration": [298, 302, 313]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 244, "duration": [437, 437, 438]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 134727, "duration": [241, 244, 248]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1490, "duration": [656, 660, 671]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [810, 821, 826]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 106587, "duration": [265, 275, 276]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3574, "duration": [877, 898, 909]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1021, "duration": [1150, 1161, 1169]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 146818, "duration": [259, 263, 271]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 20, "duration": [31, 33, 34]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [41, 59, 64]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 82708, "duration": [175, 182, 191]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [40, 42, 52]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [40, 41, 42]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1791, "duration": [61, 61, 63]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 3397, "duration": [1536, 1570, 1678]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 12, "duration": [1916, 1946, 2314]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4053765, "duration": [9645, 9696, 9750]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 429, "duration": [67, 69, 84]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 41, "duration": [145, 147, 150]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 130601, "duration": [234, 234, 237]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2860, "duration": [276, 279, 284]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 828, "duration": [481, 486, 488]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 54702, "duration": [157, 157, 159]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10899, "duration": [1253, 1301, 1837]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 922, "duration": [3123, 3151, 3753]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806986, "duration": [6067, 6072, 6096]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [97, 98, 99]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [107, 111, 115]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 11759, "duration": [93, 93, 97]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 443, "duration": [265, 268, 273]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [430, 434, 439]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798567, "duration": [5390, 5399, 5419]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1994, "duration": [939, 1001, 1010]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1444, "duration": [2323, 2329, 2412]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269267, "duration": [11081, 11330, 11340]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 418, "duration": [298, 310, 333]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 224, "duration": [509, 515, 516]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798846, "duration": [5394, 5426, 5987]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10806, "duration": [627, 628, 628]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 831, "duration": [1495, 1501, 1529]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 401948, "duration": [592, 593, 629]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 90, "duration": [63, 65, 66]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [68, 68, 68]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7731, "duration": [84, 90, 94]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3336, "duration": [592, 592, 602]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [897, 901, 911]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 237265, "duration": [362, 368, 428]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48, "duration": [40, 41, 43]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [50, 51, 53]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 5320, "duration": [77, 78, 83]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1751, "duration": [185, 187, 189]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1335, "duration": [343, 345, 349]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 79894, "duration": [179, 184, 217]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 19247, "duration": [1827, 1829, 1855]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 626, "duration": [3240, 3242, 3385]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 301066, "duration": [467, 472, 482]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [64, 64, 72]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 81, "duration": [93, 97, 97]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 21776, "duration": [105, 109, 110]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3980, "duration": [69, 70, 73]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3891, "duration": [329, 336, 343]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 43534, "duration": [143, 143, 150]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 109, "duration": [123, 124, 127]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 97, "duration": [151, 162, 194]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 47760, "duration": [154, 155, 192]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 61, "duration": [78, 78, 80]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [91, 94, 103]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 14465, "duration": [97, 98, 101]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2638, "duration": [361, 363, 377]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 60, "duration": [681, 688, 801]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 301693, "duration": [443, 461, 484]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 12, "duration": [45, 46, 51]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [43, 44, 57]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 57879, "duration": [145, 146, 218]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1238, "duration": [255, 259, 264]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 391, "duration": [543, 546, 547]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970192, "duration": [1740, 1748, 1762]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 415, "duration": [628, 633, 656]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [941, 954, 1242]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4316960, "duration": [12179, 12249, 12571]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3896, "duration": [880, 881, 888]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1218, 1236, 1240]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 153516, "duration": [266, 268, 271]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 896, "duration": [117, 121, 122]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 475, "duration": [202, 206, 227]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 36406, "duration": [128, 131, 131]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1044, "duration": [293, 295, 297]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 74, "duration": [402, 405, 474]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 52377, "duration": [145, 150, 153]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1550, "duration": [241, 243, 245]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 131, "duration": [377, 383, 413]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 150258, "duration": [264, 281, 303]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1246, "duration": [279, 283, 292]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 235, "duration": [379, 395, 404]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 66350, "duration": [160, 168, 196]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5054, "duration": [462, 466, 469]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [920, 924, 928]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 310479, "duration": [466, 470, 503]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 24403, "duration": [1314, 1325, 1327]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12115, "duration": [3291, 3296, 3318]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 503137, "duration": [742, 743, 745]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2540, "duration": [344, 349, 350]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 59, "duration": [623, 628, 629]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 200883, "duration": [331, 331, 450]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 96618, "duration": [6783, 6838, 6859]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1140, "duration": [14046, 14137, 14546]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1038231, "duration": [1549, 1556, 1563]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5964, "duration": [1094, 1099, 1107]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 256, "duration": [1713, 1723, 1752]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 402607, "duration": [583, 607, 616]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 142, "duration": [33, 34, 35]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 142, "duration": [39, 40, 42]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 10007, "duration": [92, 100, 228]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2001, "duration": [775, 792, 795]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [1160, 1169, 1249]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168649, "duration": [5997, 6189, 6255]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2315, "duration": [255, 260, 261]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [445, 449, 465]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 51200, "duration": [145, 148, 153]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6825, "duration": [601, 604, 605]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2155, "duration": [1163, 1165, 1173]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 114383, "duration": [228, 230, 230]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 47, "duration": [368, 375, 379]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 33, "duration": [579, 580, 581]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4068900, "duration": [11394, 11606, 11636]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4125, "duration": [490, 494, 495]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [892, 898, 930]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 272980, "duration": [413, 417, 418]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4710, "duration": [291, 296, 300]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2046, "duration": [649, 662, 666]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 193597, "duration": [321, 331, 389]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8204, "duration": [2150, 2172, 2190]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [3136, 3153, 3154]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 854242, "duration": [1327, 1327, 1334]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1608, "duration": [391, 397, 409]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [522, 525, 525]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 66857, "duration": [164, 168, 169]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 328, "duration": [186, 188, 191]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 97, "duration": [225, 225, 250]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 32425, "duration": [129, 131, 135]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [40, 41, 47]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [49, 50, 54]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 39428, "duration": [140, 145, 146]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10203, "duration": [1110, 1123, 1155]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [2334, 2346, 2347]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 2470107, "duration": [5015, 5058, 5091]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 55, "duration": [45, 46, 47]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 43, "duration": [57, 60, 64]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 58784, "duration": [140, 147, 150]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 901, "duration": [197, 198, 202]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 213, "duration": [300, 304, 376]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 73481, "duration": [169, 170, 181]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7776, "duration": [786, 787, 793]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3077, "duration": [1397, 1407, 1416]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 127400, "duration": [244, 260, 272]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1282, "duration": [943, 950, 976]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 31, "duration": [1493, 1504, 1768]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 961109, "duration": [1703, 1729, 1737]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 155, "duration": [69, 72, 92]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 45, "duration": [104, 108, 127]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 280642, "duration": [419, 429, 431]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 51, "duration": [79, 80, 83]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 35, "duration": [102, 103, 109]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 102668, "duration": [212, 214, 215]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1997, "duration": [365, 368, 373]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 93, "duration": [597, 599, 604]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 212065, "duration": [344, 345, 376]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1613, "duration": [472, 474, 480]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [630, 639, 739]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 109701, "duration": [210, 214, 221]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 593, "duration": [43, 43, 44]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 373, "duration": [101, 101, 101]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 32570, "duration": [121, 125, 127]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 358, "duration": [91, 94, 95]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 89, "duration": [126, 127, 130]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 29690, "duration": [121, 123, 123]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [161, 168, 168]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [190, 190, 192]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 23089, "duration": [119, 120, 124]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7853, "duration": [1731, 1781, 1999]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 140, "duration": [2564, 2574, 2588]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169493, "duration": [6202, 6244, 6261]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 207, "duration": [43, 43, 46]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [64, 68, 73]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 8017, "duration": [84, 90, 97]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3053, "duration": [485, 502, 540]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 100, "duration": [749, 754, 756]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 132425, "duration": [243, 244, 314]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 357, "duration": [91, 92, 104]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 328, "duration": [120, 120, 121]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 10614, "duration": [103, 112, 122]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 158, "duration": [161, 168, 175]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [147, 151, 180]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 22473, "duration": [114, 119, 120]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1927, "duration": [394, 403, 410]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 681, "duration": [555, 571, 572]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 88332, "duration": [190, 193, 207]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 644, "duration": [133, 135, 169]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 73, "duration": [226, 239, 249]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 103711, "duration": [210, 217, 220]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13480, "duration": [3493, 3513, 3527]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 969, "duration": [5085, 5106, 5120]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 918169, "duration": [1421, 1423, 1428]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 8141, "duration": [639, 643, 648]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1340, 1344, 1377]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 375689, "duration": [551, 551, 578]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 278, "duration": [359, 362, 370]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [421, 422, 429]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 212074, "duration": [362, 365, 367]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 266, "duration": [125, 128, 134]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 135, "duration": [155, 157, 199]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 16569, "duration": [101, 104, 105]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 22, "duration": [49, 51, 54]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [53, 54, 54]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 6674, "duration": [86, 86, 87]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1329, "duration": [1030, 1034, 1051]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 42, "duration": [1223, 1233, 1242]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 281073, "duration": [454, 456, 458]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 240, "duration": [134, 135, 135]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [155, 159, 161]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 38213, "duration": [128, 133, 140]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 867, "duration": [119, 121, 122]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [202, 203, 215]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 28879, "duration": [121, 124, 168]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 406, "duration": [106, 109, 113]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 318, "duration": [160, 165, 166]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 345824, "duration": [510, 525, 558]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1913, "duration": [436, 440, 447]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 171, "duration": [579, 586, 599]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 70020, "duration": [169, 170, 171]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 84, "duration": [43, 52, 53]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [48, 49, 50]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 10103, "duration": [86, 88, 101]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 444, "duration": [379, 383, 384]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [466, 467, 478]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 165540, "duration": [300, 315, 336]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1457, "duration": [593, 595, 613]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 131, "duration": [1119, 1125, 1186]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 4174359, "duration": [6076, 6204, 6286]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11192, "duration": [1266, 1268, 1281]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [2241, 2248, 2267]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 264631, "duration": [421, 435, 535]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 466, "duration": [288, 297, 299]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [335, 339, 341]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 55152, "duration": [148, 153, 171]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1061, "duration": [931, 942, 943]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 74, "duration": [1080, 1082, 1110]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 194085, "duration": [333, 341, 355]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 164, "duration": [45, 46, 48]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 121, "duration": [72, 73, 74]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 12785, "duration": [100, 102, 102]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 290, "duration": [128, 129, 130]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 277, "duration": [215, 216, 250]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 352602, "duration": [532, 547, 566]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1111, "duration": [98, 100, 105]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 963, "duration": [247, 250, 257]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 162074, "duration": [275, 281, 288]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 608, "duration": [100, 101, 107]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 485, "duration": [225, 227, 240]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 231765, "duration": [380, 381, 397]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 122, "duration": [145, 148, 150]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 10, "duration": [197, 198, 199]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 217412, "duration": [379, 380, 384]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 118291, "duration": [1592, 1593, 1903]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21737, "duration": [32242, 32604, 33011]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168234, "duration": [5863, 5925, 5929]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 367, "duration": [198, 200, 200]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [247, 252, 256]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 33310, "duration": [122, 126, 134]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 192, "duration": [110, 112, 113]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [152, 156, 160]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 46274, "duration": [138, 145, 168]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 180, "duration": [112, 113, 123]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 143, "duration": [176, 177, 180]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 268624, "duration": [428, 431, 432]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2130, "duration": [1132, 1169, 1223]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1482, 1536, 1572]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 2372213, "duration": [4067, 4078, 4094]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 248, "duration": [102, 103, 104]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 68, "duration": [140, 141, 142]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 47084, "duration": [147, 148, 207]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [37, 49, 54]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 226, "duration": [49, 53, 76]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 4838, "duration": [77, 81, 90]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 78, "duration": [50, 51, 55]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [61, 61, 63]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 17211, "duration": [119, 125, 131]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1532, "duration": [487, 491, 506]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 173, "duration": [618, 623, 625]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 76229, "duration": [175, 180, 186]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2422, "duration": [63, 66, 69]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2381, "duration": [210, 215, 223]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 6515, "duration": [86, 90, 94]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1633, "duration": [208, 208, 223]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 123, "duration": [367, 375, 376]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 73305, "duration": [170, 175, 207]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4110, "duration": [738, 747, 790]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 60, "duration": [1353, 1358, 1373]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 2315795, "duration": [4541, 4561, 4579]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [97, 102, 127]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [181, 188, 192]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 92901, "duration": [194, 195, 200]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 131, "duration": [399, 400, 401]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [447, 453, 580]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 226887, "duration": [403, 409, 411]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1539, "duration": [520, 528, 532]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 79, "duration": [737, 741, 747]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 322018, "duration": [521, 536, 552]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1358, "duration": [417, 419, 432]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [546, 551, 555]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 68175, "duration": [163, 174, 182]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 813, "duration": [263, 278, 282]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 67, "duration": [335, 335, 347]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 62207, "duration": [162, 165, 176]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [45, 50, 91]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [50, 53, 74]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 33193, "duration": [112, 118, 121]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3401, "duration": [592, 600, 605]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 821, "duration": [879, 888, 890]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 134076, "duration": [238, 241, 258]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2416, "duration": [490, 492, 493]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [714, 748, 769]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 105084, "duration": [211, 214, 215]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 162, "duration": [149, 152, 170]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [400, 405, 420]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168064, "duration": [5663, 5699, 6144]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 361, "duration": [92, 93, 99]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [174, 181, 181]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 167104, "duration": [279, 281, 283]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 679, "duration": [425, 428, 435]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [554, 565, 626]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 730213, "duration": [1117, 1132, 1135]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5744, "duration": [800, 801, 807]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [1279, 1312, 1647]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 222790, "duration": [351, 358, 362]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 377, "duration": [483, 492, 513]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 16, "duration": [607, 620, 620]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 774500, "duration": [1356, 1405, 1950]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 639, "duration": [151, 155, 155]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [296, 304, 310]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 188645, "duration": [304, 314, 390]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 138, "duration": [62, 66, 153]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [79, 86, 89]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 14092, "duration": [119, 119, 120]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5577, "duration": [1094, 1103, 1200]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [1602, 1623, 1627]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 310569, "duration": [489, 509, 523]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 29, "duration": [35, 41, 41]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [40, 40, 40]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 14156, "duration": [94, 94, 97]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 144, "duration": [63, 66, 67]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [98, 98, 118]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 69112, "duration": [163, 165, 266]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2936, "duration": [328, 332, 335]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 611, "duration": [606, 610, 616]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 192280, "duration": [313, 324, 327]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9630, "duration": [772, 777, 783]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 181, "duration": [1602, 1602, 1624]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 389360, "duration": [573, 582, 589]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 490, "duration": [77, 79, 79]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 414, "duration": [120, 125, 153]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 11304, "duration": [96, 97, 105]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 431, "duration": [144, 150, 151]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 115, "duration": [266, 272, 274]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 308550, "duration": [478, 483, 483]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6560, "duration": [1292, 1339, 1358]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 16, "duration": [2135, 2184, 2201]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 4014085, "duration": [6696, 6752, 7049]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1218, "duration": [290, 293, 302]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [411, 418, 422]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 119020, "duration": [225, 228, 231]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 531, "duration": [280, 280, 284]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 82, "duration": [329, 357, 447]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 43329, "duration": [138, 140, 144]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2111, "duration": [414, 417, 420]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [619, 620, 622]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 159993, "duration": [274, 277, 278]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 370, "duration": [99, 101, 108]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [136, 137, 140]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 11717, "duration": [95, 111, 115]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 25282, "duration": [990, 1001, 1008]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 210, "duration": [3156, 3174, 3323]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 909593, "duration": [1351, 1355, 1365]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 350, "duration": [237, 251, 275]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 141, "duration": [358, 363, 364]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 758590, "duration": [1140, 1147, 1156]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1273, "duration": [224, 224, 231]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [445, 446, 453]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 349637, "duration": [515, 517, 523]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 220, "duration": [65, 66, 66]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 206, "duration": [81, 85, 95]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 7958, "duration": [91, 93, 93]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 30970, "duration": [2837, 2841, 2842]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 272, "duration": [5049, 5063, 5099]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 446943, "duration": [660, 666, 806]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 112, "duration": [305, 310, 312]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [333, 343, 346]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 51473, "duration": [190, 190, 194]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1763, "duration": [389, 389, 467]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [595, 599, 622]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 266528, "duration": [409, 412, 416]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5003, "duration": [1490, 1491, 1505]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [1876, 1890, 1912]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980371, "duration": [5692, 5718, 5742]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [162, 164, 165]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 158, "duration": [210, 212, 214]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 21196, "duration": [106, 106, 110]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5094, "duration": [1048, 1070, 1273]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 419, "duration": [1946, 2093, 2366]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169609, "duration": [5921, 6023, 6041]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1216, "duration": [228, 243, 291]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 50, "duration": [366, 369, 379]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 196687, "duration": [322, 332, 359]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 56, "duration": [30, 31, 32]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 53, "duration": [50, 52, 61]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 144768, "duration": [238, 244, 248]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [196, 196, 198]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [262, 265, 279]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 727128, "duration": [1110, 1125, 1147]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 176, "duration": [182, 183, 218]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [409, 410, 417]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168609, "duration": [5803, 5863, 6038]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 521, "duration": [41, 48, 53]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 516, "duration": [76, 76, 77]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 11727, "duration": [96, 97, 131]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [187, 192, 194]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [283, 285, 295]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 100754, "duration": [204, 205, 207]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [25, 26, 30]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 35, "duration": [27, 31, 35]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 63, "duration": [29, 29, 32]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 425, "duration": [721, 725, 727]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [813, 820, 825]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 279042, "duration": [444, 453, 456]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 757, "duration": [591, 597, 599]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [721, 727, 759]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 292410, "duration": [473, 477, 486]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 74, "duration": [33, 33, 35]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 52, "duration": [50, 63, 66]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1372, "duration": [61, 62, 62]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1159, "duration": [195, 201, 212]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 120, "duration": [327, 329, 333]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 146946, "duration": [252, 256, 320]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6552, "duration": [157, 160, 169]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 6339, "duration": [482, 485, 489]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 63852, "duration": [164, 169, 169]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1950, "duration": [442, 443, 446]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [608, 608, 775]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 67801, "duration": [190, 192, 194]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2956, "duration": [577, 585, 588]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [857, 864, 865]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 172197, "duration": [286, 286, 289]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1145, "duration": [467, 472, 506]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 133, "duration": [594, 595, 603]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 139608, "duration": [247, 249, 251]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 330, "duration": [107, 112, 145]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [172, 176, 193]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 75177, "duration": [172, 174, 174]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 341, "duration": [132, 141, 142]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [185, 187, 190]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 65937, "duration": [161, 166, 178]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 983, "duration": [632, 646, 651]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 603, "duration": [1596, 1597, 1639]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269185, "duration": [11163, 11255, 11765]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1514, "duration": [628, 642, 659]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 44, "duration": [890, 895, 900]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 3107761, "duration": [4747, 4769, 5256]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 240, "duration": [231, 235, 254]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 27, "duration": [484, 488, 506]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168301, "duration": [6028, 6200, 6344]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 14, "duration": [38, 39, 40]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [47, 48, 55]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 16308, "duration": [112, 125, 128]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2705, "duration": [776, 779, 783]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 26, "duration": [1123, 1124, 1179]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 651176, "duration": [989, 1008, 1038]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 125, "duration": [121, 127, 133]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [145, 146, 150]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 38349, "duration": [127, 135, 185]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 606, "duration": [78, 79, 81]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 348, "duration": [125, 129, 134]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 8849, "duration": [90, 92, 93]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2771, "duration": [1180, 1188, 1205]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 393, "duration": [1648, 1660, 1665]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 337147, "duration": [530, 532, 533]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 537, "duration": [156, 158, 161]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [247, 256, 261]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 90307, "duration": [192, 193, 201]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 94, "duration": [64, 72, 75]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 69, "duration": [84, 85, 106]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 53641, "duration": [159, 166, 193]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2723, "duration": [512, 518, 520]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 638, "duration": [767, 768, 772]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 132261, "duration": [246, 248, 248]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 489, "duration": [370, 373, 374]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [449, 451, 452]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 75263, "duration": [168, 173, 186]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9989, "duration": [965, 970, 986]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1658, 1672, 1676]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 178211, "duration": [304, 312, 313]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1195, "duration": [208, 210, 210]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [457, 458, 459]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 477882, "duration": [679, 680, 683]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 834, "duration": [227, 229, 231]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [320, 330, 340]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 68527, "duration": [161, 161, 162]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 424, "duration": [141, 144, 149]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 39, "duration": [244, 250, 256]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 294537, "duration": [433, 438, 445]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 400, "duration": [449, 451, 468]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 137, "duration": [539, 541, 551]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 555477, "duration": [835, 839, 840]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10926, "duration": [423, 427, 445]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 4589, "duration": [1642, 1660, 1660]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 962508, "duration": [1404, 1415, 1434]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 44, "duration": [99, 99, 105]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [118, 121, 136]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 22177, "duration": [110, 111, 123]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1249, "duration": [145, 146, 152]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 55, "duration": [290, 291, 295]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 183559, "duration": [296, 303, 309]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6482, "duration": [1011, 1032, 1032]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2037, "duration": [1802, 1806, 1930]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 318670, "duration": [519, 521, 526]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3112, "duration": [850, 917, 1004]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1531, 1532, 1583]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3802855, "duration": [5546, 5549, 5569]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 2192, "duration": [1156, 1170, 1170]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 163, "duration": [1474, 1484, 1553]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 254583, "duration": [527, 528, 547]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 76, "duration": [76, 77, 81]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [103, 104, 104]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 162351, "duration": [297, 300, 306]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 571, "duration": [425, 427, 429]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [572, 575, 591]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 620188, "duration": [942, 966, 972]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 415, "duration": [60, 62, 64]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 117, "duration": [129, 131, 136]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 91128, "duration": [186, 192, 196]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 739, "duration": [80, 84, 91]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 298, "duration": [140, 140, 141]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 9778, "duration": [98, 100, 118]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 301, "duration": [132, 136, 141]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 24, "duration": [199, 208, 216]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 140156, "duration": [243, 248, 268]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 31324, "duration": [1466, 1527, 1530]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8245, "duration": [10128, 10397, 10724]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168226, "duration": [5741, 6159, 6438]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 381, "duration": [75, 76, 78]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 341, "duration": [106, 107, 107]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 11347, "duration": [95, 101, 108]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1929, "duration": [225, 226, 228]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 34, "duration": [522, 554, 692]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 485132, "duration": [694, 706, 711]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 293, "duration": [275, 278, 282]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 251, "duration": [530, 534, 760]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3800825, "duration": [5671, 5702, 5771]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 40, "duration": [43, 44, 45]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [57, 59, 84]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 4010, "duration": [75, 77, 82]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1002, "duration": [258, 260, 268]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [365, 366, 369]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 57181, "duration": [152, 153, 161]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11227, "duration": [1852, 1855, 1871]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [2828, 2840, 2842]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 324999, "duration": [486, 489, 510]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2871, "duration": [1048, 1065, 1094]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 48, "duration": [1378, 1435, 1495]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1012784, "duration": [1592, 1597, 1791]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1241, "duration": [426, 426, 427]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 443, "duration": [905, 906, 911]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806173, "duration": [5947, 5986, 6480]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8686, "duration": [2099, 2105, 2115]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [2861, 2863, 2864]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168904, "duration": [5938, 5945, 5978]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2488, "duration": [287, 290, 294]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1598, "duration": [511, 512, 518]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 121970, "duration": [229, 231, 234]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1791, "duration": [330, 331, 333]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [496, 506, 538]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 152743, "duration": [261, 262, 270]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [75, 88, 95]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [128, 135, 138]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 126726, "duration": [227, 230, 233]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9823, "duration": [1133, 1149, 1180]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1790, "duration": [1870, 1877, 1884]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 212022, "duration": [346, 351, 352]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 373, "duration": [73, 74, 75]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [144, 147, 169]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 148462, "duration": [256, 258, 357]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 97, "duration": [65, 69, 80]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [84, 85, 87]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 7393, "duration": [85, 87, 88]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3519, "duration": [395, 402, 410]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [796, 798, 804]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 355372, "duration": [512, 520, 522]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7697, "duration": [1709, 1721, 2077]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 55, "duration": [2657, 2848, 3001]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 4015608, "duration": [6334, 6351, 6357]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 55, "duration": [71, 71, 72]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [80, 83, 90]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 11520, "duration": [115, 117, 127]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2703, "duration": [965, 968, 985]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [1255, 1258, 1261]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980777, "duration": [5698, 5731, 5762]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 66, "duration": [43, 43, 53]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [59, 60, 64]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 178640, "duration": [288, 289, 444]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 136, "duration": [171, 171, 175]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 25, "duration": [201, 206, 289]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748828, "duration": [1288, 1289, 1332]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 47, "duration": [46, 47, 50]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [46, 49, 85]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 3783, "duration": [82, 90, 99]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14379, "duration": [473, 475, 475]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8754, "duration": [1612, 1612, 1618]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 273351, "duration": [428, 431, 434]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65, "duration": [71, 73, 73]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [82, 86, 113]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 29487, "duration": [123, 124, 132]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 426, "duration": [151, 176, 211]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 52, "duration": [239, 240, 268]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 463674, "duration": [766, 779, 801]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 128, "duration": [190, 195, 213]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [240, 248, 252]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 687518, "duration": [1007, 1013, 1030]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 88, "duration": [152, 157, 182]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 33, "duration": [176, 179, 230]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 638451, "duration": [920, 929, 936]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 339, "duration": [439, 454, 473]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 58, "duration": [611, 611, 622]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1424119, "duration": [2917, 2928, 2954]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 114, "duration": [83, 89, 98]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 42, "duration": [97, 99, 112]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 16349, "duration": [100, 101, 101]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 129, "duration": [40, 40, 44]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 122, "duration": [61, 66, 131]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 16639, "duration": [128, 145, 145]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5942, "duration": [1399, 1415, 1454]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 20, "duration": [2029, 2048, 2050]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1004290, "duration": [1812, 1825, 1841]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 9831, "duration": [2013, 2024, 2043]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 5175, "duration": [3783, 3810, 3903]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 3815913, "duration": [5530, 5581, 5677]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 101, "duration": [287, 292, 297]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 26, "duration": [343, 349, 369]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 621002, "duration": [942, 950, 970]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 42326, "duration": [3134, 3165, 3167]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 105, "duration": [6079, 6086, 6110]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 506318, "duration": [745, 757, 774]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 110, "duration": [62, 62, 64]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 46, "duration": [71, 71, 134]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7141, "duration": [83, 85, 89]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3633, "duration": [418, 422, 425]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [751, 765, 767]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 341994, "duration": [501, 504, 512]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 861, "duration": [215, 218, 233]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 98, "duration": [349, 352, 352]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 236925, "duration": [360, 364, 370]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2784, "duration": [185, 186, 187]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 853, "duration": [523, 531, 540]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 254858, "duration": [407, 416, 421]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 218, "duration": [66, 69, 72]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [88, 88, 90]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 7833, "duration": [90, 92, 94]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4083, "duration": [957, 980, 1032]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 877, "duration": [2028, 2063, 2088]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 4171625, "duration": [6142, 6182, 6244]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2520, "duration": [182, 182, 186]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1404, "duration": [443, 452, 478]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 138987, "duration": [249, 252, 258]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [216, 216, 218]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 28, "duration": [290, 294, 301]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1078395, "duration": [1681, 1705, 1707]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 92527, "duration": [6663, 6668, 6711]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 95, "duration": [15360, 15439, 15689]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4270464, "duration": [12043, 12298, 12402]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 60, "duration": [41, 50, 65]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [49, 52, 55]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 7172, "duration": [83, 84, 104]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1015, "duration": [160, 161, 232]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 86, "duration": [334, 340, 340]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 200981, "duration": [324, 332, 335]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4474, "duration": [345, 347, 357]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3236, "duration": [768, 768, 785]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 360654, "duration": [539, 552, 573]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 980, "duration": [261, 269, 281]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 784, "duration": [716, 733, 745]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168065, "duration": [5707, 5724, 5735]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 284, "duration": [179, 183, 196]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 214, "duration": [257, 258, 261]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 126816, "duration": [250, 250, 251]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 83, "duration": [100, 100, 106]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 16, "duration": [119, 121, 122]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 55586, "duration": [152, 154, 157]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 58, "duration": [29, 29, 31]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 54, "duration": [39, 41, 43]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 15162, "duration": [91, 92, 97]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 201, "duration": [86, 89, 235]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [119, 126, 139]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 170597, "duration": [279, 280, 289]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 434, "duration": [182, 192, 193]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [229, 231, 234]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 26300, "duration": [112, 112, 142]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3258, "duration": [1334, 1347, 1367]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 244, "duration": [1772, 1789, 1818]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 467039, "duration": [759, 787, 801]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 121, "duration": [896, 899, 1051]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 20, "duration": [972, 984, 1104]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 635117, "duration": [998, 1001, 1169]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4708, "duration": [546, 548, 549]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1322, "duration": [1068, 1073, 1074]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 487676, "duration": [716, 723, 752]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3919, "duration": [779, 785, 801]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1515, "duration": [1110, 1119, 1132]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 144566, "duration": [258, 260, 260]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 234, "duration": [155, 159, 164]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 151, "duration": [220, 222, 223]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 192019, "duration": [325, 332, 352]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8481, "duration": [3884, 3885, 3898]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 82, "duration": [5051, 5052, 5052]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 778663, "duration": [1158, 1168, 1169]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 24, "duration": [108, 109, 112]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 19, "duration": [129, 130, 147]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 231009, "duration": [396, 414, 439]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2050, "duration": [249, 249, 253]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 314, "duration": [421, 422, 424]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 89056, "duration": [190, 191, 205]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 319, "duration": [132, 135, 135]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [183, 202, 203]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 41550, "duration": [138, 141, 147]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1982, "duration": [279, 282, 285]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [480, 482, 488]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 126649, "duration": [235, 235, 235]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 652, "duration": [148, 153, 155]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [254, 256, 287]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 148177, "duration": [260, 261, 262]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 372, "duration": [171, 174, 174]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 115, "duration": [214, 216, 217]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 27089, "duration": [117, 119, 120]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 169, "duration": [176, 177, 179]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 65, "duration": [225, 226, 231]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 536978, "duration": [784, 793, 796]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 16193, "duration": [1285, 1312, 1318]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2840, "duration": [3347, 3359, 3385]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 686232, "duration": [1556, 1575, 1584]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 21, "duration": [72, 75, 75]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [86, 90, 107]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748534, "duration": [1287, 1296, 1316]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2570, "duration": [408, 415, 427]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 33, "duration": [661, 662, 671]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 155369, "duration": [271, 291, 293]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6165, "duration": [780, 786, 796]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 255, "duration": [1239, 1244, 1254]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 126586, "duration": [243, 245, 253]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 425, "duration": [188, 195, 198]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [238, 238, 239]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 36113, "duration": [124, 126, 130]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 237, "duration": [494, 501, 643]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 37, "duration": [669, 676, 728]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3837687, "duration": [7006, 7028, 7156]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 660, "duration": [171248, 171365, 175364]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 79, "duration": [160, 162, 169]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 4168064, "duration": [2913, 2997, 3397]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 748535, "duration": [4040, 4060, 4206]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 79, "duration": [218663, 219202, 220109]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 4168064, "duration": [217358, 222531, 223762]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 1950439, "duration": [227604, 228509, 230498]}], "lucene-8.10.1": [{"query": "the", "tags": ["term"], "count": 4168064, "duration": [36, 67, 118]}, {"query": "+griffith +observatory", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 79, "duration": [141, 151, 155]}, {"query": "\"griffith observatory\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [180, 214, 251]}, {"query": "griffith observatory", "tags": ["union", "global", "union:num_tokens_2"], "count": 15456, "duration": [418, 433, 443]}, {"query": "+bowel +obstruction", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 195, "duration": [84, 93, 111]}, {"query": "\"bowel obstruction\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 110, "duration": [108, 108, 120]}, {"query": "bowel obstruction", "tags": ["union", "global", "union:num_tokens_2"], "count": 4173, "duration": [175, 186, 205]}, {"query": "+vicenza +italy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 856, "duration": [225, 243, 309]}, {"query": "\"vicenza italy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 112, "duration": [391, 399, 418]}, {"query": "vicenza italy", "tags": ["union", "global", "union:num_tokens_2"], "count": 104150, "duration": [741, 761, 1241]}, {"query": "+digital +scanning", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [192, 193, 232]}, {"query": "\"digital scanning\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [329, 334, 396]}, {"query": "digital scanning", "tags": ["union", "global", "union:num_tokens_2"], "count": 54291, "duration": [743, 766, 800]}, {"query": "+plus +size +clothing", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 266, "duration": [569, 606, 734]}, {"query": "\"plus size clothing\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 18, "duration": [781, 787, 956]}, {"query": "plus size clothing", "tags": ["union", "global", "union:num_tokens_3"], "count": 195119, "duration": [2066, 2067, 2312]}, {"query": "+borders +books", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2173, "duration": [731, 767, 857]}, {"query": "\"borders books\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [1109, 1111, 1154]}, {"query": "borders books", "tags": ["union", "global", "union:num_tokens_2"], "count": 167943, "duration": [1749, 1775, 1795]}, {"query": "+american +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14165, "duration": [1582, 1623, 1645]}, {"query": "\"american funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [3579, 3617, 7385]}, {"query": "american funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 612165, "duration": [4585, 4633, 4672]}, {"query": "+scottsdale +az", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 85, "duration": [86, 135, 236]}, {"query": "\"scottsdale az\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 56, "duration": [125, 147, 226]}, {"query": "scottsdale az", "tags": ["union", "global", "union:num_tokens_2"], "count": 7747, "duration": [196, 204, 213]}, {"query": "+wisconsin +attorney +general", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 693, "duration": [753, 795, 804]}, {"query": "\"wisconsin attorney general\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [1048, 1084, 1137]}, {"query": "wisconsin attorney general", "tags": ["union", "global", "union:num_tokens_3"], "count": 397912, "duration": [3492, 3566, 3652]}, {"query": "+the +english +restoration", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7346, "duration": [3189, 3236, 3238]}, {"query": "\"the english restoration\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 201, "duration": [12460, 13161, 13983]}, {"query": "the english restoration", "tags": ["union", "global", "union:num_tokens_3"], "count": 4173861, "duration": [25875, 27013, 28204]}, {"query": "+freelance +work", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4496, "duration": [782, 789, 898]}, {"query": "\"freelance work\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 307, "duration": [1628, 1640, 1661]}, {"query": "freelance work", "tags": ["union", "global", "union:num_tokens_2"], "count": 454176, "duration": [3490, 3569, 3721]}, {"query": "+french +culinary +institute", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 161, "duration": [586, 601, 653]}, {"query": "\"french culinary institute\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [642, 648, 723]}, {"query": "french culinary institute", "tags": ["union", "global", "union:num_tokens_3"], "count": 336807, "duration": [2964, 2969, 3081]}, {"query": "+color +combinations", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1055, "duration": [259, 264, 268]}, {"query": "\"color combinations\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 177, "duration": [446, 454, 459]}, {"query": "color combinations", "tags": ["union", "global", "union:num_tokens_2"], "count": 61359, "duration": [947, 990, 1392]}, {"query": "+italian +translation", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3760, "duration": [713, 723, 723]}, {"query": "\"italian translation\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 252, "duration": [1256, 1268, 1273]}, {"query": "italian translation", "tags": ["union", "global", "union:num_tokens_2"], "count": 151582, "duration": [1706, 1723, 1725]}, {"query": "+milwaukee +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 569, "duration": [349, 352, 481]}, {"query": "\"milwaukee newspaper\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [505, 512, 525]}, {"query": "milwaukee newspaper", "tags": ["union", "global", "union:num_tokens_2"], "count": 86776, "duration": [1183, 1319, 1410]}, {"query": "+robert +green +ingersoll", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [227, 228, 253]}, {"query": "\"robert green ingersoll\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [248, 256, 310]}, {"query": "robert green ingersoll", "tags": ["union", "global", "union:num_tokens_3"], "count": 249193, "duration": [2404, 2454, 2477]}, {"query": "+omaha +symphony", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 81, "duration": [148, 156, 277]}, {"query": "\"omaha symphony\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [189, 191, 219]}, {"query": "omaha symphony", "tags": ["union", "global", "union:num_tokens_2"], "count": 20969, "duration": [501, 510, 531]}, {"query": "+body +painting", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4617, "duration": [828, 841, 914]}, {"query": "\"body painting\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 141, "duration": [1508, 1519, 1748]}, {"query": "body painting", "tags": ["union", "global", "union:num_tokens_2"], "count": 194083, "duration": [1961, 2075, 2120]}, {"query": "+who +dares +wins", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 107, "duration": [238, 255, 346]}, {"query": "\"who dares wins\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 64, "duration": [331, 334, 344]}, {"query": "who dares wins", "tags": ["union", "global", "union:num_tokens_3"], "count": 1192562, "duration": [7858, 8293, 8360]}, {"query": "+west +palm +beach +florida", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1239, "duration": [952, 987, 998]}, {"query": "\"west palm beach florida\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 566, "duration": [1790, 1882, 2186]}, {"query": "west palm beach florida", "tags": ["union", "global", "union:num_tokens_>3"], "count": 510849, "duration": [4294, 4341, 4343]}, {"query": "+stone +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7014, "duration": [1070, 1079, 1115]}, {"query": "\"stone mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 329, "duration": [1898, 1932, 2114]}, {"query": "stone mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 170364, "duration": [1805, 1839, 1937]}, {"query": "+san +francisco", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48653, "duration": [1135, 1154, 1257]}, {"query": "\"san francisco\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 44879, "duration": [3159, 3263, 3354]}, {"query": "san francisco", "tags": ["union", "global", "union:num_tokens_2"], "count": 151349, "duration": [1894, 1919, 1954]}, {"query": "+ford +modeling +agency", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 137, "duration": [332, 420, 515]}, {"query": "\"ford modeling agency\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 53, "duration": [406, 408, 410]}, {"query": "ford modeling agency", "tags": ["union", "global", "union:num_tokens_3"], "count": 95654, "duration": [1381, 1391, 1450]}, {"query": "+glass +works", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7387, "duration": [927, 939, 945]}, {"query": "\"glass works\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 302, "duration": [1871, 1888, 1911]}, {"query": "glass works", "tags": ["union", "global", "union:num_tokens_2"], "count": 260381, "duration": [2381, 2528, 2556]}, {"query": "+personal +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5040, "duration": [757, 774, 1288]}, {"query": "\"personal loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 70, "duration": [1429, 1437, 1551]}, {"query": "personal loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 217122, "duration": [2119, 2123, 2220]}, {"query": "+texas +state +legislature", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1917, "duration": [1012, 1024, 1076]}, {"query": "\"texas state legislature\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 94, "duration": [1949, 1951, 1955]}, {"query": "texas state legislature", "tags": ["union", "global", "union:num_tokens_3"], "count": 584269, "duration": [4704, 4880, 4982]}, {"query": "+spiritual +warfare", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 733, "duration": [339, 363, 368]}, {"query": "\"spiritual warfare\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 76, "duration": [473, 496, 653]}, {"query": "spiritual warfare", "tags": ["union", "global", "union:num_tokens_2"], "count": 46081, "duration": [823, 949, 1084]}, {"query": "+georgia +public +broadcasting", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 421, "duration": [804, 817, 821]}, {"query": "\"georgia public broadcasting\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 61, "duration": [1248, 1295, 1347]}, {"query": "georgia public broadcasting", "tags": ["union", "global", "union:num_tokens_3"], "count": 401520, "duration": [3386, 3448, 3562]}, {"query": "+graffiti +art", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1187, "duration": [340, 343, 356]}, {"query": "\"graffiti art\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [657, 657, 670]}, {"query": "graffiti art", "tags": ["union", "global", "union:num_tokens_2"], "count": 160168, "duration": [1399, 1426, 1474]}, {"query": "+texas +death +row", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 475, "duration": [889, 906, 923]}, {"query": "\"texas death row\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [1316, 1340, 2514]}, {"query": "texas death row", "tags": ["union", "global", "union:num_tokens_3"], "count": 402259, "duration": [3452, 3652, 3716]}, {"query": "+catholic +answers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 604, "duration": [333, 354, 430]}, {"query": "\"catholic answers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 23, "duration": [515, 532, 584]}, {"query": "catholic answers", "tags": ["union", "global", "union:num_tokens_2"], "count": 99117, "duration": [1247, 1282, 1299]}, {"query": "+interest +only", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65770, "duration": [3182, 3183, 3391]}, {"query": "\"interest only\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [8266, 8269, 8323]}, {"query": "interest only", "tags": ["union", "global", "union:num_tokens_2"], "count": 825043, "duration": [6001, 6051, 6199]}, {"query": "+region +iv", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6146, "duration": [1002, 1004, 1124]}, {"query": "\"region iv\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [1875, 1890, 1954]}, {"query": "region iv", "tags": ["union", "global", "union:num_tokens_2"], "count": 298137, "duration": [2586, 2659, 2720]}, {"query": "+army +reserve", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 13581, "duration": [1136, 1237, 1266]}, {"query": "\"army reserve\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1894, "duration": [2728, 2805, 3063]}, {"query": "army reserve", "tags": ["union", "global", "union:num_tokens_2"], "count": 229696, "duration": [2292, 2362, 3491]}, {"query": "+chicken +coop", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 314, "duration": [87, 108, 191]}, {"query": "\"chicken coop\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 288, "duration": [127, 139, 158]}, {"query": "chicken coop", "tags": ["union", "global", "union:num_tokens_2"], "count": 10040, "duration": [234, 245, 454]}, {"query": "+people +having +sex", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6957, "duration": [1944, 1971, 2003]}, {"query": "\"people having sex\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [3753, 3826, 3864]}, {"query": "people having sex", "tags": ["union", "global", "union:num_tokens_3"], "count": 702120, "duration": [5608, 5711, 5734]}, {"query": "+new +york +population", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13996, "duration": [4185, 4209, 4459]}, {"query": "\"new york population\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [8552, 8682, 9219]}, {"query": "new york population", "tags": ["union", "global", "union:num_tokens_3"], "count": 1251867, "duration": [10042, 10403, 10502]}, {"query": "+most +improved +player", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4268, "duration": [1892, 1937, 2016]}, {"query": "\"most improved player\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 440, "duration": [3312, 3406, 4583]}, {"query": "most improved player", "tags": ["union", "global", "union:num_tokens_3"], "count": 909970, "duration": [7075, 7280, 7299]}, {"query": "+ear +ache", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 23, "duration": [86, 100, 134]}, {"query": "\"ear ache\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [96, 111, 170]}, {"query": "ear ache", "tags": ["union", "global", "union:num_tokens_2"], "count": 10684, "duration": [178, 192, 200]}, {"query": "+mercury +insurance", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 157, "duration": [270, 289, 296]}, {"query": "\"mercury insurance\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [302, 338, 362]}, {"query": "mercury insurance", "tags": ["union", "global", "union:num_tokens_2"], "count": 35325, "duration": [763, 811, 839]}, {"query": "+battle +of +the +bulge", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1316, "duration": [2130, 2262, 2610]}, {"query": "\"battle of the bulge\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1156, "duration": [4436, 4724, 6824]}, {"query": "battle of the bulge", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269120, "duration": [41680, 42188, 43784]}, {"query": "+secretary +of +state", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 43372, "duration": [7191, 7311, 7447]}, {"query": "\"secretary of state\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15089, "duration": [28844, 29041, 29151]}, {"query": "secretary of state", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806414, "duration": [25079, 25147, 26968]}, {"query": "+third +trimester", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 239, "duration": [241, 282, 316]}, {"query": "\"third trimester\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 124, "duration": [362, 392, 398]}, {"query": "third trimester", "tags": ["union", "global", "union:num_tokens_2"], "count": 333268, "duration": [1259, 1290, 1313]}, {"query": "+hempstead +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 618, "duration": [593, 594, 610]}, {"query": "\"hempstead new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 168, "duration": [902, 924, 927]}, {"query": "hempstead new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970283, "duration": [7792, 7857, 8178]}, {"query": "+university +of +washington", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 44521, "duration": [7411, 7441, 8805]}, {"query": "\"university of washington\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 4100, "duration": [27422, 27503, 27713]}, {"query": "university of washington", "tags": ["union", "global", "union:num_tokens_3"], "count": 3808757, "duration": [25069, 25230, 26630]}, {"query": "+japan +airlines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 960, "duration": [415, 429, 432]}, {"query": "\"japan airlines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 244, "duration": [720, 772, 1030]}, {"query": "japan airlines", "tags": ["union", "global", "union:num_tokens_2"], "count": 134727, "duration": [1504, 1515, 1583]}, {"query": "+freedom +tower", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1490, "duration": [700, 782, 817]}, {"query": "\"freedom tower\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [1008, 1122, 1211]}, {"query": "freedom tower", "tags": ["union", "global", "union:num_tokens_2"], "count": 106587, "duration": [1389, 1404, 1593]}, {"query": "+virginia +usa", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3574, "duration": [853, 902, 1024]}, {"query": "\"virginia usa\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1021, "duration": [1401, 1402, 1490]}, {"query": "virginia usa", "tags": ["union", "global", "union:num_tokens_2"], "count": 146818, "duration": [1666, 1697, 1878]}, {"query": "+kasota +stone", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 20, "duration": [76, 98, 104]}, {"query": "\"kasota stone\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [87, 132, 169]}, {"query": "kasota stone", "tags": ["union", "global", "union:num_tokens_2"], "count": 82708, "duration": [324, 332, 333]}, {"query": "+intramuscular +injections", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [75, 97, 98]}, {"query": "\"intramuscular injections\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [74, 82, 92]}, {"query": "intramuscular injections", "tags": ["union", "global", "union:num_tokens_2"], "count": 1791, "duration": [90, 99, 122]}, {"query": "+jesus +as +a +child", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 3397, "duration": [3269, 3291, 3687]}, {"query": "\"jesus as a child\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 12, "duration": [5600, 5845, 6873]}, {"query": "jesus as a child", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4053765, "duration": [34556, 35038, 36755]}, {"query": "+montessori +schools", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 429, "duration": [211, 218, 248]}, {"query": "\"montessori schools\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 41, "duration": [354, 364, 367]}, {"query": "montessori schools", "tags": ["union", "global", "union:num_tokens_2"], "count": 130601, "duration": [704, 716, 765]}, {"query": "+oxford +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2860, "duration": [307, 320, 326]}, {"query": "\"oxford dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 828, "duration": [572, 637, 730]}, {"query": "oxford dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 54702, "duration": [955, 978, 1409]}, {"query": "+state +of +louisiana", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10899, "duration": [3870, 3895, 3919]}, {"query": "\"state of louisiana\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 922, "duration": [11898, 12099, 12171]}, {"query": "state of louisiana", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806986, "duration": [24921, 25344, 39867]}, {"query": "+penny +stocks", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 87, "duration": [135, 140, 173]}, {"query": "\"penny stocks\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [158, 203, 223]}, {"query": "penny stocks", "tags": ["union", "global", "union:num_tokens_2"], "count": 11759, "duration": [360, 366, 386]}, {"query": "+cured +of +cancer", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 443, "duration": [594, 652, 780]}, {"query": "\"cured of cancer\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [990, 1017, 1040]}, {"query": "cured of cancer", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798567, "duration": [22289, 22378, 22403]}, {"query": "+lord +of +the +rings", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1994, "duration": [2352, 2537, 2706]}, {"query": "\"lord of the rings\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 1444, "duration": [5934, 6215, 6252]}, {"query": "lord of the rings", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269267, "duration": [41685, 43739, 43886]}, {"query": "+helen +of +troy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 418, "duration": [489, 494, 523]}, {"query": "\"helen of troy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 224, "duration": [928, 940, 956]}, {"query": "helen of troy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3798846, "duration": [22066, 22235, 22359]}, {"query": "+long +legs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10806, "duration": [1018, 1052, 1096]}, {"query": "\"long legs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 831, "duration": [2377, 2393, 2467]}, {"query": "long legs", "tags": ["union", "global", "union:num_tokens_2"], "count": 401948, "duration": [3321, 3367, 3371]}, {"query": "+sore +muscles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 90, "duration": [103, 132, 139]}, {"query": "\"sore muscles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [108, 111, 118]}, {"query": "sore muscles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7731, "duration": [236, 258, 428]}, {"query": "+connecticut +post", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3336, "duration": [736, 744, 750]}, {"query": "\"connecticut post\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [1349, 1370, 1432]}, {"query": "connecticut post", "tags": ["union", "global", "union:num_tokens_2"], "count": 237265, "duration": [2204, 2256, 2371]}, {"query": "+danbury +ct", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 48, "duration": [79, 94, 142]}, {"query": "\"danbury ct\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [107, 110, 153]}, {"query": "danbury ct", "tags": ["union", "global", "union:num_tokens_2"], "count": 5320, "duration": [148, 162, 193]}, {"query": "+chicago +bulls", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1751, "duration": [277, 286, 316]}, {"query": "\"chicago bulls\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1335, "duration": [533, 535, 571]}, {"query": "chicago bulls", "tags": ["union", "global", "union:num_tokens_2"], "count": 79894, "duration": [1088, 1117, 1144]}, {"query": "+child +support", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 19247, "duration": [1728, 1749, 2001]}, {"query": "\"child support\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 626, "duration": [3363, 3410, 3717]}, {"query": "child support", "tags": ["union", "global", "union:num_tokens_2"], "count": 301066, "duration": [2628, 2703, 2763]}, {"query": "+iq +scores", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [115, 117, 152]}, {"query": "\"iq scores\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 81, "duration": [188, 199, 216]}, {"query": "iq scores", "tags": ["union", "global", "union:num_tokens_2"], "count": 21776, "duration": [335, 339, 359]}, {"query": "+philadelphia +phillies", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3980, "duration": [220, 226, 230]}, {"query": "\"philadelphia phillies\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3891, "duration": [428, 432, 446]}, {"query": "philadelphia phillies", "tags": ["union", "global", "union:num_tokens_2"], "count": 43534, "duration": [685, 744, 860]}, {"query": "+trans +siberian +orchestra", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 109, "duration": [220, 237, 312]}, {"query": "\"trans siberian orchestra\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 97, "duration": [262, 265, 316]}, {"query": "trans siberian orchestra", "tags": ["union", "global", "union:num_tokens_3"], "count": 47760, "duration": [920, 974, 1123]}, {"query": "+naomi +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 61, "duration": [120, 126, 136]}, {"query": "\"naomi wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [155, 162, 181]}, {"query": "naomi wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 14465, "duration": [358, 359, 414]}, {"query": "+montgomery +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2638, "duration": [720, 812, 855]}, {"query": "\"montgomery college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 60, "duration": [1291, 1310, 1363]}, {"query": "montgomery college", "tags": ["union", "global", "union:num_tokens_2"], "count": 301693, "duration": [2499, 2637, 2842]}, {"query": "+belcourt +castle", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 12, "duration": [137, 223, 265]}, {"query": "\"belcourt castle\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [122, 123, 148]}, {"query": "belcourt castle", "tags": ["union", "global", "union:num_tokens_2"], "count": 57879, "duration": [231, 242, 265]}, {"query": "+binghamton +new +york", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1238, "duration": [779, 781, 800]}, {"query": "\"binghamton new york\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 391, "duration": [1355, 1373, 1380]}, {"query": "binghamton new york", "tags": ["union", "global", "union:num_tokens_3"], "count": 970192, "duration": [8073, 8156, 8469]}, {"query": "+tallest +trees +in +the +world", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 415, "duration": [1245, 1326, 1391]}, {"query": "\"tallest trees in the world\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [1517, 1543, 1566]}, {"query": "tallest trees in the world", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4316960, "duration": [45684, 45752, 50282]}, {"query": "+reading +museum", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3896, "duration": [860, 870, 886]}, {"query": "\"reading museum\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1448, 1555, 1586]}, {"query": "reading museum", "tags": ["union", "global", "union:num_tokens_2"], "count": 153516, "duration": [1700, 1710, 1764]}, {"query": "+merry +christmas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 896, "duration": [171, 173, 317]}, {"query": "\"merry christmas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 475, "duration": [318, 324, 336]}, {"query": "merry christmas", "tags": ["union", "global", "union:num_tokens_2"], "count": 36406, "duration": [644, 648, 654]}, {"query": "+flow +meter", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1044, "duration": [350, 372, 374]}, {"query": "\"flow meter\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 74, "duration": [523, 535, 634]}, {"query": "flow meter", "tags": ["union", "global", "union:num_tokens_2"], "count": 52377, "duration": [970, 1030, 1146]}, {"query": "+famous +quotes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1550, "duration": [395, 400, 418]}, {"query": "\"famous quotes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 131, "duration": [668, 701, 747]}, {"query": "famous quotes", "tags": ["union", "global", "union:num_tokens_2"], "count": 150258, "duration": [1602, 1694, 2527]}, {"query": "+georgian +architecture", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1246, "duration": [408, 454, 548]}, {"query": "\"georgian architecture\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 235, "duration": [525, 533, 553]}, {"query": "georgian architecture", "tags": ["union", "global", "union:num_tokens_2"], "count": 66350, "duration": [1061, 1158, 1442]}, {"query": "+prayer +times", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5054, "duration": [748, 813, 842]}, {"query": "\"prayer times\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [1583, 1611, 2346]}, {"query": "prayer times", "tags": ["union", "global", "union:num_tokens_2"], "count": 310479, "duration": [2669, 2673, 2790]}, {"query": "+columbia +university", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 24403, "duration": [1657, 1664, 1671]}, {"query": "\"columbia university\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12115, "duration": [4234, 4243, 4425]}, {"query": "columbia university", "tags": ["union", "global", "union:num_tokens_2"], "count": 503137, "duration": [4002, 4062, 4433]}, {"query": "+fluid +power", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2540, "duration": [526, 536, 553]}, {"query": "\"fluid power\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 59, "duration": [1047, 1125, 1138]}, {"query": "fluid power", "tags": ["union", "global", "union:num_tokens_2"], "count": 200883, "duration": [1903, 1946, 2026]}, {"query": "+american +south", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 96618, "duration": [6431, 6437, 6439]}, {"query": "\"american south\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1140, "duration": [14406, 14536, 14771]}, {"query": "american south", "tags": ["union", "global", "union:num_tokens_2"], "count": 1038231, "duration": [7752, 7826, 8268]}, {"query": "+international +baseball", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5964, "duration": [1271, 1313, 1357]}, {"query": "\"international baseball\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 256, "duration": [2409, 2433, 2468]}, {"query": "international baseball", "tags": ["union", "global", "union:num_tokens_2"], "count": 402607, "duration": [3291, 3382, 4665]}, {"query": "+ace +frehley", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 142, "duration": [82, 121, 143]}, {"query": "\"ace frehley\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 142, "duration": [89, 105, 115]}, {"query": "ace frehley", "tags": ["union", "global", "union:num_tokens_2"], "count": 10007, "duration": [142, 213, 228]}, {"query": "+the +globe +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2001, "duration": [1463, 1492, 1532]}, {"query": "\"the globe newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [4216, 4287, 4309]}, {"query": "the globe newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168649, "duration": [24399, 24540, 24698]}, {"query": "+decorative +windows", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2315, "duration": [289, 298, 298]}, {"query": "\"decorative windows\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [555, 570, 607]}, {"query": "decorative windows", "tags": ["union", "global", "union:num_tokens_2"], "count": 51200, "duration": [896, 909, 925]}, {"query": "+ancient +egypt", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6825, "duration": [620, 629, 641]}, {"query": "\"ancient egypt\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2155, "duration": [1264, 1303, 1307]}, {"query": "ancient egypt", "tags": ["union", "global", "union:num_tokens_2"], "count": 114383, "duration": [1437, 1441, 1548]}, {"query": "+american +academy +of +child +and +adolescent +psychiatry", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 47, "duration": [488, 503, 540]}, {"query": "\"american academy of child and adolescent psychiatry\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 33, "duration": [654, 666, 797]}, {"query": "american academy of child and adolescent psychiatry", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4068900, "duration": [42881, 42882, 43000]}, {"query": "+york +photo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4125, "duration": [771, 779, 849]}, {"query": "\"york photo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [1543, 1657, 1706]}, {"query": "york photo", "tags": ["union", "global", "union:num_tokens_2"], "count": 272980, "duration": [2439, 2661, 2662]}, {"query": "+good +luck", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4710, "duration": [522, 533, 536]}, {"query": "\"good luck\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2046, "duration": [1095, 1110, 1323]}, {"query": "good luck", "tags": ["union", "global", "union:num_tokens_2"], "count": 193597, "duration": [1906, 1920, 2199]}, {"query": "+world +bank +president", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8204, "duration": [2806, 2820, 2831]}, {"query": "\"world bank president\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [5085, 5119, 5419]}, {"query": "world bank president", "tags": ["union", "global", "union:num_tokens_3"], "count": 854242, "duration": [6539, 6728, 6811]}, {"query": "+jonathan +daniel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1608, "duration": [394, 402, 414]}, {"query": "\"jonathan daniel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [618, 632, 633]}, {"query": "jonathan daniel", "tags": ["union", "global", "union:num_tokens_2"], "count": 66857, "duration": [1053, 1082, 1135]}, {"query": "+clothing +optional", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 328, "duration": [218, 226, 237]}, {"query": "\"clothing optional\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 97, "duration": [302, 306, 312]}, {"query": "clothing optional", "tags": ["union", "global", "union:num_tokens_2"], "count": 32425, "duration": [655, 702, 731]}, {"query": "+xena +warrior +princess", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 23, "duration": [106, 123, 259]}, {"query": "\"xena warrior princess\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [120, 140, 211]}, {"query": "xena warrior princess", "tags": ["union", "global", "union:num_tokens_3"], "count": 39428, "duration": [783, 796, 871]}, {"query": "+time +for +kids", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 10203, "duration": [3695, 3808, 4391]}, {"query": "\"time for kids\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [9049, 9224, 9336]}, {"query": "time for kids", "tags": ["union", "global", "union:num_tokens_3"], "count": 2470107, "duration": [18730, 18999, 19796]}, {"query": "+tom +welling", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 55, "duration": [160, 161, 207]}, {"query": "\"tom welling\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 43, "duration": [156, 167, 192]}, {"query": "tom welling", "tags": ["union", "global", "union:num_tokens_2"], "count": 58784, "duration": [308, 317, 350]}, {"query": "+elliott +smith", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 901, "duration": [263, 279, 315]}, {"query": "\"elliott smith\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 213, "duration": [464, 468, 486]}, {"query": "elliott smith", "tags": ["union", "global", "union:num_tokens_2"], "count": 73481, "duration": [1058, 1086, 1092]}, {"query": "+heart +disease", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 7776, "duration": [771, 806, 816]}, {"query": "\"heart disease\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3077, "duration": [1464, 1488, 1538]}, {"query": "heart disease", "tags": ["union", "global", "union:num_tokens_2"], "count": 127400, "duration": [1541, 1544, 1585]}, {"query": "+st +petersburg +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 1282, "duration": [2298, 2312, 2910]}, {"query": "\"st petersburg high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 31, "duration": [3448, 3939, 3977]}, {"query": "st petersburg high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 961109, "duration": [8727, 8824, 9015]}, {"query": "+fatherless +children", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 155, "duration": [175, 209, 217]}, {"query": "\"fatherless children\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 45, "duration": [250, 251, 270]}, {"query": "fatherless children", "tags": ["union", "global", "union:num_tokens_2"], "count": 280642, "duration": [927, 933, 939]}, {"query": "+hotel +del +coronado", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 51, "duration": [197, 202, 218]}, {"query": "\"hotel del coronado\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 35, "duration": [264, 286, 286]}, {"query": "hotel del coronado", "tags": ["union", "global", "union:num_tokens_3"], "count": 102668, "duration": [1417, 1442, 1453]}, {"query": "+law +dictionary", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1997, "duration": [552, 599, 672]}, {"query": "\"law dictionary\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 93, "duration": [1064, 1071, 1082]}, {"query": "law dictionary", "tags": ["union", "global", "union:num_tokens_2"], "count": 212065, "duration": [2036, 2142, 2174]}, {"query": "+anderson +hospital", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1613, "duration": [496, 506, 604]}, {"query": "\"anderson hospital\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [824, 825, 854]}, {"query": "anderson hospital", "tags": ["union", "global", "union:num_tokens_2"], "count": 109701, "duration": [1381, 1392, 1423]}, {"query": "+kenosha +wisconsin", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 593, "duration": [129, 150, 239]}, {"query": "\"kenosha wisconsin\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 373, "duration": [219, 247, 339]}, {"query": "kenosha wisconsin", "tags": ["union", "global", "union:num_tokens_2"], "count": 32570, "duration": [294, 305, 367]}, {"query": "+false +prophets", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 358, "duration": [154, 165, 178]}, {"query": "\"false prophets\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 89, "duration": [207, 213, 229]}, {"query": "false prophets", "tags": ["union", "global", "union:num_tokens_2"], "count": 29690, "duration": [473, 512, 521]}, {"query": "+cheap +hotels", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [193, 204, 212]}, {"query": "\"cheap hotels\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [256, 265, 270]}, {"query": "cheap hotels", "tags": ["union", "global", "union:num_tokens_2"], "count": 23089, "duration": [560, 567, 724]}, {"query": "+walk +the +line", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7853, "duration": [3289, 3297, 3300]}, {"query": "\"walk the line\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 140, "duration": [12510, 12831, 14030]}, {"query": "walk the line", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169493, "duration": [25648, 27261, 27367]}, {"query": "+missy +elliott", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 207, "duration": [78, 86, 101]}, {"query": "\"missy elliott\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [192, 232, 256]}, {"query": "missy elliott", "tags": ["union", "global", "union:num_tokens_2"], "count": 8017, "duration": [162, 179, 696]}, {"query": "+portrait +studio", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3053, "duration": [544, 550, 581]}, {"query": "\"portrait studio\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 100, "duration": [956, 958, 959]}, {"query": "portrait studio", "tags": ["union", "global", "union:num_tokens_2"], "count": 132425, "duration": [1565, 1598, 1616]}, {"query": "+calvin +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 357, "duration": [123, 136, 137]}, {"query": "\"calvin klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 328, "duration": [167, 168, 183]}, {"query": "calvin klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 10614, "duration": [353, 357, 380]}, {"query": "+kitchen +accessories", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 158, "duration": [237, 275, 293]}, {"query": "\"kitchen accessories\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [202, 209, 214]}, {"query": "kitchen accessories", "tags": ["union", "global", "union:num_tokens_2"], "count": 22473, "duration": [510, 511, 537]}, {"query": "+consumer +affairs", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1927, "duration": [429, 461, 470]}, {"query": "\"consumer affairs\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 681, "duration": [728, 731, 763]}, {"query": "consumer affairs", "tags": ["union", "global", "union:num_tokens_2"], "count": 88332, "duration": [1216, 1260, 1312]}, {"query": "+adobe +buildings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 644, "duration": [270, 281, 469]}, {"query": "\"adobe buildings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 73, "duration": [476, 496, 513]}, {"query": "adobe buildings", "tags": ["union", "global", "union:num_tokens_2"], "count": 103711, "duration": [1153, 1179, 1191]}, {"query": "+national +book +award", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 13480, "duration": [4027, 4124, 4160]}, {"query": "\"national book award\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 969, "duration": [7070, 7100, 7128]}, {"query": "national book award", "tags": ["union", "global", "union:num_tokens_3"], "count": 918169, "duration": [7172, 7341, 7435]}, {"query": "+back +surgery", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 8141, "duration": [967, 1040, 1051]}, {"query": "\"back surgery\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 240, "duration": [2149, 2240, 2300]}, {"query": "back surgery", "tags": ["union", "global", "union:num_tokens_2"], "count": 375689, "duration": [3085, 3241, 3385]}, {"query": "+mid +continent +airport", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 278, "duration": [507, 565, 634]}, {"query": "\"mid continent airport\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [698, 704, 1187]}, {"query": "mid continent airport", "tags": ["union", "global", "union:num_tokens_3"], "count": 212074, "duration": [2192, 2221, 2238]}, {"query": "+developmental +delays", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 266, "duration": [160, 177, 179]}, {"query": "\"developmental delays\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 135, "duration": [213, 225, 234]}, {"query": "developmental delays", "tags": ["union", "global", "union:num_tokens_2"], "count": 16569, "duration": [445, 462, 834]}, {"query": "+elise +neal", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 22, "duration": [85, 87, 242]}, {"query": "\"elise neal\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [86, 89, 122]}, {"query": "elise neal", "tags": ["union", "global", "union:num_tokens_2"], "count": 6674, "duration": [202, 213, 264]}, {"query": "+canadian +real +estate", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1329, "duration": [1165, 1183, 1204]}, {"query": "\"canadian real estate\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 42, "duration": [1741, 1780, 1804]}, {"query": "canadian real estate", "tags": ["union", "global", "union:num_tokens_3"], "count": 281073, "duration": [2738, 2884, 2891]}, {"query": "+barrett +jackson", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 240, "duration": [185, 207, 220]}, {"query": "\"barrett jackson\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [263, 267, 279]}, {"query": "barrett jackson", "tags": ["union", "global", "union:num_tokens_2"], "count": 38213, "duration": [653, 692, 817]}, {"query": "+bmw +engines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 867, "duration": [214, 220, 357]}, {"query": "\"bmw engines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 57, "duration": [315, 323, 337]}, {"query": "bmw engines", "tags": ["union", "global", "union:num_tokens_2"], "count": 28879, "duration": [595, 602, 712]}, {"query": "+john +donne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 406, "duration": [272, 277, 289]}, {"query": "\"john donne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 318, "duration": [401, 432, 519]}, {"query": "john donne", "tags": ["union", "global", "union:num_tokens_2"], "count": 345824, "duration": [1331, 1387, 1411]}, {"query": "+evening +wear", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1913, "duration": [456, 488, 498]}, {"query": "\"evening wear\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 171, "duration": [712, 719, 737]}, {"query": "evening wear", "tags": ["union", "global", "union:num_tokens_2"], "count": 70020, "duration": [1154, 1167, 1188]}, {"query": "+toxic +encephalopathy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 84, "duration": [83, 92, 277]}, {"query": "\"toxic encephalopathy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [117, 140, 225]}, {"query": "toxic encephalopathy", "tags": ["union", "global", "union:num_tokens_2"], "count": 10103, "duration": [176, 176, 194]}, {"query": "+critical +care +nurse", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 444, "duration": [539, 561, 653]}, {"query": "\"critical care nurse\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [786, 790, 809]}, {"query": "critical care nurse", "tags": ["union", "global", "union:num_tokens_3"], "count": 165540, "duration": [1885, 1969, 2089]}, {"query": "+the +breakfast +club", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1457, "duration": [1455, 1463, 1474]}, {"query": "\"the breakfast club\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 131, "duration": [3295, 3380, 3387]}, {"query": "the breakfast club", "tags": ["union", "global", "union:num_tokens_3"], "count": 4174359, "duration": [25292, 25633, 25640]}, {"query": "+lost +episode", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11192, "duration": [1229, 1246, 1274]}, {"query": "\"lost episode\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [2536, 2553, 3210]}, {"query": "lost episode", "tags": ["union", "global", "union:num_tokens_2"], "count": 264631, "duration": [2455, 2458, 2598]}, {"query": "+seal +pictures", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 466, "duration": [313, 339, 340]}, {"query": "\"seal pictures\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [435, 456, 457]}, {"query": "seal pictures", "tags": ["union", "global", "union:num_tokens_2"], "count": 55152, "duration": [928, 930, 984]}, {"query": "+critical +care +medicine", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1061, "duration": [1081, 1092, 1110]}, {"query": "\"critical care medicine\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 74, "duration": [1421, 1424, 1454]}, {"query": "critical care medicine", "tags": ["union", "global", "union:num_tokens_3"], "count": 194085, "duration": [2156, 2219, 2284]}, {"query": "+hurricane +wilma", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 164, "duration": [98, 100, 122]}, {"query": "\"hurricane wilma\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 121, "duration": [136, 143, 169]}, {"query": "hurricane wilma", "tags": ["union", "global", "union:num_tokens_2"], "count": 12785, "duration": [233, 234, 465]}, {"query": "+john +wilkes +booth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 290, "duration": [263, 275, 286]}, {"query": "\"john wilkes booth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 277, "duration": [421, 423, 431]}, {"query": "john wilkes booth", "tags": ["union", "global", "union:num_tokens_3"], "count": 352602, "duration": [2988, 3217, 3312]}, {"query": "+sesame +street", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1111, "duration": [311, 312, 323]}, {"query": "\"sesame street\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 963, "duration": [561, 572, 574]}, {"query": "sesame street", "tags": ["union", "global", "union:num_tokens_2"], "count": 162074, "duration": [1162, 1175, 1224]}, {"query": "+ellen +degeneres +show", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 608, "duration": [295, 301, 418]}, {"query": "\"ellen degeneres show\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 485, "duration": [480, 503, 653]}, {"query": "ellen degeneres show", "tags": ["union", "global", "union:num_tokens_3"], "count": 231765, "duration": [2197, 2236, 2245]}, {"query": "+jaguar +x +type", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 122, "duration": [348, 366, 369]}, {"query": "\"jaguar x type\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 10, "duration": [479, 513, 538]}, {"query": "jaguar x type", "tags": ["union", "global", "union:num_tokens_3"], "count": 217412, "duration": [2272, 2301, 2326]}, {"query": "+the +movement", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 118291, "duration": [7183, 7447, 7454]}, {"query": "\"the movement\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21737, "duration": [65237, 65656, 67661]}, {"query": "the movement", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168234, "duration": [24804, 24869, 25015]}, {"query": "+sarah +fisher", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 367, "duration": [224, 231, 274]}, {"query": "\"sarah fisher\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [339, 360, 492]}, {"query": "sarah fisher", "tags": ["union", "global", "union:num_tokens_2"], "count": 33310, "duration": [672, 692, 710]}, {"query": "+dexter +michigan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 192, "duration": [179, 196, 210]}, {"query": "\"dexter michigan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 28, "duration": [273, 283, 354]}, {"query": "dexter michigan", "tags": ["union", "global", "union:num_tokens_2"], "count": 46274, "duration": [674, 679, 737]}, {"query": "+little +brown +jug", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 180, "duration": [301, 308, 314]}, {"query": "\"little brown jug\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 143, "duration": [450, 493, 500]}, {"query": "little brown jug", "tags": ["union", "global", "union:num_tokens_3"], "count": 268624, "duration": [2494, 2546, 2551]}, {"query": "+books +on +cd", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2130, "duration": [1769, 1793, 1799]}, {"query": "\"books on cd\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [3100, 3228, 3243]}, {"query": "books on cd", "tags": ["union", "global", "union:num_tokens_3"], "count": 2372213, "duration": [15388, 15990, 16179]}, {"query": "+carolyn +jones", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 248, "duration": [242, 254, 257]}, {"query": "\"carolyn jones\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 68, "duration": [251, 258, 260]}, {"query": "carolyn jones", "tags": ["union", "global", "union:num_tokens_2"], "count": 47084, "duration": [688, 715, 907]}, {"query": "+aishwarya +rai", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 230, "duration": [102, 125, 132]}, {"query": "\"aishwarya rai\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 226, "duration": [90, 106, 109]}, {"query": "aishwarya rai", "tags": ["union", "global", "union:num_tokens_2"], "count": 4838, "duration": [143, 157, 182]}, {"query": "+trendy +clothes", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 78, "duration": [101, 109, 186]}, {"query": "\"trendy clothes\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [124, 158, 187]}, {"query": "trendy clothes", "tags": ["union", "global", "union:num_tokens_2"], "count": 17211, "duration": [403, 404, 517]}, {"query": "+weather +underground", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1532, "duration": [517, 527, 536]}, {"query": "\"weather underground\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 173, "duration": [777, 778, 875]}, {"query": "weather underground", "tags": ["union", "global", "union:num_tokens_2"], "count": 76229, "duration": [1127, 1158, 1281]}, {"query": "+mercedes +benz", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2422, "duration": [120, 130, 140]}, {"query": "\"mercedes benz\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 2381, "duration": [214, 216, 323]}, {"query": "mercedes benz", "tags": ["union", "global", "union:num_tokens_2"], "count": 6515, "duration": [277, 279, 287]}, {"query": "+analog +computer", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1633, "duration": [289, 326, 326]}, {"query": "\"analog computer\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 123, "duration": [532, 542, 594]}, {"query": "analog computer", "tags": ["union", "global", "union:num_tokens_2"], "count": 73305, "duration": [994, 1046, 1048]}, {"query": "+pump +it +up", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4110, "duration": [2347, 2441, 2570]}, {"query": "\"pump it up\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 60, "duration": [4243, 4294, 4395]}, {"query": "pump it up", "tags": ["union", "global", "union:num_tokens_3"], "count": 2315795, "duration": [16891, 17029, 17079]}, {"query": "+food +carts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [252, 254, 257]}, {"query": "\"food carts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [399, 453, 700]}, {"query": "food carts", "tags": ["union", "global", "union:num_tokens_2"], "count": 92901, "duration": [866, 945, 959]}, {"query": "+graduate +management +admission +test", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 131, "duration": [601, 611, 672]}, {"query": "\"graduate management admission test\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 10, "duration": [785, 790, 801]}, {"query": "graduate management admission test", "tags": ["union", "global", "union:num_tokens_>3"], "count": 226887, "duration": [2496, 2520, 2666]}, {"query": "+big +boss +man", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1539, "duration": [829, 843, 906]}, {"query": "\"big boss man\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 79, "duration": [1337, 1374, 1674]}, {"query": "big boss man", "tags": ["union", "global", "union:num_tokens_3"], "count": 322018, "duration": [3071, 3149, 3402]}, {"query": "+gun +magazines", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1358, "duration": [432, 454, 479]}, {"query": "\"gun magazines\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [703, 828, 894]}, {"query": "gun magazines", "tags": ["union", "global", "union:num_tokens_2"], "count": 68175, "duration": [1101, 1104, 1282]}, {"query": "+bankruptcy +laws", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 813, "duration": [320, 380, 449]}, {"query": "\"bankruptcy laws\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 67, "duration": [486, 487, 518]}, {"query": "bankruptcy laws", "tags": ["union", "global", "union:num_tokens_2"], "count": 62207, "duration": [1020, 1056, 1127]}, {"query": "+antonio +cromartie", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [204, 229, 285]}, {"query": "\"antonio cromartie\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 29, "duration": [183, 210, 345]}, {"query": "antonio cromartie", "tags": ["union", "global", "union:num_tokens_2"], "count": 33193, "duration": [175, 178, 191]}, {"query": "+sky +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3401, "duration": [620, 642, 699]}, {"query": "\"sky news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 821, "duration": [1081, 1081, 1087]}, {"query": "sky news", "tags": ["union", "global", "union:num_tokens_2"], "count": 134076, "duration": [1546, 1567, 1588]}, {"query": "+phone +cases", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2416, "duration": [500, 541, 563]}, {"query": "\"phone cases\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [936, 959, 975]}, {"query": "phone cases", "tags": ["union", "global", "union:num_tokens_2"], "count": 105084, "duration": [1336, 1340, 1452]}, {"query": "+the +incredibles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 162, "duration": [228, 233, 254]}, {"query": "\"the incredibles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 143, "duration": [407, 418, 428]}, {"query": "the incredibles", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168064, "duration": [9580, 9585, 10636]}, {"query": "+padre +island", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 361, "duration": [278, 297, 326]}, {"query": "\"padre island\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [450, 469, 470]}, {"query": "padre island", "tags": ["union", "global", "union:num_tokens_2"], "count": 167104, "duration": [1125, 1137, 1168]}, {"query": "+worcester +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 679, "duration": [1124, 1131, 1211]}, {"query": "\"worcester state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [1556, 1586, 1588]}, {"query": "worcester state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 730213, "duration": [5778, 5897, 5937]}, {"query": "+little +cars", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5744, "duration": [888, 892, 893]}, {"query": "\"little cars\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [1610, 1638, 1684]}, {"query": "little cars", "tags": ["union", "global", "union:num_tokens_2"], "count": 222790, "duration": [2093, 2265, 2378]}, {"query": "+jefferson +davis +high +school", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 377, "duration": [902, 926, 929]}, {"query": "\"jefferson davis high school\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 16, "duration": [1240, 1279, 1308]}, {"query": "jefferson davis high school", "tags": ["union", "global", "union:num_tokens_>3"], "count": 774500, "duration": [6753, 7009, 7299]}, {"query": "+game +downloads", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 639, "duration": [394, 420, 432]}, {"query": "\"game downloads\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [640, 640, 642]}, {"query": "game downloads", "tags": ["union", "global", "union:num_tokens_2"], "count": 188645, "duration": [1574, 1680, 1721]}, {"query": "+chicken +noodle +soup", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 138, "duration": [215, 230, 296]}, {"query": "\"chicken noodle soup\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 24, "duration": [167, 172, 178]}, {"query": "chicken noodle soup", "tags": ["union", "global", "union:num_tokens_3"], "count": 14092, "duration": [453, 454, 461]}, {"query": "+music +stands", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 5577, "duration": [1152, 1208, 1218]}, {"query": "\"music stands\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [2184, 2224, 2297]}, {"query": "music stands", "tags": ["union", "global", "union:num_tokens_2"], "count": 310569, "duration": [2686, 2709, 2885]}, {"query": "+microsoft +frontpage", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 29, "duration": [94, 94, 111]}, {"query": "\"microsoft frontpage\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [99, 126, 127]}, {"query": "microsoft frontpage", "tags": ["union", "global", "union:num_tokens_2"], "count": 14156, "duration": [168, 181, 195]}, {"query": "+camp +claiborne", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 144, "duration": [164, 179, 335]}, {"query": "\"camp claiborne\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 40, "duration": [231, 251, 430]}, {"query": "camp claiborne", "tags": ["union", "global", "union:num_tokens_2"], "count": 69112, "duration": [541, 573, 787]}, {"query": "+william +wallace", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2936, "duration": [511, 520, 541]}, {"query": "\"william wallace\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 611, "duration": [1044, 1047, 1060]}, {"query": "william wallace", "tags": ["union", "global", "union:num_tokens_2"], "count": 192280, "duration": [1861, 2098, 2191]}, {"query": "+home +loan", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9630, "duration": [1104, 1330, 1786]}, {"query": "\"home loan\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 181, "duration": [2413, 2428, 2511]}, {"query": "home loan", "tags": ["union", "global", "union:num_tokens_2"], "count": 389360, "duration": [3094, 3219, 3250]}, {"query": "+cherry +blossom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 490, "duration": [103, 112, 218]}, {"query": "\"cherry blossom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 414, "duration": [188, 200, 330]}, {"query": "cherry blossom", "tags": ["union", "global", "union:num_tokens_2"], "count": 11304, "duration": [331, 335, 340]}, {"query": "+miami +dade +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 431, "duration": [400, 412, 547]}, {"query": "\"miami dade college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 115, "duration": [643, 648, 667]}, {"query": "miami dade college", "tags": ["union", "global", "union:num_tokens_3"], "count": 308550, "duration": [2662, 2701, 2755]}, {"query": "+time +in +denver", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6560, "duration": [3465, 3470, 3623]}, {"query": "\"time in denver\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 16, "duration": [8785, 8916, 9255]}, {"query": "time in denver", "tags": ["union", "global", "union:num_tokens_3"], "count": 4014085, "duration": [27125, 28696, 29698]}, {"query": "+naked +news", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1218, "duration": [415, 434, 479]}, {"query": "\"naked news\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 14, "duration": [626, 708, 724]}, {"query": "naked news", "tags": ["union", "global", "union:num_tokens_2"], "count": 119020, "duration": [1453, 1473, 1473]}, {"query": "+wildlife +photography", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 531, "duration": [353, 355, 409]}, {"query": "\"wildlife photography\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 82, "duration": [462, 485, 532]}, {"query": "wildlife photography", "tags": ["union", "global", "union:num_tokens_2"], "count": 43329, "duration": [830, 846, 866]}, {"query": "+david +kim", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2111, "duration": [526, 542, 656]}, {"query": "\"david kim\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [918, 930, 941]}, {"query": "david kim", "tags": ["union", "global", "union:num_tokens_2"], "count": 159993, "duration": [1705, 1715, 1774]}, {"query": "+printer +ink", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 370, "duration": [131, 138, 142]}, {"query": "\"printer ink\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [187, 192, 206]}, {"query": "printer ink", "tags": ["union", "global", "union:num_tokens_2"], "count": 11717, "duration": [386, 389, 542]}, {"query": "+all +funds", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 25282, "duration": [2022, 2060, 2193]}, {"query": "\"all funds\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 210, "duration": [5351, 5352, 5401]}, {"query": "all funds", "tags": ["union", "global", "union:num_tokens_2"], "count": 909593, "duration": [6187, 6308, 6504]}, {"query": "+zion +national +park", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 350, "duration": [599, 640, 698]}, {"query": "\"zion national park\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 141, "duration": [867, 872, 881]}, {"query": "zion national park", "tags": ["union", "global", "union:num_tokens_3"], "count": 758590, "duration": [5890, 6073, 6099]}, {"query": "+john +klein", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1273, "duration": [563, 612, 656]}, {"query": "\"john klein\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [1103, 1108, 1142]}, {"query": "john klein", "tags": ["union", "global", "union:num_tokens_2"], "count": 349637, "duration": [2762, 2772, 2851]}, {"query": "+edith +wharton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 220, "duration": [102, 138, 303]}, {"query": "\"edith wharton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 206, "duration": [136, 150, 175]}, {"query": "edith wharton", "tags": ["union", "global", "union:num_tokens_2"], "count": 7958, "duration": [282, 295, 356]}, {"query": "+times +union", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 30970, "duration": [2626, 2642, 2781]}, {"query": "\"times union\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 272, "duration": [5189, 5221, 5224]}, {"query": "times union", "tags": ["union", "global", "union:num_tokens_2"], "count": 446943, "duration": [3665, 3702, 3797]}, {"query": "+milan +tennessee", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 112, "duration": [378, 393, 454]}, {"query": "\"milan tennessee\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [451, 453, 502]}, {"query": "milan tennessee", "tags": ["union", "global", "union:num_tokens_2"], "count": 51473, "duration": [986, 1018, 1021]}, {"query": "+western +herald", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1763, "duration": [677, 716, 755]}, {"query": "\"western herald\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 11, "duration": [1069, 1138, 1145]}, {"query": "western herald", "tags": ["union", "global", "union:num_tokens_2"], "count": 266528, "duration": [2354, 2383, 2413]}, {"query": "+care +a +lot", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5003, "duration": [2788, 2870, 2889]}, {"query": "\"care a lot\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [6134, 6163, 6208]}, {"query": "care a lot", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980371, "duration": [23758, 24289, 25182]}, {"query": "+costume +designers", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 557, "duration": [190, 222, 228]}, {"query": "\"costume designers\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 158, "duration": [294, 299, 340]}, {"query": "costume designers", "tags": ["union", "global", "union:num_tokens_2"], "count": 21196, "duration": [506, 516, 527]}, {"query": "+the +actors +studio", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5094, "duration": [2530, 2635, 2821]}, {"query": "\"the actors studio\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 419, "duration": [8156, 8336, 8641]}, {"query": "the actors studio", "tags": ["union", "global", "union:num_tokens_3"], "count": 4169609, "duration": [24907, 26483, 28943]}, {"query": "+personal +chef", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1216, "duration": [434, 442, 460]}, {"query": "\"personal chef\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 50, "duration": [738, 738, 801]}, {"query": "personal chef", "tags": ["union", "global", "union:num_tokens_2"], "count": 196687, "duration": [1821, 1874, 1984]}, {"query": "+david +koresh", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 56, "duration": [81, 93, 121]}, {"query": "\"david koresh\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 53, "duration": [105, 119, 127]}, {"query": "david koresh", "tags": ["union", "global", "union:num_tokens_2"], "count": 144768, "duration": [440, 461, 553]}, {"query": "+bismarck +state +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [569, 617, 648]}, {"query": "\"bismarck state college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [722, 744, 813]}, {"query": "bismarck state college", "tags": ["union", "global", "union:num_tokens_3"], "count": 727128, "duration": [5815, 5855, 6006]}, {"query": "+the +oregonian +newspaper", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 176, "duration": [368, 373, 377]}, {"query": "\"the oregonian newspaper\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 47, "duration": [596, 610, 652]}, {"query": "the oregonian newspaper", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168609, "duration": [24725, 25281, 25769]}, {"query": "+justin +timberlake", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 521, "duration": [97, 109, 143]}, {"query": "\"justin timberlake\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 516, "duration": [134, 157, 276]}, {"query": "justin timberlake", "tags": ["union", "global", "union:num_tokens_2"], "count": 11727, "duration": [200, 207, 253]}, {"query": "+hawk +mountain", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 664, "duration": [296, 298, 318]}, {"query": "\"hawk mountain\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 30, "duration": [525, 529, 743]}, {"query": "hawk mountain", "tags": ["union", "global", "union:num_tokens_2"], "count": 100754, "duration": [1202, 1225, 1245]}, {"query": "+kristanna +loken", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 35, "duration": [61, 75, 79]}, {"query": "\"kristanna loken\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 35, "duration": [56, 83, 155]}, {"query": "kristanna loken", "tags": ["union", "global", "union:num_tokens_2"], "count": 63, "duration": [59, 64, 92]}, {"query": "+chicago +teachers +union", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 425, "duration": [904, 942, 947]}, {"query": "\"chicago teachers union\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 15, "duration": [1187, 1330, 1463]}, {"query": "chicago teachers union", "tags": ["union", "global", "union:num_tokens_3"], "count": 279042, "duration": [2721, 2742, 3024]}, {"query": "+connecticut +historical +society", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 757, "duration": [829, 832, 833]}, {"query": "\"connecticut historical society\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [1145, 1153, 1161]}, {"query": "connecticut historical society", "tags": ["union", "global", "union:num_tokens_3"], "count": 292410, "duration": [2767, 2802, 2820]}, {"query": "+shih +tzu", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 74, "duration": [73, 76, 86]}, {"query": "\"shih tzu\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 52, "duration": [77, 84, 84]}, {"query": "shih tzu", "tags": ["union", "global", "union:num_tokens_2"], "count": 1372, "duration": [110, 147, 292]}, {"query": "+robert +fuller", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1159, "duration": [366, 373, 418]}, {"query": "\"robert fuller\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 120, "duration": [652, 658, 1137]}, {"query": "robert fuller", "tags": ["union", "global", "union:num_tokens_2"], "count": 146946, "duration": [1503, 1508, 1517]}, {"query": "+zip +code", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6552, "duration": [379, 395, 401]}, {"query": "\"zip code\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 6339, "duration": [614, 641, 733]}, {"query": "zip code", "tags": ["union", "global", "union:num_tokens_2"], "count": 63852, "duration": [979, 993, 1097]}, {"query": "+bass +fishing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1950, "duration": [498, 512, 559]}, {"query": "\"bass fishing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 193, "duration": [730, 747, 750]}, {"query": "bass fishing", "tags": ["union", "global", "union:num_tokens_2"], "count": 67801, "duration": [1129, 1140, 1159]}, {"query": "+ford +parts", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2956, "duration": [656, 670, 678]}, {"query": "\"ford parts\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [1115, 1133, 1165]}, {"query": "ford parts", "tags": ["union", "global", "union:num_tokens_2"], "count": 172197, "duration": [1786, 1848, 1936]}, {"query": "+automatic +writing", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1145, "duration": [522, 556, 615]}, {"query": "\"automatic writing\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 133, "duration": [819, 831, 892]}, {"query": "automatic writing", "tags": ["union", "global", "union:num_tokens_2"], "count": 139608, "duration": [1582, 1592, 1621]}, {"query": "+roundabout +theatre", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 330, "duration": [226, 257, 261]}, {"query": "\"roundabout theatre\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 195, "duration": [339, 341, 341]}, {"query": "roundabout theatre", "tags": ["union", "global", "union:num_tokens_2"], "count": 75177, "duration": [840, 851, 874]}, {"query": "+table +lamps", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 341, "duration": [223, 234, 248]}, {"query": "\"table lamps\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [325, 326, 335]}, {"query": "table lamps", "tags": ["union", "global", "union:num_tokens_2"], "count": 65937, "duration": [891, 918, 944]}, {"query": "+the +garden +of +eden", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 983, "duration": [1546, 1565, 1601]}, {"query": "\"the garden of eden\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 603, "duration": [3617, 3642, 3738]}, {"query": "the garden of eden", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4269185, "duration": [41677, 43714, 44836]}, {"query": "+immigration +to +mexico", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1514, "duration": [1228, 1230, 1315]}, {"query": "\"immigration to mexico\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 44, "duration": [2478, 2516, 2524]}, {"query": "immigration to mexico", "tags": ["union", "global", "union:num_tokens_3"], "count": 3107761, "duration": [18818, 18891, 19086]}, {"query": "+the +daily +breeze", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 240, "duration": [463, 464, 567]}, {"query": "\"the daily breeze\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 27, "duration": [899, 953, 1184]}, {"query": "the daily breeze", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168301, "duration": [24723, 25064, 26415]}, {"query": "+debra +jo +rupp", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 14, "duration": [80, 87, 110]}, {"query": "\"debra jo rupp\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [89, 95, 100]}, {"query": "debra jo rupp", "tags": ["union", "global", "union:num_tokens_3"], "count": 16308, "duration": [347, 356, 475]}, {"query": "+term +life +insurance", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2705, "duration": [1423, 1430, 1474]}, {"query": "\"term life insurance\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 26, "duration": [2410, 2513, 2864]}, {"query": "term life insurance", "tags": ["union", "global", "union:num_tokens_3"], "count": 651176, "duration": [5108, 5165, 5304]}, {"query": "+tennis +elbow", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 125, "duration": [189, 208, 210]}, {"query": "\"tennis elbow\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [248, 249, 356]}, {"query": "tennis elbow", "tags": ["union", "global", "union:num_tokens_2"], "count": 38349, "duration": [657, 661, 686]}, {"query": "+kidney +transplant", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 606, "duration": [120, 130, 144]}, {"query": "\"kidney transplant\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 348, "duration": [163, 196, 199]}, {"query": "kidney transplant", "tags": ["union", "global", "union:num_tokens_2"], "count": 8849, "duration": [295, 335, 343]}, {"query": "+us +coast +guard", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2771, "duration": [1353, 1379, 1506]}, {"query": "\"us coast guard\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 393, "duration": [2263, 2268, 2294]}, {"query": "us coast guard", "tags": ["union", "global", "union:num_tokens_3"], "count": 337147, "duration": [3069, 3119, 3121]}, {"query": "+car +stereo", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 537, "duration": [263, 265, 277]}, {"query": "\"car stereo\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 61, "duration": [444, 502, 513]}, {"query": "car stereo", "tags": ["union", "global", "union:num_tokens_2"], "count": 90307, "duration": [1066, 1067, 1203]}, {"query": "+playa +del +rey", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 94, "duration": [140, 163, 174]}, {"query": "\"playa del rey\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 69, "duration": [193, 209, 394]}, {"query": "playa del rey", "tags": ["union", "global", "union:num_tokens_3"], "count": 53641, "duration": [961, 976, 1029]}, {"query": "+domain +names", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2723, "duration": [576, 580, 593]}, {"query": "\"domain names\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 638, "duration": [1006, 1006, 1140]}, {"query": "domain names", "tags": ["union", "global", "union:num_tokens_2"], "count": 132261, "duration": [1545, 1545, 1553]}, {"query": "+premier +wine", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 489, "duration": [399, 414, 445]}, {"query": "\"premier wine\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [597, 634, 639]}, {"query": "premier wine", "tags": ["union", "global", "union:num_tokens_2"], "count": 75263, "duration": [1128, 1184, 1334]}, {"query": "+too +faced", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9989, "duration": [940, 959, 975]}, {"query": "\"too faced\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 21, "duration": [1739, 1819, 1821]}, {"query": "too faced", "tags": ["union", "global", "union:num_tokens_2"], "count": 178211, "duration": [1863, 1896, 2103]}, {"query": "+avon +school", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1195, "duration": [606, 636, 1080]}, {"query": "\"avon school\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [1087, 1097, 1108]}, {"query": "avon school", "tags": ["union", "global", "union:num_tokens_2"], "count": 477882, "duration": [3121, 3124, 3159]}, {"query": "+jungle +boy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 834, "duration": [305, 306, 570]}, {"query": "\"jungle boy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [469, 472, 479]}, {"query": "jungle boy", "tags": ["union", "global", "union:num_tokens_2"], "count": 68527, "duration": [999, 1028, 1068]}, {"query": "+ventura +college", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 424, "duration": [412, 460, 465]}, {"query": "\"ventura college\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 39, "duration": [669, 701, 701]}, {"query": "ventura college", "tags": ["union", "global", "union:num_tokens_2"], "count": 294537, "duration": [1881, 2025, 2196]}, {"query": "+kansas +city +kings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 400, "duration": [619, 635, 662]}, {"query": "\"kansas city kings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 137, "duration": [892, 913, 1115]}, {"query": "kansas city kings", "tags": ["union", "global", "union:num_tokens_3"], "count": 555477, "duration": [4349, 4494, 4568]}, {"query": "+new +haven", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 10926, "duration": [1526, 1545, 1556]}, {"query": "\"new haven\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 4589, "duration": [3690, 3835, 3890]}, {"query": "new haven", "tags": ["union", "global", "union:num_tokens_2"], "count": 962508, "duration": [6529, 6878, 7193]}, {"query": "+ron +keel", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 44, "duration": [162, 201, 218]}, {"query": "\"ron keel\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 13, "duration": [256, 296, 304]}, {"query": "ron keel", "tags": ["union", "global", "union:num_tokens_2"], "count": 22177, "duration": [436, 456, 542]}, {"query": "+business +consultants", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1249, "duration": [377, 398, 467]}, {"query": "\"business consultants\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 55, "duration": [643, 643, 705]}, {"query": "business consultants", "tags": ["union", "global", "union:num_tokens_2"], "count": 183559, "duration": [1568, 1655, 1814]}, {"query": "+open +source +software", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 6482, "duration": [1286, 1296, 1312]}, {"query": "\"open source software\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2037, "duration": [2534, 2618, 2645]}, {"query": "open source software", "tags": ["union", "global", "union:num_tokens_3"], "count": 318670, "duration": [3056, 3199, 3241]}, {"query": "+ambassador +of +italy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3112, "duration": [1946, 2003, 2014]}, {"query": "\"ambassador of italy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [4785, 5090, 5355]}, {"query": "ambassador of italy", "tags": ["union", "global", "union:num_tokens_3"], "count": 3802855, "duration": [22918, 24545, 28676]}, {"query": "+los +angeles +daily +news", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 2192, "duration": [1551, 1561, 1574]}, {"query": "\"los angeles daily news\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 163, "duration": [2360, 2444, 2593]}, {"query": "los angeles daily news", "tags": ["union", "global", "union:num_tokens_>3"], "count": 254583, "duration": [3108, 3124, 3436]}, {"query": "+napa +auto +parts", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 76, "duration": [163, 166, 173]}, {"query": "\"napa auto parts\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 57, "duration": [195, 214, 215]}, {"query": "napa auto parts", "tags": ["union", "global", "union:num_tokens_3"], "count": 162351, "duration": [1858, 1965, 2039]}, {"query": "+law +school +rankings", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 571, "duration": [807, 827, 861]}, {"query": "\"law school rankings\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 14, "duration": [1343, 1350, 1381]}, {"query": "law school rankings", "tags": ["union", "global", "union:num_tokens_3"], "count": 620188, "duration": [5197, 5252, 5272]}, {"query": "+hsbc +bank", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 415, "duration": [182, 187, 238]}, {"query": "\"hsbc bank\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 117, "duration": [296, 301, 309]}, {"query": "hsbc bank", "tags": ["union", "global", "union:num_tokens_2"], "count": 91128, "duration": [581, 655, 661]}, {"query": "+cognitive +impairment", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 739, "duration": [119, 125, 150]}, {"query": "\"cognitive impairment\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 298, "duration": [184, 190, 192]}, {"query": "cognitive impairment", "tags": ["union", "global", "union:num_tokens_2"], "count": 9778, "duration": [377, 388, 402]}, {"query": "+mushroom +kingdom", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 301, "duration": [308, 324, 346]}, {"query": "\"mushroom kingdom\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 24, "duration": [483, 484, 486]}, {"query": "mushroom kingdom", "tags": ["union", "global", "union:num_tokens_2"], "count": 140156, "duration": [1229, 1290, 1320]}, {"query": "+the +progressive", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 31324, "duration": [4355, 4476, 4832]}, {"query": "\"the progressive\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8245, "duration": [23953, 24391, 24819]}, {"query": "the progressive", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168226, "duration": [24021, 24153, 27240]}, {"query": "+mood +swings", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 381, "duration": [106, 115, 128]}, {"query": "\"mood swings\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 341, "duration": [146, 151, 154]}, {"query": "mood swings", "tags": ["union", "global", "union:num_tokens_2"], "count": 11347, "duration": [386, 456, 506]}, {"query": "+ugly +people", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1929, "duration": [686, 698, 708]}, {"query": "\"ugly people\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 34, "duration": [1273, 1319, 1321]}, {"query": "ugly people", "tags": ["union", "global", "union:num_tokens_2"], "count": 485132, "duration": [3192, 3198, 3281]}, {"query": "+little +shop +of +horrors", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 293, "duration": [581, 590, 1033]}, {"query": "\"little shop of horrors\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 251, "duration": [970, 1060, 1103]}, {"query": "little shop of horrors", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3800825, "duration": [23566, 24780, 25124]}, {"query": "+abilene +tx", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 40, "duration": [76, 94, 175]}, {"query": "\"abilene tx\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 18, "duration": [175, 221, 279]}, {"query": "abilene tx", "tags": ["union", "global", "union:num_tokens_2"], "count": 4010, "duration": [148, 150, 180]}, {"query": "+internet +fraud", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1002, "duration": [390, 421, 438]}, {"query": "\"internet fraud\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 38, "duration": [491, 548, 560]}, {"query": "internet fraud", "tags": ["union", "global", "union:num_tokens_2"], "count": 57181, "duration": [932, 1004, 1023]}, {"query": "+tv +party", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 11227, "duration": [1750, 1775, 1785]}, {"query": "\"tv party\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 27, "duration": [3292, 3325, 3400]}, {"query": "tv party", "tags": ["union", "global", "union:num_tokens_2"], "count": 324999, "duration": [2905, 3036, 3247]}, {"query": "+new +jersey +police", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2871, "duration": [1567, 1589, 1617]}, {"query": "\"new jersey police\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 48, "duration": [2945, 2993, 2993]}, {"query": "new jersey police", "tags": ["union", "global", "union:num_tokens_3"], "count": 1012784, "duration": [7552, 7866, 10915]}, {"query": "+university +of +akron", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 1241, "duration": [1260, 1301, 1452]}, {"query": "\"university of akron\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 443, "duration": [2412, 2467, 2486]}, {"query": "university of akron", "tags": ["union", "global", "union:num_tokens_3"], "count": 3806173, "duration": [24471, 24833, 24935]}, {"query": "+the +news +journal", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8686, "duration": [3536, 3547, 3689]}, {"query": "\"the news journal\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 38, "duration": [13138, 13494, 13518]}, {"query": "the news journal", "tags": ["union", "global", "union:num_tokens_3"], "count": 4168904, "duration": [25068, 25075, 27965]}, {"query": "+cartoon +network", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2488, "duration": [433, 437, 450]}, {"query": "\"cartoon network\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1598, "duration": [763, 793, 796]}, {"query": "cartoon network", "tags": ["union", "global", "union:num_tokens_2"], "count": 121970, "duration": [1420, 1445, 1447]}, {"query": "+robert +reed", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1791, "duration": [462, 497, 524]}, {"query": "\"robert reed\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [822, 831, 870]}, {"query": "robert reed", "tags": ["union", "global", "union:num_tokens_2"], "count": 152743, "duration": [1659, 1671, 1725]}, {"query": "+interracial +love", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 285, "duration": [223, 250, 260]}, {"query": "\"interracial love\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 26, "duration": [328, 336, 393]}, {"query": "interracial love", "tags": ["union", "global", "union:num_tokens_2"], "count": 126726, "duration": [781, 819, 884]}, {"query": "+round +table", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 9823, "duration": [1081, 1129, 1133]}, {"query": "\"round table\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1790, "duration": [2214, 2255, 2345]}, {"query": "round table", "tags": ["union", "global", "union:num_tokens_2"], "count": 212022, "duration": [2093, 2117, 2132]}, {"query": "+low +estrogen", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 373, "duration": [223, 246, 264]}, {"query": "\"low estrogen\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [368, 400, 484]}, {"query": "low estrogen", "tags": ["union", "global", "union:num_tokens_2"], "count": 148462, "duration": [813, 836, 965]}, {"query": "+akron +beacon", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 97, "duration": [91, 97, 122]}, {"query": "\"akron beacon\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 87, "duration": [135, 148, 224]}, {"query": "akron beacon", "tags": ["union", "global", "union:num_tokens_2"], "count": 7393, "duration": [259, 272, 294]}, {"query": "+john +wellington", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3519, "duration": [748, 763, 774]}, {"query": "\"john wellington\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [1509, 1547, 1550]}, {"query": "john wellington", "tags": ["union", "global", "union:num_tokens_2"], "count": 355372, "duration": [2847, 2928, 2977]}, {"query": "+city +in +iran", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 7697, "duration": [3550, 3724, 3743]}, {"query": "\"city in iran\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 55, "duration": [9045, 9095, 9140]}, {"query": "city in iran", "tags": ["union", "global", "union:num_tokens_3"], "count": 4015608, "duration": [26353, 26636, 27769]}, {"query": "+corpus +christi +tx", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 55, "duration": [131, 133, 146]}, {"query": "\"corpus christi tx\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 22, "duration": [147, 179, 219]}, {"query": "corpus christi tx", "tags": ["union", "global", "union:num_tokens_3"], "count": 11520, "duration": [469, 472, 491]}, {"query": "+becoming +a +widow", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 2703, "duration": [1780, 1786, 2595]}, {"query": "\"becoming a widow\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 31, "duration": [3755, 3762, 3767]}, {"query": "becoming a widow", "tags": ["union", "global", "union:num_tokens_3"], "count": 3980777, "duration": [23849, 23974, 24066]}, {"query": "+king +kalakaua", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 66, "duration": [126, 163, 233]}, {"query": "\"king kalakaua\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 25, "duration": [168, 199, 331]}, {"query": "king kalakaua", "tags": ["union", "global", "union:num_tokens_2"], "count": 178640, "duration": [492, 514, 528]}, {"query": "+centerville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 136, "duration": [417, 434, 466]}, {"query": "\"centerville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 25, "duration": [508, 540, 556]}, {"query": "centerville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748828, "duration": [6505, 6758, 6884]}, {"query": "+foam +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 47, "duration": [104, 120, 144]}, {"query": "\"foam mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [81, 88, 108]}, {"query": "foam mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 3783, "duration": [173, 188, 188]}, {"query": "+music +videos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 14379, "duration": [840, 841, 860]}, {"query": "\"music videos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 8754, "duration": [2371, 2375, 2458]}, {"query": "music videos", "tags": ["union", "global", "union:num_tokens_2"], "count": 273351, "duration": [2459, 2487, 2545]}, {"query": "+farmers +almanac", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 65, "duration": [138, 146, 167]}, {"query": "\"farmers almanac\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 17, "duration": [163, 175, 185]}, {"query": "farmers almanac", "tags": ["union", "global", "union:num_tokens_2"], "count": 29487, "duration": [394, 427, 564]}, {"query": "+civil +war +battlefields", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 426, "duration": [463, 544, 579]}, {"query": "\"civil war battlefields\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 52, "duration": [740, 765, 785]}, {"query": "civil war battlefields", "tags": ["union", "global", "union:num_tokens_3"], "count": 463674, "duration": [4088, 4160, 4437]}, {"query": "+national +security +cutter", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 128, "duration": [404, 415, 443]}, {"query": "\"national security cutter\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 13, "duration": [572, 614, 623]}, {"query": "national security cutter", "tags": ["union", "global", "union:num_tokens_3"], "count": 687518, "duration": [5268, 5295, 5347]}, {"query": "+eastern +mennonite +university", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 88, "duration": [441, 514, 643]}, {"query": "\"eastern mennonite university\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 33, "duration": [486, 488, 519]}, {"query": "eastern mennonite university", "tags": ["union", "global", "union:num_tokens_3"], "count": 638451, "duration": [4962, 5466, 5751]}, {"query": "+new +york +times +best +sellers +list", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 339, "duration": [1259, 1263, 1310]}, {"query": "\"new york times best sellers list\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 58, "duration": [1862, 1995, 2038]}, {"query": "new york times best sellers list", "tags": ["union", "global", "union:num_tokens_>3"], "count": 1424119, "duration": [13547, 13602, 13963]}, {"query": "+usb +hub", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 114, "duration": [133, 136, 175]}, {"query": "\"usb hub\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 42, "duration": [167, 215, 227]}, {"query": "usb hub", "tags": ["union", "global", "union:num_tokens_2"], "count": 16349, "duration": [365, 380, 401]}, {"query": "+rob +halford", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 129, "duration": [85, 100, 117]}, {"query": "\"rob halford\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 122, "duration": [134, 156, 240]}, {"query": "rob halford", "tags": ["union", "global", "union:num_tokens_2"], "count": 16639, "duration": [307, 451, 551]}, {"query": "+new +york +towns", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 5942, "duration": [2237, 2368, 2421]}, {"query": "\"new york towns\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 20, "duration": [4476, 4498, 4656]}, {"query": "new york towns", "tags": ["union", "global", "union:num_tokens_3"], "count": 1004290, "duration": [8266, 8789, 8953]}, {"query": "+medal +of +honor", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 9831, "duration": [3542, 3600, 3622]}, {"query": "\"medal of honor\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 5175, "duration": [9455, 9526, 9837]}, {"query": "medal of honor", "tags": ["union", "global", "union:num_tokens_3"], "count": 3815913, "duration": [23292, 23614, 23918]}, {"query": "+hot +springs +south +dakota", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 101, "duration": [436, 441, 456]}, {"query": "\"hot springs south dakota\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 26, "duration": [595, 614, 742]}, {"query": "hot springs south dakota", "tags": ["union", "global", "union:num_tokens_>3"], "count": 621002, "duration": [4860, 4962, 5102]}, {"query": "+home +business", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 42326, "duration": [2904, 2981, 3069]}, {"query": "\"home business\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 105, "duration": [6106, 6193, 10663]}, {"query": "home business", "tags": ["union", "global", "union:num_tokens_2"], "count": 506318, "duration": [4119, 4120, 4132]}, {"query": "+perfume +bottles", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 110, "duration": [120, 134, 178]}, {"query": "\"perfume bottles\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 46, "duration": [120, 130, 135]}, {"query": "perfume bottles", "tags": ["union", "global", "union:num_tokens_2"], "count": 7141, "duration": [237, 244, 286]}, {"query": "+old +photos", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3633, "duration": [756, 785, 853]}, {"query": "\"old photos\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 79, "duration": [1484, 1500, 1737]}, {"query": "old photos", "tags": ["union", "global", "union:num_tokens_2"], "count": 341994, "duration": [2771, 2856, 2864]}, {"query": "+edith +head", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 861, "duration": [467, 472, 495]}, {"query": "\"edith head\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 98, "duration": [769, 793, 1275]}, {"query": "edith head", "tags": ["union", "global", "union:num_tokens_2"], "count": 236925, "duration": [2021, 2024, 2061]}, {"query": "+danube +river", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2784, "duration": [491, 528, 529]}, {"query": "\"danube river\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 853, "duration": [1046, 1095, 1257]}, {"query": "danube river", "tags": ["union", "global", "union:num_tokens_2"], "count": 254858, "duration": [2118, 2221, 2231]}, {"query": "+bladder +tumor", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 218, "duration": [98, 103, 109]}, {"query": "\"bladder tumor\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 10, "duration": [134, 139, 176]}, {"query": "bladder tumor", "tags": ["union", "global", "union:num_tokens_2"], "count": 7833, "duration": [279, 295, 469]}, {"query": "+the +british +embassy", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 4083, "duration": [2365, 2389, 2652]}, {"query": "\"the british embassy\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 877, "duration": [8229, 8296, 9153]}, {"query": "the british embassy", "tags": ["union", "global", "union:num_tokens_3"], "count": 4171625, "duration": [25690, 25966, 27057]}, {"query": "+human +trafficking", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2520, "duration": [355, 356, 425]}, {"query": "\"human trafficking\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1404, "duration": [776, 786, 800]}, {"query": "human trafficking", "tags": ["union", "global", "union:num_tokens_2"], "count": 138987, "duration": [1476, 1537, 1541]}, {"query": "+new +england +aquarium", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 171, "duration": [556, 575, 586]}, {"query": "\"new england aquarium\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 28, "duration": [783, 791, 978]}, {"query": "new england aquarium", "tags": ["union", "global", "union:num_tokens_3"], "count": 1078395, "duration": [7830, 7929, 8138]}, {"query": "+the +book +of +life", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 92527, "duration": [17349, 17386, 17792]}, {"query": "\"the book of life\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 95, "duration": [94697, 96404, 97035]}, {"query": "the book of life", "tags": ["union", "global", "union:num_tokens_>3"], "count": 4270464, "duration": [45088, 47248, 47490]}, {"query": "+rolex +watches", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 60, "duration": [96, 116, 119]}, {"query": "\"rolex watches\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 22, "duration": [94, 120, 238]}, {"query": "rolex watches", "tags": ["union", "global", "union:num_tokens_2"], "count": 7172, "duration": [162, 166, 183]}, {"query": "+water +filters", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1015, "duration": [398, 399, 403]}, {"query": "\"water filters\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 86, "duration": [728, 736, 813]}, {"query": "water filters", "tags": ["union", "global", "union:num_tokens_2"], "count": 200981, "duration": [1564, 1572, 1686]}, {"query": "+general +motors", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4474, "duration": [734, 760, 1195]}, {"query": "\"general motors\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 3236, "duration": [1511, 1565, 1614]}, {"query": "general motors", "tags": ["union", "global", "union:num_tokens_2"], "count": 360654, "duration": [2903, 2976, 2992]}, {"query": "+the +preakness", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 980, "duration": [649, 668, 763]}, {"query": "\"the preakness\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 784, "duration": [1365, 1494, 1637]}, {"query": "the preakness", "tags": ["union", "global", "union:num_tokens_2"], "count": 4168065, "duration": [12903, 12905, 18269]}, {"query": "+blue +ridge +parkway", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 284, "duration": [306, 380, 401]}, {"query": "\"blue ridge parkway\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 214, "duration": [467, 487, 516]}, {"query": "blue ridge parkway", "tags": ["union", "global", "union:num_tokens_3"], "count": 126816, "duration": [1598, 1612, 1621]}, {"query": "+elizabeth +vargas", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 83, "duration": [187, 188, 194]}, {"query": "\"elizabeth vargas\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 16, "duration": [245, 246, 265]}, {"query": "elizabeth vargas", "tags": ["union", "global", "union:num_tokens_2"], "count": 55586, "duration": [726, 733, 734]}, {"query": "+canon +powershot", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 58, "duration": [67, 69, 124]}, {"query": "\"canon powershot\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 54, "duration": [79, 102, 134]}, {"query": "canon powershot", "tags": ["union", "global", "union:num_tokens_2"], "count": 15162, "duration": [97, 97, 102]}, {"query": "+air +mattress", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 201, "duration": [280, 284, 297]}, {"query": "\"air mattress\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 19, "duration": [332, 341, 370]}, {"query": "air mattress", "tags": ["union", "global", "union:num_tokens_2"], "count": 170597, "duration": [891, 912, 953]}, {"query": "+pocket +pc", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 434, "duration": [219, 220, 222]}, {"query": "\"pocket pc\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 182, "duration": [320, 321, 333]}, {"query": "pocket pc", "tags": ["union", "global", "union:num_tokens_2"], "count": 26300, "duration": [564, 587, 612]}, {"query": "+chicago +public +schools", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 3258, "duration": [1679, 1684, 1792]}, {"query": "\"chicago public schools\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 244, "duration": [2697, 2705, 3070]}, {"query": "chicago public schools", "tags": ["union", "global", "union:num_tokens_3"], "count": 467039, "duration": [4101, 4157, 4205]}, {"query": "+george +r +brown +convention +center", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 121, "duration": [1386, 1454, 1577]}, {"query": "\"george r brown convention center\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 20, "duration": [1615, 1618, 1951]}, {"query": "george r brown convention center", "tags": ["union", "global", "union:num_tokens_>3"], "count": 635117, "duration": [5399, 5613, 5705]}, {"query": "+warren +county", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 4708, "duration": [955, 997, 1028]}, {"query": "\"warren county\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1322, "duration": [1900, 1945, 2887]}, {"query": "warren county", "tags": ["union", "global", "union:num_tokens_2"], "count": 487676, "duration": [3628, 3717, 3897]}, {"query": "+animal +rights", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 3919, "duration": [799, 849, 886]}, {"query": "\"animal rights\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 1515, "duration": [1311, 1322, 1343]}, {"query": "animal rights", "tags": ["union", "global", "union:num_tokens_2"], "count": 144566, "duration": [1627, 1646, 1803]}, {"query": "+david +lee +roth", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 234, "duration": [316, 345, 486]}, {"query": "\"david lee roth\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 151, "duration": [482, 484, 796]}, {"query": "david lee roth", "tags": ["union", "global", "union:num_tokens_3"], "count": 192019, "duration": [2052, 2062, 2097]}, {"query": "+central +community +college", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 8481, "duration": [4024, 4123, 4158]}, {"query": "\"central community college\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 82, "duration": [5976, 6000, 6069]}, {"query": "central community college", "tags": ["union", "global", "union:num_tokens_3"], "count": 778663, "duration": [6028, 6311, 6395]}, {"query": "+power +rangers +ninja +storm", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 24, "duration": [235, 259, 291]}, {"query": "\"power rangers ninja storm\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 19, "duration": [215, 234, 256]}, {"query": "power rangers ninja storm", "tags": ["union", "global", "union:num_tokens_>3"], "count": 231009, "duration": [2391, 2447, 2454]}, {"query": "+movie +theatres", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2050, "duration": [331, 350, 365]}, {"query": "\"movie theatres\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 314, "duration": [609, 613, 639]}, {"query": "movie theatres", "tags": ["union", "global", "union:num_tokens_2"], "count": 89056, "duration": [1175, 1226, 1404]}, {"query": "+canary +bird", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 319, "duration": [188, 197, 215]}, {"query": "\"canary bird\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [304, 330, 336]}, {"query": "canary bird", "tags": ["union", "global", "union:num_tokens_2"], "count": 41550, "duration": [666, 678, 846]}, {"query": "+health +literacy", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 1982, "duration": [399, 403, 454]}, {"query": "\"health literacy\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 48, "duration": [771, 772, 845]}, {"query": "health literacy", "tags": ["union", "global", "union:num_tokens_2"], "count": 126649, "duration": [1452, 1455, 1460]}, {"query": "+david +thornton", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 652, "duration": [328, 364, 372]}, {"query": "\"david thornton\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 20, "duration": [546, 569, 712]}, {"query": "david thornton", "tags": ["union", "global", "union:num_tokens_2"], "count": 148177, "duration": [1389, 1415, 1450]}, {"query": "+jamie +murray", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 372, "duration": [206, 228, 246]}, {"query": "\"jamie murray\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 115, "duration": [295, 301, 372]}, {"query": "jamie murray", "tags": ["union", "global", "union:num_tokens_2"], "count": 27089, "duration": [593, 669, 695]}, {"query": "+boulder +city +nevada", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 169, "duration": [297, 312, 340]}, {"query": "\"boulder city nevada\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 65, "duration": [416, 437, 484]}, {"query": "boulder city nevada", "tags": ["union", "global", "union:num_tokens_3"], "count": 536978, "duration": [4225, 4386, 4402]}, {"query": "+united +states +constitution", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 16193, "duration": [2608, 2614, 2666]}, {"query": "\"united states constitution\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 2840, "duration": [6528, 6605, 6686]}, {"query": "united states constitution", "tags": ["union", "global", "union:num_tokens_3"], "count": 686232, "duration": [7200, 7330, 7416]}, {"query": "+niceville +high +school", "tags": ["intersection", "global", "intersection:num_tokens_3"], "count": 21, "duration": [157, 175, 222]}, {"query": "\"niceville high school\"", "tags": ["phrase", "phrase:num_tokens_3"], "count": 11, "duration": [180, 182, 187]}, {"query": "niceville high school", "tags": ["union", "global", "union:num_tokens_3"], "count": 748534, "duration": [6307, 6408, 6475]}, {"query": "+sleep +study", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 2570, "duration": [503, 511, 547]}, {"query": "\"sleep study\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 33, "duration": [970, 985, 1001]}, {"query": "sleep study", "tags": ["union", "global", "union:num_tokens_2"], "count": 155369, "duration": [1692, 1739, 1784]}, {"query": "+true +religion", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 6165, "duration": [796, 805, 822]}, {"query": "\"true religion\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 255, "duration": [1378, 1394, 1399]}, {"query": "true religion", "tags": ["union", "global", "union:num_tokens_2"], "count": 126586, "duration": [1530, 1554, 1583]}, {"query": "+google +satellite", "tags": ["intersection", "global", "intersection:num_tokens_2"], "count": 425, "duration": [237, 257, 357]}, {"query": "\"google satellite\"", "tags": ["phrase", "phrase:num_tokens_2"], "count": 12, "duration": [329, 334, 363]}, {"query": "google satellite", "tags": ["union", "global", "union:num_tokens_2"], "count": 36113, "duration": [695, 737, 907]}, {"query": "+laborers +international +union +of +north +america", "tags": ["intersection", "global", "intersection:num_tokens_>3"], "count": 237, "duration": [1168, 1197, 1218]}, {"query": "\"laborers international union of north america\"", "tags": ["phrase", "phrase:num_tokens_>3"], "count": 37, "duration": [1550, 1616, 1632]}, {"query": "laborers international union of north america", "tags": ["union", "global", "union:num_tokens_>3"], "count": 3837687, "duration": [28962, 30030, 30523]}, {"query": "+\"the who\" +uk", "tags": ["two-phase-critic"], "count": 660, "duration": [48453, 48514, 49001]}, {"query": "id_num:[48694410 TO 48694420] +griffith +observatory", "tags": ["range", "range_selective"], "count": 79, "duration": [567, 649, 674]}, {"query": "id_num:[48694410 TO 48694420] +the", "tags": ["range", "range_selective"], "count": 4168064, "duration": [7921, 8518, 8949]}, {"query": "id_num:[48694410 TO 48694420] niceville high school", "tags": ["range", "range_selective"], "count": 748534, "duration": [6973, 7108, 7255]}, {"query": "id_num:[0 TO 10000000] +griffith +observatory", "tags": ["range", "range_unselective"], "count": 79, "duration": [588, 701, 752]}, {"query": "id_num:[0 TO 10000000] +the", "tags": ["range", "range_unselective"], "count": 4168064, "duration": [8116, 8316, 8433]}, {"query": "id_num:[0 TO 10000000] niceville high school", "tags": ["range", "range_unselective"], "count": 748534, "duration": [7025, 7029, 7230]}]}} \ No newline at end of file diff --git a/web/build/service-worker.js b/web/build/service-worker.js new file mode 100644 index 00000000000..93456660b8a --- /dev/null +++ b/web/build/service-worker.js @@ -0,0 +1,39 @@ +/** + * Welcome to your Workbox-powered service worker! + * + * You'll need to register this file in your web app and you should + * disable HTTP caching for this file too. + * See https://goo.gl/nhQhGp + * + * The rest of the code is auto-generated. Please don't update this file + * directly; instead, make changes to your Workbox build configuration + * and re-run your build process. + * See https://goo.gl/2aRDsh + */ + +importScripts("https://storage.googleapis.com/workbox-cdn/releases/4.3.1/workbox-sw.js"); + +importScripts( + "/precache-manifest.7b83eae4e2e4343e988370e38597b789.js" +); + +self.addEventListener('message', (event) => { + if (event.data && event.data.type === 'SKIP_WAITING') { + self.skipWaiting(); + } +}); + +workbox.core.clientsClaim(); + +/** + * The workboxSW.precacheAndRoute() method efficiently caches and responds to + * requests for URLs in the manifest. + * See https://goo.gl/S9QRab + */ +self.__precacheManifest = [].concat(self.__precacheManifest || []); +workbox.precaching.precacheAndRoute(self.__precacheManifest, {}); + +workbox.routing.registerNavigationRoute(workbox.precaching.getCacheKeyForURL("/index.html"), { + + blacklist: [/^\/_/,/\/[^\/?]+\.[^\/]+$/], +}); diff --git a/web/build/static/css/main.efe263f6.chunk.css b/web/build/static/css/main.efe263f6.chunk.css new file mode 100644 index 00000000000..761ceb67e9d --- /dev/null +++ b/web/build/static/css/main.efe263f6.chunk.css @@ -0,0 +1,2 @@ +body{max-width:1000px;margin:0 auto;padding:30px 10px}.fastest{background-color:#cddccd;color:#222}.slowest{background-color:#e0b8b8;color:#222}.unsupported{background-color:#9c948a}td{border:1px solid #fff;text-align:right;min-width:100px}td:last-child{padding-right:10px}.average-row td{width:70px;padding:10px;background-color:#382373;color:#fff;border-bottom:8px solid #fff}td.data{padding:1.2rem 1.5rem .5rem}td div.timing{font-size:15px}td div.timing-variation{color:red;font-size:10px;height:15px}td div.count{color:#717171;font-size:12px;height:15px} +/*# sourceMappingURL=main.efe263f6.chunk.css.map */ \ No newline at end of file diff --git a/web/build/static/css/main.efe263f6.chunk.css.map b/web/build/static/css/main.efe263f6.chunk.css.map new file mode 100644 index 00000000000..36069ad3f9b --- /dev/null +++ b/web/build/static/css/main.efe263f6.chunk.css.map @@ -0,0 +1 @@ +{"version":3,"sources":["style.scss"],"names":[],"mappings":"AAIA,KACE,gBAAiB,CACjB,aAAc,CACd,iBAAkB,CACnB,SAGC,wBAAyB,CACzB,UAAW,CACZ,SAGC,wBAAyB,CACzB,UAAW,CACZ,aAGC,wBAAyB,CAC1B,GAGG,qBAAuB,CACvB,gBAAiB,CACjB,eAAgB,CACnB,cAGC,kBAAmB,CACpB,gBAGC,UAAW,CACX,YAAa,CACb,wBAAyB,CACzB,UAAY,CACZ,4BACF,CAAC,QAGC,2BAAoC,CACrC,cAGC,cAAe,CAChB,wBAGC,SAAU,CACV,cAAe,CACf,WAAY,CACb,aAGC,aAAc,CACd,cAAe,CACf,WAAY","file":"main.efe263f6.chunk.css","sourcesContent":["\nhtml {\n}\n\nbody {\n max-width: 1000px;\n margin: 0 auto;\n padding: 30px 10px;\n}\n\n.fastest {\n background-color: #cddccd;\n color: #222;\n}\n\n.slowest {\n background-color: #e0b8b8;\n color: #222;\n}\n\n.unsupported {\n background-color: #9c948a;\n}\n\ntd {\n border: solid 1px white;\n text-align: right;\n min-width: 100px;\n}\n\ntd:last-child {\n padding-right: 10px;\n}\n\n.average-row td {\n width: 70px;\n padding: 10px;\n background-color: #382373;\n color: white;\n border-bottom: solid 8px white\n}\n\ntd.data {\n padding: 1.2rem 1.5rem 0.5rem 1.5rem;\n}\n\ntd div.timing {\n font-size: 15px;\n}\n\ntd div.timing-variation {\n color: red; \n font-size: 10px;\n height: 15px;\n}\n\ntd div.count {\n color: #717171; \n font-size: 12px;\n height: 15px;\n}\n"]} \ No newline at end of file diff --git a/web/build/static/js/2.b9a6fc97.chunk.js b/web/build/static/js/2.b9a6fc97.chunk.js new file mode 100644 index 00000000000..17a4a31361b --- /dev/null +++ b/web/build/static/js/2.b9a6fc97.chunk.js @@ -0,0 +1,3 @@ +/*! For license information please see 2.b9a6fc97.chunk.js.LICENSE.txt */ +(this["webpackJsonpsearch-benchmark"]=this["webpackJsonpsearch-benchmark"]||[]).push([[2],[function(e,t,n){"use strict";e.exports=n(10)},function(e,t,n){"use strict";function r(e,t){(null==t||t>e.length)&&(t=e.length);for(var n=0,r=new Array(t);n=e.length?{done:!0}:{done:!1,value:e[t++]}},e:function(e){throw e},f:n}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var i,o,a=!0,l=!1;return{s:function(){i=e[Symbol.iterator]()},n:function(){var e=i.next();return a=e.done,e},e:function(e){l=!0,o=e},f:function(){try{a||null==i.return||i.return()}finally{if(l)throw o}}}}n.d(t,"a",(function(){return i}))},function(e,t,n){var r;!function(t,n){"use strict";"object"===typeof e.exports?e.exports=t.document?n(t,!0):function(e){if(!e.document)throw new Error("jQuery requires a window with a document");return n(e)}:n(t)}("undefined"!==typeof window?window:this,(function(n,i){"use strict";var o=[],a=Object.getPrototypeOf,l=o.slice,u=o.flat?function(e){return o.flat.call(e)}:function(e){return o.concat.apply([],e)},s=o.push,c=o.indexOf,f={},d=f.toString,p=f.hasOwnProperty,h=p.toString,m=h.call(Object),g={},v=function(e){return"function"===typeof e&&"number"!==typeof e.nodeType},y=function(e){return null!=e&&e===e.window},b=n.document,x={type:!0,src:!0,nonce:!0,noModule:!0};function w(e,t,n){var r,i,o=(n=n||b).createElement("script");if(o.text=e,t)for(r in x)(i=t[r]||t.getAttribute&&t.getAttribute(r))&&o.setAttribute(r,i);n.head.appendChild(o).parentNode.removeChild(o)}function k(e){return null==e?e+"":"object"===typeof e||"function"===typeof e?f[d.call(e)]||"object":typeof e}var T=function e(t,n){return new e.fn.init(t,n)};function E(e){var t=!!e&&"length"in e&&e.length,n=k(e);return!v(e)&&!y(e)&&("array"===n||0===t||"number"===typeof t&&t>0&&t-1 in e)}T.fn=T.prototype={jquery:"3.5.1",constructor:T,length:0,toArray:function(){return l.call(this)},get:function(e){return null==e?l.call(this):e<0?this[e+this.length]:this[e]},pushStack:function(e){var t=T.merge(this.constructor(),e);return t.prevObject=this,t},each:function(e){return T.each(this,e)},map:function(e){return this.pushStack(T.map(this,(function(t,n){return e.call(t,n,t)})))},slice:function(){return this.pushStack(l.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},even:function(){return this.pushStack(T.grep(this,(function(e,t){return(t+1)%2})))},odd:function(){return this.pushStack(T.grep(this,(function(e,t){return t%2})))},eq:function(e){var t=this.length,n=+e+(e<0?t:0);return this.pushStack(n>=0&&n+~]|"+I+")"+I+"*"),B=new RegExp(I+"|>"),V=new RegExp(H),Q=new RegExp("^"+z+"$"),K={ID:new RegExp("^#("+z+")"),CLASS:new RegExp("^\\.("+z+")"),TAG:new RegExp("^("+z+"|[*])"),ATTR:new RegExp("^"+F),PSEUDO:new RegExp("^"+H),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+I+"*(even|odd|(([+-]|)(\\d*)n|)"+I+"*(?:([+-]|)"+I+"*(\\d+)|))"+I+"*\\)|)","i"),bool:new RegExp("^(?:"+M+")$","i"),needsContext:new RegExp("^"+I+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+I+"*((?:-\\d)?\\d*)"+I+"*\\)|)(?=[^-]|$)","i")},X=/HTML$/i,Y=/^(?:input|select|textarea|button)$/i,G=/^h\d$/i,J=/^[^{]+\{\s*\[native \w/,Z=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ee=/[+~]/,te=new RegExp("\\\\[\\da-fA-F]{1,6}"+I+"?|\\\\([^\\r\\n\\f])","g"),ne=function(e,t){var n="0x"+e.slice(1)-65536;return t||(n<0?String.fromCharCode(n+65536):String.fromCharCode(n>>10|55296,1023&n|56320))},re=/([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g,ie=function(e,t){return t?"\0"===e?"\ufffd":e.slice(0,-1)+"\\"+e.charCodeAt(e.length-1).toString(16)+" ":"\\"+e},oe=function(){d()},ae=xe((function(e){return!0===e.disabled&&"fieldset"===e.nodeName.toLowerCase()}),{dir:"parentNode",next:"legend"});try{L.apply(D=j.call(w.childNodes),w.childNodes),D[w.childNodes.length].nodeType}catch(Se){L={apply:D.length?function(e,t){A.apply(e,j.call(t))}:function(e,t){for(var n=e.length,r=0;e[n++]=t[r++];);e.length=n-1}}}function le(e,t,r,i){var o,l,s,c,f,h,v,y=t&&t.ownerDocument,w=t?t.nodeType:9;if(r=r||[],"string"!==typeof e||!e||1!==w&&9!==w&&11!==w)return r;if(!i&&(d(t),t=t||p,m)){if(11!==w&&(f=Z.exec(e)))if(o=f[1]){if(9===w){if(!(s=t.getElementById(o)))return r;if(s.id===o)return r.push(s),r}else if(y&&(s=y.getElementById(o))&&b(t,s)&&s.id===o)return r.push(s),r}else{if(f[2])return L.apply(r,t.getElementsByTagName(e)),r;if((o=f[3])&&n.getElementsByClassName&&t.getElementsByClassName)return L.apply(r,t.getElementsByClassName(o)),r}if(n.qsa&&!N[e+" "]&&(!g||!g.test(e))&&(1!==w||"object"!==t.nodeName.toLowerCase())){if(v=e,y=t,1===w&&(B.test(e)||$.test(e))){for((y=ee.test(e)&&ve(t.parentNode)||t)===t&&n.scope||((c=t.getAttribute("id"))?c=c.replace(re,ie):t.setAttribute("id",c=x)),l=(h=a(e)).length;l--;)h[l]=(c?"#"+c:":scope")+" "+be(h[l]);v=h.join(",")}try{return L.apply(r,y.querySelectorAll(v)),r}catch(k){N(e,!0)}finally{c===x&&t.removeAttribute("id")}}}return u(e.replace(W,"$1"),t,r,i)}function ue(){var e=[];return function t(n,i){return e.push(n+" ")>r.cacheLength&&delete t[e.shift()],t[n+" "]=i}}function se(e){return e[x]=!0,e}function ce(e){var t=p.createElement("fieldset");try{return!!e(t)}catch(Se){return!1}finally{t.parentNode&&t.parentNode.removeChild(t),t=null}}function fe(e,t){for(var n=e.split("|"),i=n.length;i--;)r.attrHandle[n[i]]=t}function de(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&e.sourceIndex-t.sourceIndex;if(r)return r;if(n)for(;n=n.nextSibling;)if(n===t)return-1;return e?1:-1}function pe(e){return function(t){return"input"===t.nodeName.toLowerCase()&&t.type===e}}function he(e){return function(t){var n=t.nodeName.toLowerCase();return("input"===n||"button"===n)&&t.type===e}}function me(e){return function(t){return"form"in t?t.parentNode&&!1===t.disabled?"label"in t?"label"in t.parentNode?t.parentNode.disabled===e:t.disabled===e:t.isDisabled===e||t.isDisabled!==!e&&ae(t)===e:t.disabled===e:"label"in t&&t.disabled===e}}function ge(e){return se((function(t){return t=+t,se((function(n,r){for(var i,o=e([],n.length,t),a=o.length;a--;)n[i=o[a]]&&(n[i]=!(r[i]=n[i]))}))}))}function ve(e){return e&&"undefined"!==typeof e.getElementsByTagName&&e}for(t in n=le.support={},o=le.isXML=function(e){var t=e.namespaceURI,n=(e.ownerDocument||e).documentElement;return!X.test(t||n&&n.nodeName||"HTML")},d=le.setDocument=function(e){var t,i,a=e?e.ownerDocument||e:w;return a!=p&&9===a.nodeType&&a.documentElement?(h=(p=a).documentElement,m=!o(p),w!=p&&(i=p.defaultView)&&i.top!==i&&(i.addEventListener?i.addEventListener("unload",oe,!1):i.attachEvent&&i.attachEvent("onunload",oe)),n.scope=ce((function(e){return h.appendChild(e).appendChild(p.createElement("div")),"undefined"!==typeof e.querySelectorAll&&!e.querySelectorAll(":scope fieldset div").length})),n.attributes=ce((function(e){return e.className="i",!e.getAttribute("className")})),n.getElementsByTagName=ce((function(e){return e.appendChild(p.createComment("")),!e.getElementsByTagName("*").length})),n.getElementsByClassName=J.test(p.getElementsByClassName),n.getById=ce((function(e){return h.appendChild(e).id=x,!p.getElementsByName||!p.getElementsByName(x).length})),n.getById?(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){return e.getAttribute("id")===t}},r.find.ID=function(e,t){if("undefined"!==typeof t.getElementById&&m){var n=t.getElementById(e);return n?[n]:[]}}):(r.filter.ID=function(e){var t=e.replace(te,ne);return function(e){var n="undefined"!==typeof e.getAttributeNode&&e.getAttributeNode("id");return n&&n.value===t}},r.find.ID=function(e,t){if("undefined"!==typeof t.getElementById&&m){var n,r,i,o=t.getElementById(e);if(o){if((n=o.getAttributeNode("id"))&&n.value===e)return[o];for(i=t.getElementsByName(e),r=0;o=i[r++];)if((n=o.getAttributeNode("id"))&&n.value===e)return[o]}return[]}}),r.find.TAG=n.getElementsByTagName?function(e,t){return"undefined"!==typeof t.getElementsByTagName?t.getElementsByTagName(e):n.qsa?t.querySelectorAll(e):void 0}:function(e,t){var n,r=[],i=0,o=t.getElementsByTagName(e);if("*"===e){for(;n=o[i++];)1===n.nodeType&&r.push(n);return r}return o},r.find.CLASS=n.getElementsByClassName&&function(e,t){if("undefined"!==typeof t.getElementsByClassName&&m)return t.getElementsByClassName(e)},v=[],g=[],(n.qsa=J.test(p.querySelectorAll))&&(ce((function(e){var t;h.appendChild(e).innerHTML="",e.querySelectorAll("[msallowcapture^='']").length&&g.push("[*^$]="+I+"*(?:''|\"\")"),e.querySelectorAll("[selected]").length||g.push("\\["+I+"*(?:value|"+M+")"),e.querySelectorAll("[id~="+x+"-]").length||g.push("~="),(t=p.createElement("input")).setAttribute("name",""),e.appendChild(t),e.querySelectorAll("[name='']").length||g.push("\\["+I+"*name"+I+"*="+I+"*(?:''|\"\")"),e.querySelectorAll(":checked").length||g.push(":checked"),e.querySelectorAll("a#"+x+"+*").length||g.push(".#.+[+~]"),e.querySelectorAll("\\\f"),g.push("[\\r\\n\\f]")})),ce((function(e){e.innerHTML="";var t=p.createElement("input");t.setAttribute("type","hidden"),e.appendChild(t).setAttribute("name","D"),e.querySelectorAll("[name=d]").length&&g.push("name"+I+"*[*^$|!~]?="),2!==e.querySelectorAll(":enabled").length&&g.push(":enabled",":disabled"),h.appendChild(e).disabled=!0,2!==e.querySelectorAll(":disabled").length&&g.push(":enabled",":disabled"),e.querySelectorAll("*,:x"),g.push(",.*:")}))),(n.matchesSelector=J.test(y=h.matches||h.webkitMatchesSelector||h.mozMatchesSelector||h.oMatchesSelector||h.msMatchesSelector))&&ce((function(e){n.disconnectedMatch=y.call(e,"*"),y.call(e,"[s!='']:x"),v.push("!=",H)})),g=g.length&&new RegExp(g.join("|")),v=v.length&&new RegExp(v.join("|")),t=J.test(h.compareDocumentPosition),b=t||J.test(h.contains)?function(e,t){var n=9===e.nodeType?e.documentElement:e,r=t&&t.parentNode;return e===r||!(!r||1!==r.nodeType||!(n.contains?n.contains(r):e.compareDocumentPosition&&16&e.compareDocumentPosition(r)))}:function(e,t){if(t)for(;t=t.parentNode;)if(t===e)return!0;return!1},P=t?function(e,t){if(e===t)return f=!0,0;var r=!e.compareDocumentPosition-!t.compareDocumentPosition;return r||(1&(r=(e.ownerDocument||e)==(t.ownerDocument||t)?e.compareDocumentPosition(t):1)||!n.sortDetached&&t.compareDocumentPosition(e)===r?e==p||e.ownerDocument==w&&b(w,e)?-1:t==p||t.ownerDocument==w&&b(w,t)?1:c?R(c,e)-R(c,t):0:4&r?-1:1)}:function(e,t){if(e===t)return f=!0,0;var n,r=0,i=e.parentNode,o=t.parentNode,a=[e],l=[t];if(!i||!o)return e==p?-1:t==p?1:i?-1:o?1:c?R(c,e)-R(c,t):0;if(i===o)return de(e,t);for(n=e;n=n.parentNode;)a.unshift(n);for(n=t;n=n.parentNode;)l.unshift(n);for(;a[r]===l[r];)r++;return r?de(a[r],l[r]):a[r]==w?-1:l[r]==w?1:0},p):p},le.matches=function(e,t){return le(e,null,null,t)},le.matchesSelector=function(e,t){if(d(e),n.matchesSelector&&m&&!N[t+" "]&&(!v||!v.test(t))&&(!g||!g.test(t)))try{var r=y.call(e,t);if(r||n.disconnectedMatch||e.document&&11!==e.document.nodeType)return r}catch(Se){N(t,!0)}return le(t,p,null,[e]).length>0},le.contains=function(e,t){return(e.ownerDocument||e)!=p&&d(e),b(e,t)},le.attr=function(e,t){(e.ownerDocument||e)!=p&&d(e);var i=r.attrHandle[t.toLowerCase()],o=i&&_.call(r.attrHandle,t.toLowerCase())?i(e,t,!m):void 0;return void 0!==o?o:n.attributes||!m?e.getAttribute(t):(o=e.getAttributeNode(t))&&o.specified?o.value:null},le.escape=function(e){return(e+"").replace(re,ie)},le.error=function(e){throw new Error("Syntax error, unrecognized expression: "+e)},le.uniqueSort=function(e){var t,r=[],i=0,o=0;if(f=!n.detectDuplicates,c=!n.sortStable&&e.slice(0),e.sort(P),f){for(;t=e[o++];)t===e[o]&&(i=r.push(o));for(;i--;)e.splice(r[i],1)}return c=null,e},i=le.getText=function(e){var t,n="",r=0,o=e.nodeType;if(o){if(1===o||9===o||11===o){if("string"===typeof e.textContent)return e.textContent;for(e=e.firstChild;e;e=e.nextSibling)n+=i(e)}else if(3===o||4===o)return e.nodeValue}else for(;t=e[r++];)n+=i(t);return n},(r=le.selectors={cacheLength:50,createPseudo:se,match:K,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(e){return e[1]=e[1].replace(te,ne),e[3]=(e[3]||e[4]||e[5]||"").replace(te,ne),"~="===e[2]&&(e[3]=" "+e[3]+" "),e.slice(0,4)},CHILD:function(e){return e[1]=e[1].toLowerCase(),"nth"===e[1].slice(0,3)?(e[3]||le.error(e[0]),e[4]=+(e[4]?e[5]+(e[6]||1):2*("even"===e[3]||"odd"===e[3])),e[5]=+(e[7]+e[8]||"odd"===e[3])):e[3]&&le.error(e[0]),e},PSEUDO:function(e){var t,n=!e[6]&&e[2];return K.CHILD.test(e[0])?null:(e[3]?e[2]=e[4]||e[5]||"":n&&V.test(n)&&(t=a(n,!0))&&(t=n.indexOf(")",n.length-t)-n.length)&&(e[0]=e[0].slice(0,t),e[2]=n.slice(0,t)),e.slice(0,3))}},filter:{TAG:function(e){var t=e.replace(te,ne).toLowerCase();return"*"===e?function(){return!0}:function(e){return e.nodeName&&e.nodeName.toLowerCase()===t}},CLASS:function(e){var t=E[e+" "];return t||(t=new RegExp("(^|"+I+")"+e+"("+I+"|$)"))&&E(e,(function(e){return t.test("string"===typeof e.className&&e.className||"undefined"!==typeof e.getAttribute&&e.getAttribute("class")||"")}))},ATTR:function(e,t,n){return function(r){var i=le.attr(r,e);return null==i?"!="===t:!t||(i+="","="===t?i===n:"!="===t?i!==n:"^="===t?n&&0===i.indexOf(n):"*="===t?n&&i.indexOf(n)>-1:"$="===t?n&&i.slice(-n.length)===n:"~="===t?(" "+i.replace(q," ")+" ").indexOf(n)>-1:"|="===t&&(i===n||i.slice(0,n.length+1)===n+"-"))}},CHILD:function(e,t,n,r,i){var o="nth"!==e.slice(0,3),a="last"!==e.slice(-4),l="of-type"===t;return 1===r&&0===i?function(e){return!!e.parentNode}:function(t,n,u){var s,c,f,d,p,h,m=o!==a?"nextSibling":"previousSibling",g=t.parentNode,v=l&&t.nodeName.toLowerCase(),y=!u&&!l,b=!1;if(g){if(o){for(;m;){for(d=t;d=d[m];)if(l?d.nodeName.toLowerCase()===v:1===d.nodeType)return!1;h=m="only"===e&&!h&&"nextSibling"}return!0}if(h=[a?g.firstChild:g.lastChild],a&&y){for(b=(p=(s=(c=(f=(d=g)[x]||(d[x]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]||[])[0]===k&&s[1])&&s[2],d=p&&g.childNodes[p];d=++p&&d&&d[m]||(b=p=0)||h.pop();)if(1===d.nodeType&&++b&&d===t){c[e]=[k,p,b];break}}else if(y&&(b=p=(s=(c=(f=(d=t)[x]||(d[x]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]||[])[0]===k&&s[1]),!1===b)for(;(d=++p&&d&&d[m]||(b=p=0)||h.pop())&&((l?d.nodeName.toLowerCase()!==v:1!==d.nodeType)||!++b||(y&&((c=(f=d[x]||(d[x]={}))[d.uniqueID]||(f[d.uniqueID]={}))[e]=[k,b]),d!==t)););return(b-=i)===r||b%r===0&&b/r>=0}}},PSEUDO:function(e,t){var n,i=r.pseudos[e]||r.setFilters[e.toLowerCase()]||le.error("unsupported pseudo: "+e);return i[x]?i(t):i.length>1?(n=[e,e,"",t],r.setFilters.hasOwnProperty(e.toLowerCase())?se((function(e,n){for(var r,o=i(e,t),a=o.length;a--;)e[r=R(e,o[a])]=!(n[r]=o[a])})):function(e){return i(e,0,n)}):i}},pseudos:{not:se((function(e){var t=[],n=[],r=l(e.replace(W,"$1"));return r[x]?se((function(e,t,n,i){for(var o,a=r(e,null,i,[]),l=e.length;l--;)(o=a[l])&&(e[l]=!(t[l]=o))})):function(e,i,o){return t[0]=e,r(t,null,o,n),t[0]=null,!n.pop()}})),has:se((function(e){return function(t){return le(e,t).length>0}})),contains:se((function(e){return e=e.replace(te,ne),function(t){return(t.textContent||i(t)).indexOf(e)>-1}})),lang:se((function(e){return Q.test(e||"")||le.error("unsupported lang: "+e),e=e.replace(te,ne).toLowerCase(),function(t){var n;do{if(n=m?t.lang:t.getAttribute("xml:lang")||t.getAttribute("lang"))return(n=n.toLowerCase())===e||0===n.indexOf(e+"-")}while((t=t.parentNode)&&1===t.nodeType);return!1}})),target:function(t){var n=e.location&&e.location.hash;return n&&n.slice(1)===t.id},root:function(e){return e===h},focus:function(e){return e===p.activeElement&&(!p.hasFocus||p.hasFocus())&&!!(e.type||e.href||~e.tabIndex)},enabled:me(!1),disabled:me(!0),checked:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&!!e.checked||"option"===t&&!!e.selected},selected:function(e){return e.parentNode&&e.parentNode.selectedIndex,!0===e.selected},empty:function(e){for(e=e.firstChild;e;e=e.nextSibling)if(e.nodeType<6)return!1;return!0},parent:function(e){return!r.pseudos.empty(e)},header:function(e){return G.test(e.nodeName)},input:function(e){return Y.test(e.nodeName)},button:function(e){var t=e.nodeName.toLowerCase();return"input"===t&&"button"===e.type||"button"===t},text:function(e){var t;return"input"===e.nodeName.toLowerCase()&&"text"===e.type&&(null==(t=e.getAttribute("type"))||"text"===t.toLowerCase())},first:ge((function(){return[0]})),last:ge((function(e,t){return[t-1]})),eq:ge((function(e,t,n){return[n<0?n+t:n]})),even:ge((function(e,t){for(var n=0;nt?t:n;--r>=0;)e.push(r);return e})),gt:ge((function(e,t,n){for(var r=n<0?n+t:n;++r1?function(t,n,r){for(var i=e.length;i--;)if(!e[i](t,n,r))return!1;return!0}:e[0]}function ke(e,t,n,r,i){for(var o,a=[],l=0,u=e.length,s=null!=t;l-1&&(o[s]=!(a[s]=f))}}else v=ke(v===a?v.splice(h,v.length):v),i?i(null,a,v,u):L.apply(a,v)}))}function Ee(e){for(var t,n,i,o=e.length,a=r.relative[e[0].type],l=a||r.relative[" "],u=a?1:0,c=xe((function(e){return e===t}),l,!0),f=xe((function(e){return R(t,e)>-1}),l,!0),d=[function(e,n,r){var i=!a&&(r||n!==s)||((t=n).nodeType?c(e,n,r):f(e,n,r));return t=null,i}];u1&&we(d),u>1&&be(e.slice(0,u-1).concat({value:" "===e[u-2].type?"*":""})).replace(W,"$1"),n,u0,i=e.length>0,o=function(o,a,l,u,c){var f,h,g,v=0,y="0",b=o&&[],x=[],w=s,T=o||i&&r.find.TAG("*",c),E=k+=null==w?1:Math.random()||.1,S=T.length;for(c&&(s=a==p||a||c);y!==S&&null!=(f=T[y]);y++){if(i&&f){for(h=0,a||f.ownerDocument==p||(d(f),l=!m);g=e[h++];)if(g(f,a||p,l)){u.push(f);break}c&&(k=E)}n&&((f=!g&&f)&&v--,o&&b.push(f))}if(v+=y,n&&y!==v){for(h=0;g=t[h++];)g(b,x,a,l);if(o){if(v>0)for(;y--;)b[y]||x[y]||(x[y]=O.call(u));x=ke(x)}L.apply(u,x),c&&!o&&x.length>0&&v+t.length>1&&le.uniqueSort(u)}return c&&(k=E,s=w),b};return n?se(o):o}(o,i))).selector=e}return l},u=le.select=function(e,t,n,i){var o,u,s,c,f,d="function"===typeof e&&e,p=!i&&a(e=d.selector||e);if(n=n||[],1===p.length){if((u=p[0]=p[0].slice(0)).length>2&&"ID"===(s=u[0]).type&&9===t.nodeType&&m&&r.relative[u[1].type]){if(!(t=(r.find.ID(s.matches[0].replace(te,ne),t)||[])[0]))return n;d&&(t=t.parentNode),e=e.slice(u.shift().value.length)}for(o=K.needsContext.test(e)?0:u.length;o--&&(s=u[o],!r.relative[c=s.type]);)if((f=r.find[c])&&(i=f(s.matches[0].replace(te,ne),ee.test(u[0].type)&&ve(t.parentNode)||t))){if(u.splice(o,1),!(e=i.length&&be(u)))return L.apply(n,i),n;break}}return(d||l(e,p))(i,t,!m,n,!t||ee.test(e)&&ve(t.parentNode)||t),n},n.sortStable=x.split("").sort(P).join("")===x,n.detectDuplicates=!!f,d(),n.sortDetached=ce((function(e){return 1&e.compareDocumentPosition(p.createElement("fieldset"))})),ce((function(e){return e.innerHTML="","#"===e.firstChild.getAttribute("href")}))||fe("type|href|height|width",(function(e,t,n){if(!n)return e.getAttribute(t,"type"===t.toLowerCase()?1:2)})),n.attributes&&ce((function(e){return e.innerHTML="",e.firstChild.setAttribute("value",""),""===e.firstChild.getAttribute("value")}))||fe("value",(function(e,t,n){if(!n&&"input"===e.nodeName.toLowerCase())return e.defaultValue})),ce((function(e){return null==e.getAttribute("disabled")}))||fe(M,(function(e,t,n){var r;if(!n)return!0===e[t]?t.toLowerCase():(r=e.getAttributeNode(t))&&r.specified?r.value:null})),le}(n);T.find=S,(T.expr=S.selectors)[":"]=T.expr.pseudos,T.uniqueSort=T.unique=S.uniqueSort,T.text=S.getText,T.isXMLDoc=S.isXML,T.contains=S.contains,T.escapeSelector=S.escape;var C=function(e,t,n){for(var r=[],i=void 0!==n;(e=e[t])&&9!==e.nodeType;)if(1===e.nodeType){if(i&&T(e).is(n))break;r.push(e)}return r},N=function(e,t){for(var n=[];e;e=e.nextSibling)1===e.nodeType&&e!==t&&n.push(e);return n},P=T.expr.match.needsContext;function _(e,t){return e.nodeName&&e.nodeName.toLowerCase()===t.toLowerCase()}var D=/^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;function O(e,t,n){return v(t)?T.grep(e,(function(e,r){return!!t.call(e,r,e)!==n})):t.nodeType?T.grep(e,(function(e){return e===t!==n})):"string"!==typeof t?T.grep(e,(function(e){return c.call(t,e)>-1!==n})):T.filter(t,e,n)}T.filter=function(e,t,n){var r=t[0];return n&&(e=":not("+e+")"),1===t.length&&1===r.nodeType?T.find.matchesSelector(r,e)?[r]:[]:T.find.matches(e,T.grep(t,(function(e){return 1===e.nodeType})))},T.fn.extend({find:function(e){var t,n,r=this.length,i=this;if("string"!==typeof e)return this.pushStack(T(e).filter((function(){for(t=0;t1?T.uniqueSort(n):n},filter:function(e){return this.pushStack(O(this,e||[],!1))},not:function(e){return this.pushStack(O(this,e||[],!0))},is:function(e){return!!O(this,"string"===typeof e&&P.test(e)?T(e):e||[],!1).length}});var A,L=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/;(T.fn.init=function(e,t,n){var r,i;if(!e)return this;if(n=n||A,"string"===typeof e){if(!(r="<"===e[0]&&">"===e[e.length-1]&&e.length>=3?[null,e,null]:L.exec(e))||!r[1]&&t)return!t||t.jquery?(t||n).find(e):this.constructor(t).find(e);if(r[1]){if(t=t instanceof T?t[0]:t,T.merge(this,T.parseHTML(r[1],t&&t.nodeType?t.ownerDocument||t:b,!0)),D.test(r[1])&&T.isPlainObject(t))for(r in t)v(this[r])?this[r](t[r]):this.attr(r,t[r]);return this}return(i=b.getElementById(r[2]))&&(this[0]=i,this.length=1),this}return e.nodeType?(this[0]=e,this.length=1,this):v(e)?void 0!==n.ready?n.ready(e):e(T):T.makeArray(e,this)}).prototype=T.fn,A=T(b);var j=/^(?:parents|prev(?:Until|All))/,R={children:!0,contents:!0,next:!0,prev:!0};function M(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e}T.fn.extend({has:function(e){var t=T(e,this),n=t.length;return this.filter((function(){for(var e=0;e-1:1===n.nodeType&&T.find.matchesSelector(n,e))){o.push(n);break}return this.pushStack(o.length>1?T.uniqueSort(o):o)},index:function(e){return e?"string"===typeof e?c.call(T(e),this[0]):c.call(this,e.jquery?e[0]:e):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(e,t){return this.pushStack(T.uniqueSort(T.merge(this.get(),T(e,t))))},addBack:function(e){return this.add(null==e?this.prevObject:this.prevObject.filter(e))}}),T.each({parent:function(e){var t=e.parentNode;return t&&11!==t.nodeType?t:null},parents:function(e){return C(e,"parentNode")},parentsUntil:function(e,t,n){return C(e,"parentNode",n)},next:function(e){return M(e,"nextSibling")},prev:function(e){return M(e,"previousSibling")},nextAll:function(e){return C(e,"nextSibling")},prevAll:function(e){return C(e,"previousSibling")},nextUntil:function(e,t,n){return C(e,"nextSibling",n)},prevUntil:function(e,t,n){return C(e,"previousSibling",n)},siblings:function(e){return N((e.parentNode||{}).firstChild,e)},children:function(e){return N(e.firstChild)},contents:function(e){return null!=e.contentDocument&&a(e.contentDocument)?e.contentDocument:(_(e,"template")&&(e=e.content||e),T.merge([],e.childNodes))}},(function(e,t){T.fn[e]=function(n,r){var i=T.map(this,t,n);return"Until"!==e.slice(-5)&&(r=n),r&&"string"===typeof r&&(i=T.filter(r,i)),this.length>1&&(R[e]||T.uniqueSort(i),j.test(e)&&i.reverse()),this.pushStack(i)}}));var I=/[^\x20\t\r\n\f]+/g;function z(e){return e}function F(e){throw e}function H(e,t,n,r){var i;try{e&&v(i=e.promise)?i.call(e).done(t).fail(n):e&&v(i=e.then)?i.call(e,t,n):t.apply(void 0,[e].slice(r))}catch(e){n.apply(void 0,[e])}}T.Callbacks=function(e){e="string"===typeof e?function(e){var t={};return T.each(e.match(I)||[],(function(e,n){t[n]=!0})),t}(e):T.extend({},e);var t,n,r,i,o=[],a=[],l=-1,u=function(){for(i=i||e.once,r=t=!0;a.length;l=-1)for(n=a.shift();++l-1;)o.splice(n,1),n<=l&&l--})),this},has:function(e){return e?T.inArray(e,o)>-1:o.length>0},empty:function(){return o&&(o=[]),this},disable:function(){return i=a=[],o=n="",this},disabled:function(){return!o},lock:function(){return i=a=[],n||t||(o=n=""),this},locked:function(){return!!i},fireWith:function(e,n){return i||(n=[e,(n=n||[]).slice?n.slice():n],a.push(n),t||u()),this},fire:function(){return s.fireWith(this,arguments),this},fired:function(){return!!r}};return s},T.extend({Deferred:function(e){var t=[["notify","progress",T.Callbacks("memory"),T.Callbacks("memory"),2],["resolve","done",T.Callbacks("once memory"),T.Callbacks("once memory"),0,"resolved"],["reject","fail",T.Callbacks("once memory"),T.Callbacks("once memory"),1,"rejected"]],r="pending",i={state:function(){return r},always:function(){return o.done(arguments).fail(arguments),this},catch:function(e){return i.then(null,e)},pipe:function(){var e=arguments;return T.Deferred((function(n){T.each(t,(function(t,r){var i=v(e[r[4]])&&e[r[4]];o[r[1]]((function(){var e=i&&i.apply(this,arguments);e&&v(e.promise)?e.promise().progress(n.notify).done(n.resolve).fail(n.reject):n[r[0]+"With"](this,i?[e]:arguments)}))})),e=null})).promise()},then:function(e,r,i){var o=0;function a(e,t,r,i){return function(){var l=this,u=arguments,s=function(){var n,s;if(!(e=o&&(r!==F&&(l=void 0,u=[n]),t.rejectWith(l,u))}};e?c():(T.Deferred.getStackHook&&(c.stackTrace=T.Deferred.getStackHook()),n.setTimeout(c))}}return T.Deferred((function(n){t[0][3].add(a(0,n,v(i)?i:z,n.notifyWith)),t[1][3].add(a(0,n,v(e)?e:z)),t[2][3].add(a(0,n,v(r)?r:F))})).promise()},promise:function(e){return null!=e?T.extend(e,i):i}},o={};return T.each(t,(function(e,n){var a=n[2],l=n[5];i[n[1]]=a.add,l&&a.add((function(){r=l}),t[3-e][2].disable,t[3-e][3].disable,t[0][2].lock,t[0][3].lock),a.add(n[3].fire),o[n[0]]=function(){return o[n[0]+"With"](this===o?void 0:this,arguments),this},o[n[0]+"With"]=a.fireWith})),i.promise(o),e&&e.call(o,o),o},when:function(e){var t=arguments.length,n=t,r=Array(n),i=l.call(arguments),o=T.Deferred(),a=function(e){return function(n){r[e]=this,i[e]=arguments.length>1?l.call(arguments):n,--t||o.resolveWith(r,i)}};if(t<=1&&(H(e,o.done(a(n)).resolve,o.reject,!t),"pending"===o.state()||v(i[n]&&i[n].then)))return o.then();for(;n--;)H(i[n],a(n),o.reject);return o.promise()}});var q=/^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;T.Deferred.exceptionHook=function(e,t){n.console&&n.console.warn&&e&&q.test(e.name)&&n.console.warn("jQuery.Deferred exception: "+e.message,e.stack,t)},T.readyException=function(e){n.setTimeout((function(){throw e}))};var W=T.Deferred();function U(){b.removeEventListener("DOMContentLoaded",U),n.removeEventListener("load",U),T.ready()}T.fn.ready=function(e){return W.then(e).catch((function(e){T.readyException(e)})),this},T.extend({isReady:!1,readyWait:1,ready:function(e){(!0===e?--T.readyWait:T.isReady)||(T.isReady=!0,!0!==e&&--T.readyWait>0||W.resolveWith(b,[T]))}}),T.ready.then=W.then,"complete"===b.readyState||"loading"!==b.readyState&&!b.documentElement.doScroll?n.setTimeout(T.ready):(b.addEventListener("DOMContentLoaded",U),n.addEventListener("load",U));var $=function e(t,n,r,i,o,a,l){var u=0,s=t.length,c=null==r;if("object"===k(r))for(u in o=!0,r)e(t,n,u,r[u],!0,a,l);else if(void 0!==i&&(o=!0,v(i)||(l=!0),c&&(l?(n.call(t,i),n=null):(c=n,n=function(e,t,n){return c.call(T(e),n)})),n))for(;u1,null,!0)},removeData:function(e){return this.each((function(){J.remove(this,e)}))}}),T.extend({queue:function(e,t,n){var r;if(e)return t=(t||"fx")+"queue",r=G.get(e,t),n&&(!r||Array.isArray(n)?r=G.access(e,t,T.makeArray(n)):r.push(n)),r||[]},dequeue:function(e,t){var n=T.queue(e,t=t||"fx"),r=n.length,i=n.shift(),o=T._queueHooks(e,t);"inprogress"===i&&(i=n.shift(),r--),i&&("fx"===t&&n.unshift("inprogress"),delete o.stop,i.call(e,(function(){T.dequeue(e,t)}),o)),!r&&o&&o.empty.fire()},_queueHooks:function(e,t){var n=t+"queueHooks";return G.get(e,n)||G.access(e,n,{empty:T.Callbacks("once memory").add((function(){G.remove(e,[t+"queue",n])}))})}}),T.fn.extend({queue:function(e,t){var n=2;return"string"!==typeof e&&(t=e,e="fx",n--),arguments.length\x20\t\r\n\f]*)/i,me=/^$|^module$|\/(?:java|ecma)script/i;!function(){var e=b.createDocumentFragment().appendChild(b.createElement("div")),t=b.createElement("input");t.setAttribute("type","radio"),t.setAttribute("checked","checked"),t.setAttribute("name","t"),e.appendChild(t),g.checkClone=e.cloneNode(!0).cloneNode(!0).lastChild.checked,e.innerHTML="",g.noCloneChecked=!!e.cloneNode(!0).lastChild.defaultValue,e.innerHTML="",g.option=!!e.lastChild}();var ge={thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};function ve(e,t){var n;return n="undefined"!==typeof e.getElementsByTagName?e.getElementsByTagName(t||"*"):"undefined"!==typeof e.querySelectorAll?e.querySelectorAll(t||"*"):[],void 0===t||t&&_(e,t)?T.merge([e],n):n}function ye(e,t){for(var n=0,r=e.length;n",""]);var be=/<|&#?\w+;/;function xe(e,t,n,r,i){for(var o,a,l,u,s,c,f=t.createDocumentFragment(),d=[],p=0,h=e.length;p-1)i&&i.push(o);else if(s=ae(o),a=ve(f.appendChild(o),"script"),s&&ye(a),n)for(c=0;o=a[c++];)me.test(o.type||"")&&n.push(o);return f}var we=/^key/,ke=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Te=/^([^.]*)(?:\.(.+)|)/;function Ee(){return!0}function Se(){return!1}function Ce(e,t){return e===function(){try{return b.activeElement}catch(e){}}()===("focus"===t)}function Ne(e,t,n,r,i,o){var a,l;if("object"===typeof t){for(l in"string"!==typeof n&&(r=r||n,n=void 0),t)Ne(e,l,n,r,t[l],o);return e}if(null==r&&null==i?(i=n,r=n=void 0):null==i&&("string"===typeof n?(i=r,r=void 0):(i=r,r=n,n=void 0)),!1===i)i=Se;else if(!i)return e;return 1===o&&(a=i,(i=function(e){return T().off(e),a.apply(this,arguments)}).guid=a.guid||(a.guid=T.guid++)),e.each((function(){T.event.add(this,t,i,r,n)}))}function Pe(e,t,n){n?(G.set(e,t,!1),T.event.add(e,t,{namespace:!1,handler:function(e){var r,i,o=G.get(this,t);if(1&e.isTrigger&&this[t]){if(o.length)(T.event.special[t]||{}).delegateType&&e.stopPropagation();else if(o=l.call(arguments),G.set(this,t,o),r=n(this,t),this[t](),o!==(i=G.get(this,t))||r?G.set(this,t,!1):i={},o!==i)return e.stopImmediatePropagation(),e.preventDefault(),i.value}else o.length&&(G.set(this,t,{value:T.event.trigger(T.extend(o[0],T.Event.prototype),o.slice(1),this)}),e.stopImmediatePropagation())}})):void 0===G.get(e,t)&&T.event.add(e,t,Ee)}T.event={global:{},add:function(e,t,n,r,i){var o,a,l,u,s,c,f,d,p,h,m,g=G.get(e);if(X(e))for(n.handler&&(n=(o=n).handler,i=o.selector),i&&T.find.matchesSelector(oe,i),n.guid||(n.guid=T.guid++),(u=g.events)||(u=g.events=Object.create(null)),(a=g.handle)||(a=g.handle=function(t){return T.event.triggered!==t.type?T.event.dispatch.apply(e,arguments):void 0}),s=(t=(t||"").match(I)||[""]).length;s--;)p=m=(l=Te.exec(t[s])||[])[1],h=(l[2]||"").split(".").sort(),p&&(f=T.event.special[p]||{},p=(i?f.delegateType:f.bindType)||p,f=T.event.special[p]||{},c=T.extend({type:p,origType:m,data:r,handler:n,guid:n.guid,selector:i,needsContext:i&&T.expr.match.needsContext.test(i),namespace:h.join(".")},o),(d=u[p])||((d=u[p]=[]).delegateCount=0,f.setup&&!1!==f.setup.call(e,r,h,a)||e.addEventListener&&e.addEventListener(p,a)),f.add&&(f.add.call(e,c),c.handler.guid||(c.handler.guid=n.guid)),i?d.splice(d.delegateCount++,0,c):d.push(c),T.event.global[p]=!0)},remove:function(e,t,n,r,i){var o,a,l,u,s,c,f,d,p,h,m,g=G.hasData(e)&&G.get(e);if(g&&(u=g.events)){for(s=(t=(t||"").match(I)||[""]).length;s--;)if(p=m=(l=Te.exec(t[s])||[])[1],h=(l[2]||"").split(".").sort(),p){for(f=T.event.special[p]||{},d=u[p=(r?f.delegateType:f.bindType)||p]||[],l=l[2]&&new RegExp("(^|\\.)"+h.join("\\.(?:.*\\.|)")+"(\\.|$)"),a=o=d.length;o--;)c=d[o],!i&&m!==c.origType||n&&n.guid!==c.guid||l&&!l.test(c.namespace)||r&&r!==c.selector&&("**"!==r||!c.selector)||(d.splice(o,1),c.selector&&d.delegateCount--,f.remove&&f.remove.call(e,c));a&&!d.length&&(f.teardown&&!1!==f.teardown.call(e,h,g.handle)||T.removeEvent(e,p,g.handle),delete u[p])}else for(p in u)T.event.remove(e,p+t[s],n,r,!0);T.isEmptyObject(u)&&G.remove(e,"handle events")}},dispatch:function(e){var t,n,r,i,o,a,l=new Array(arguments.length),u=T.event.fix(e),s=(G.get(this,"events")||Object.create(null))[u.type]||[],c=T.event.special[u.type]||{};for(l[0]=u,t=1;t=1))for(;s!==this;s=s.parentNode||this)if(1===s.nodeType&&("click"!==e.type||!0!==s.disabled)){for(o=[],a={},n=0;n-1:T.find(i,this,null,[s]).length),a[i]&&o.push(r);o.length&&l.push({elem:s,handlers:o})}return s=this,u\s*$/g;function Ae(e,t){return _(e,"table")&&_(11!==t.nodeType?t:t.firstChild,"tr")&&T(e).children("tbody")[0]||e}function Le(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e}function je(e){return"true/"===(e.type||"").slice(0,5)?e.type=e.type.slice(5):e.removeAttribute("type"),e}function Re(e,t){var n,r,i,o,a,l;if(1===t.nodeType){if(G.hasData(e)&&(l=G.get(e).events))for(i in G.remove(t,"handle events"),l)for(n=0,r=l[i].length;n1&&"string"===typeof h&&!g.checkClone&&De.test(h))return e.each((function(i){var o=e.eq(i);m&&(t[0]=h.call(this,i,o.html())),Ie(o,t,n,r)}));if(d&&(o=(i=xe(t,e[0].ownerDocument,!1,e,r)).firstChild,1===i.childNodes.length&&(i=o),o||r)){for(l=(a=T.map(ve(i,"script"),Le)).length;f0&&ye(a,!u&&ve(e,"script")),l},cleanData:function(e){for(var t,n,r,i=T.event.special,o=0;void 0!==(n=e[o]);o++)if(X(n)){if(t=n[G.expando]){if(t.events)for(r in t.events)i[r]?T.event.remove(n,r):T.removeEvent(n,r,t.handle);n[G.expando]=void 0}n[J.expando]&&(n[J.expando]=void 0)}}}),T.fn.extend({detach:function(e){return ze(this,e,!0)},remove:function(e){return ze(this,e)},text:function(e){return $(this,(function(e){return void 0===e?T.text(this):this.empty().each((function(){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||(this.textContent=e)}))}),null,e,arguments.length)},append:function(){return Ie(this,arguments,(function(e){1!==this.nodeType&&11!==this.nodeType&&9!==this.nodeType||Ae(this,e).appendChild(e)}))},prepend:function(){return Ie(this,arguments,(function(e){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var t=Ae(this,e);t.insertBefore(e,t.firstChild)}}))},before:function(){return Ie(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this)}))},after:function(){return Ie(this,arguments,(function(e){this.parentNode&&this.parentNode.insertBefore(e,this.nextSibling)}))},empty:function(){for(var e,t=0;null!=(e=this[t]);t++)1===e.nodeType&&(T.cleanData(ve(e,!1)),e.textContent="");return this},clone:function(e,t){return e=null!=e&&e,t=null==t?e:t,this.map((function(){return T.clone(this,e,t)}))},html:function(e){return $(this,(function(e){var t=this[0]||{},n=0,r=this.length;if(void 0===e&&1===t.nodeType)return t.innerHTML;if("string"===typeof e&&!_e.test(e)&&!ge[(he.exec(e)||["",""])[1].toLowerCase()]){e=T.htmlPrefilter(e);try{for(;n3,oe.removeChild(e)),l}}))}();var Be=["Webkit","Moz","ms"],Ve=b.createElement("div").style,Qe={};function Ke(e){var t=T.cssProps[e]||Qe[e];return t||(e in Ve?e:Qe[e]=function(e){for(var t=e[0].toUpperCase()+e.slice(1),n=Be.length;n--;)if((e=Be[n]+t)in Ve)return e}(e)||e)}var Xe=/^(none|table(?!-c[ea]).+)/,Ye=/^--/,Ge={position:"absolute",visibility:"hidden",display:"block"},Je={letterSpacing:"0",fontWeight:"400"};function Ze(e,t,n){var r=re.exec(t);return r?Math.max(0,r[2]-(n||0))+(r[3]||"px"):t}function et(e,t,n,r,i,o){var a="width"===t?1:0,l=0,u=0;if(n===(r?"border":"content"))return 0;for(;a<4;a+=2)"margin"===n&&(u+=T.css(e,n+ie[a],!0,i)),r?("content"===n&&(u-=T.css(e,"padding"+ie[a],!0,i)),"margin"!==n&&(u-=T.css(e,"border"+ie[a]+"Width",!0,i))):(u+=T.css(e,"padding"+ie[a],!0,i),"padding"!==n?u+=T.css(e,"border"+ie[a]+"Width",!0,i):l+=T.css(e,"border"+ie[a]+"Width",!0,i));return!r&&o>=0&&(u+=Math.max(0,Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-o-u-l-.5))||0),u}function tt(e,t,n){var r=He(e),i=(!g.boxSizingReliable()||n)&&"border-box"===T.css(e,"boxSizing",!1,r),o=i,a=Ue(e,t,r),l="offset"+t[0].toUpperCase()+t.slice(1);if(Fe.test(a)){if(!n)return a;a="auto"}return(!g.boxSizingReliable()&&i||!g.reliableTrDimensions()&&_(e,"tr")||"auto"===a||!parseFloat(a)&&"inline"===T.css(e,"display",!1,r))&&e.getClientRects().length&&(i="border-box"===T.css(e,"boxSizing",!1,r),(o=l in e)&&(a=e[l])),(a=parseFloat(a)||0)+et(e,t,n||(i?"border":"content"),o,r,a)+"px"}function nt(e,t,n,r,i){return new nt.prototype.init(e,t,n,r,i)}T.extend({cssHooks:{opacity:{get:function(e,t){if(t){var n=Ue(e,"opacity");return""===n?"1":n}}}},cssNumber:{animationIterationCount:!0,columnCount:!0,fillOpacity:!0,flexGrow:!0,flexShrink:!0,fontWeight:!0,gridArea:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnStart:!0,gridRow:!0,gridRowEnd:!0,gridRowStart:!0,lineHeight:!0,opacity:!0,order:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{},style:function(e,t,n,r){if(e&&3!==e.nodeType&&8!==e.nodeType&&e.style){var i,o,a,l=K(t),u=Ye.test(t),s=e.style;if(u||(t=Ke(l)),a=T.cssHooks[t]||T.cssHooks[l],void 0===n)return a&&"get"in a&&void 0!==(i=a.get(e,!1,r))?i:s[t];"string"===(o=typeof n)&&(i=re.exec(n))&&i[1]&&(n=se(e,t,i),o="number"),null!=n&&n===n&&("number"!==o||u||(n+=i&&i[3]||(T.cssNumber[l]?"":"px")),g.clearCloneStyle||""!==n||0!==t.indexOf("background")||(s[t]="inherit"),a&&"set"in a&&void 0===(n=a.set(e,n,r))||(u?s.setProperty(t,n):s[t]=n))}},css:function(e,t,n,r){var i,o,a,l=K(t);return Ye.test(t)||(t=Ke(l)),(a=T.cssHooks[t]||T.cssHooks[l])&&"get"in a&&(i=a.get(e,!0,n)),void 0===i&&(i=Ue(e,t,r)),"normal"===i&&t in Je&&(i=Je[t]),""===n||n?(o=parseFloat(i),!0===n||isFinite(o)?o||0:i):i}}),T.each(["height","width"],(function(e,t){T.cssHooks[t]={get:function(e,n,r){if(n)return!Xe.test(T.css(e,"display"))||e.getClientRects().length&&e.getBoundingClientRect().width?tt(e,t,r):qe(e,Ge,(function(){return tt(e,t,r)}))},set:function(e,n,r){var i,o=He(e),a=!g.scrollboxSize()&&"absolute"===o.position,l=(a||r)&&"border-box"===T.css(e,"boxSizing",!1,o),u=r?et(e,t,r,l,o):0;return l&&a&&(u-=Math.ceil(e["offset"+t[0].toUpperCase()+t.slice(1)]-parseFloat(o[t])-et(e,t,"border",!1,o)-.5)),u&&(i=re.exec(n))&&"px"!==(i[3]||"px")&&(e.style[t]=n,n=T.css(e,t)),Ze(0,n,u)}}})),T.cssHooks.marginLeft=$e(g.reliableMarginLeft,(function(e,t){if(t)return(parseFloat(Ue(e,"marginLeft"))||e.getBoundingClientRect().left-qe(e,{marginLeft:0},(function(){return e.getBoundingClientRect().left})))+"px"})),T.each({margin:"",padding:"",border:"Width"},(function(e,t){T.cssHooks[e+t]={expand:function(n){for(var r=0,i={},o="string"===typeof n?n.split(" "):[n];r<4;r++)i[e+ie[r]+t]=o[r]||o[r-2]||o[0];return i}},"margin"!==e&&(T.cssHooks[e+t].set=Ze)})),T.fn.extend({css:function(e,t){return $(this,(function(e,t,n){var r,i,o={},a=0;if(Array.isArray(t)){for(r=He(e),i=t.length;a1)}}),T.Tween=nt,nt.prototype={constructor:nt,init:function(e,t,n,r,i,o){this.elem=e,this.prop=n,this.easing=i||T.easing._default,this.options=t,this.start=this.now=this.cur(),this.end=r,this.unit=o||(T.cssNumber[n]?"":"px")},cur:function(){var e=nt.propHooks[this.prop];return e&&e.get?e.get(this):nt.propHooks._default.get(this)},run:function(e){var t,n=nt.propHooks[this.prop];return this.options.duration?this.pos=t=T.easing[this.easing](e,this.options.duration*e,0,1,this.options.duration):this.pos=t=e,this.now=(this.end-this.start)*t+this.start,this.options.step&&this.options.step.call(this.elem,this.now,this),n&&n.set?n.set(this):nt.propHooks._default.set(this),this}},nt.prototype.init.prototype=nt.prototype,nt.propHooks={_default:{get:function(e){var t;return 1!==e.elem.nodeType||null!=e.elem[e.prop]&&null==e.elem.style[e.prop]?e.elem[e.prop]:(t=T.css(e.elem,e.prop,""))&&"auto"!==t?t:0},set:function(e){T.fx.step[e.prop]?T.fx.step[e.prop](e):1!==e.elem.nodeType||!T.cssHooks[e.prop]&&null==e.elem.style[Ke(e.prop)]?e.elem[e.prop]=e.now:T.style(e.elem,e.prop,e.now+e.unit)}}},nt.propHooks.scrollTop=nt.propHooks.scrollLeft={set:function(e){e.elem.nodeType&&e.elem.parentNode&&(e.elem[e.prop]=e.now)}},T.easing={linear:function(e){return e},swing:function(e){return.5-Math.cos(e*Math.PI)/2},_default:"swing"},(T.fx=nt.prototype.init).step={};var rt,it,ot=/^(?:toggle|show|hide)$/,at=/queueHooks$/;function lt(){it&&(!1===b.hidden&&n.requestAnimationFrame?n.requestAnimationFrame(lt):n.setTimeout(lt,T.fx.interval),T.fx.tick())}function ut(){return n.setTimeout((function(){rt=void 0})),rt=Date.now()}function st(e,t){var n,r=0,i={height:e};for(t=t?1:0;r<4;r+=2-t)i["margin"+(n=ie[r])]=i["padding"+n]=e;return t&&(i.opacity=i.width=e),i}function ct(e,t,n){for(var r,i=(ft.tweeners[t]||[]).concat(ft.tweeners["*"]),o=0,a=i.length;o1)},removeAttr:function(e){return this.each((function(){T.removeAttr(this,e)}))}}),T.extend({attr:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return"undefined"===typeof e.getAttribute?T.prop(e,t,n):(1===o&&T.isXMLDoc(e)||(i=T.attrHooks[t.toLowerCase()]||(T.expr.match.bool.test(t)?dt:void 0)),void 0!==n?null===n?void T.removeAttr(e,t):i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:(e.setAttribute(t,n+""),n):i&&"get"in i&&null!==(r=i.get(e,t))?r:null==(r=T.find.attr(e,t))?void 0:r)},attrHooks:{type:{set:function(e,t){if(!g.radioValue&&"radio"===t&&_(e,"input")){var n=e.value;return e.setAttribute("type",t),n&&(e.value=n),t}}}},removeAttr:function(e,t){var n,r=0,i=t&&t.match(I);if(i&&1===e.nodeType)for(;n=i[r++];)e.removeAttribute(n)}}),dt={set:function(e,t,n){return!1===t?T.removeAttr(e,n):e.setAttribute(n,n),n}},T.each(T.expr.match.bool.source.match(/\w+/g),(function(e,t){var n=pt[t]||T.find.attr;pt[t]=function(e,t,r){var i,o,a=t.toLowerCase();return r||(o=pt[a],pt[a]=i,i=null!=n(e,t,r)?a:null,pt[a]=o),i}}));var ht=/^(?:input|select|textarea|button)$/i,mt=/^(?:a|area)$/i;function gt(e){return(e.match(I)||[]).join(" ")}function vt(e){return e.getAttribute&&e.getAttribute("class")||""}function yt(e){return Array.isArray(e)?e:"string"===typeof e&&e.match(I)||[]}T.fn.extend({prop:function(e,t){return $(this,T.prop,e,t,arguments.length>1)},removeProp:function(e){return this.each((function(){delete this[T.propFix[e]||e]}))}}),T.extend({prop:function(e,t,n){var r,i,o=e.nodeType;if(3!==o&&8!==o&&2!==o)return 1===o&&T.isXMLDoc(e)||(t=T.propFix[t]||t,i=T.propHooks[t]),void 0!==n?i&&"set"in i&&void 0!==(r=i.set(e,n,t))?r:e[t]=n:i&&"get"in i&&null!==(r=i.get(e,t))?r:e[t]},propHooks:{tabIndex:{get:function(e){var t=T.find.attr(e,"tabindex");return t?parseInt(t,10):ht.test(e.nodeName)||mt.test(e.nodeName)&&e.href?0:-1}}},propFix:{for:"htmlFor",class:"className"}}),g.optSelected||(T.propHooks.selected={get:function(e){var t=e.parentNode;return t&&t.parentNode&&t.parentNode.selectedIndex,null},set:function(e){var t=e.parentNode;t&&(t.selectedIndex,t.parentNode&&t.parentNode.selectedIndex)}}),T.each(["tabIndex","readOnly","maxLength","cellSpacing","cellPadding","rowSpan","colSpan","useMap","frameBorder","contentEditable"],(function(){T.propFix[this.toLowerCase()]=this})),T.fn.extend({addClass:function(e){var t,n,r,i,o,a,l,u=0;if(v(e))return this.each((function(t){T(this).addClass(e.call(this,t,vt(this)))}));if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&" "+gt(i)+" "){for(a=0;o=t[a++];)r.indexOf(" "+o+" ")<0&&(r+=o+" ");i!==(l=gt(r))&&n.setAttribute("class",l)}return this},removeClass:function(e){var t,n,r,i,o,a,l,u=0;if(v(e))return this.each((function(t){T(this).removeClass(e.call(this,t,vt(this)))}));if(!arguments.length)return this.attr("class","");if((t=yt(e)).length)for(;n=this[u++];)if(i=vt(n),r=1===n.nodeType&&" "+gt(i)+" "){for(a=0;o=t[a++];)for(;r.indexOf(" "+o+" ")>-1;)r=r.replace(" "+o+" "," ");i!==(l=gt(r))&&n.setAttribute("class",l)}return this},toggleClass:function(e,t){var n=typeof e,r="string"===n||Array.isArray(e);return"boolean"===typeof t&&r?t?this.addClass(e):this.removeClass(e):v(e)?this.each((function(n){T(this).toggleClass(e.call(this,n,vt(this),t),t)})):this.each((function(){var t,i,o,a;if(r)for(i=0,o=T(this),a=yt(e);t=a[i++];)o.hasClass(t)?o.removeClass(t):o.addClass(t);else void 0!==e&&"boolean"!==n||((t=vt(this))&&G.set(this,"__className__",t),this.setAttribute&&this.setAttribute("class",t||!1===e?"":G.get(this,"__className__")||""))}))},hasClass:function(e){var t,n,r=0;for(t=" "+e+" ";n=this[r++];)if(1===n.nodeType&&(" "+gt(vt(n))+" ").indexOf(t)>-1)return!0;return!1}});var bt=/\r/g;T.fn.extend({val:function(e){var t,n,r,i=this[0];return arguments.length?(r=v(e),this.each((function(n){var i;1===this.nodeType&&(null==(i=r?e.call(this,n,T(this).val()):e)?i="":"number"===typeof i?i+="":Array.isArray(i)&&(i=T.map(i,(function(e){return null==e?"":e+""}))),(t=T.valHooks[this.type]||T.valHooks[this.nodeName.toLowerCase()])&&"set"in t&&void 0!==t.set(this,i,"value")||(this.value=i))}))):i?(t=T.valHooks[i.type]||T.valHooks[i.nodeName.toLowerCase()])&&"get"in t&&void 0!==(n=t.get(i,"value"))?n:"string"===typeof(n=i.value)?n.replace(bt,""):null==n?"":n:void 0}}),T.extend({valHooks:{option:{get:function(e){var t=T.find.attr(e,"value");return null!=t?t:gt(T.text(e))}},select:{get:function(e){var t,n,r,i=e.options,o=e.selectedIndex,a="select-one"===e.type,l=a?null:[],u=a?o+1:i.length;for(r=o<0?u:a?o:0;r-1)&&(n=!0);return n||(e.selectedIndex=-1),o}}}}),T.each(["radio","checkbox"],(function(){T.valHooks[this]={set:function(e,t){if(Array.isArray(t))return e.checked=T.inArray(T(e).val(),t)>-1}},g.checkOn||(T.valHooks[this].get=function(e){return null===e.getAttribute("value")?"on":e.value})})),g.focusin="onfocusin"in n;var xt=/^(?:focusinfocus|focusoutblur)$/,wt=function(e){e.stopPropagation()};T.extend(T.event,{trigger:function(e,t,r,i){var o,a,l,u,s,c,f,d,h=[r||b],m=p.call(e,"type")?e.type:e,g=p.call(e,"namespace")?e.namespace.split("."):[];if(a=d=l=r=r||b,3!==r.nodeType&&8!==r.nodeType&&!xt.test(m+T.event.triggered)&&(m.indexOf(".")>-1&&(g=m.split("."),m=g.shift(),g.sort()),s=m.indexOf(":")<0&&"on"+m,(e=e[T.expando]?e:new T.Event(m,"object"===typeof e&&e)).isTrigger=i?2:3,e.namespace=g.join("."),e.rnamespace=e.namespace?new RegExp("(^|\\.)"+g.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,e.result=void 0,e.target||(e.target=r),t=null==t?[e]:T.makeArray(t,[e]),f=T.event.special[m]||{},i||!f.trigger||!1!==f.trigger.apply(r,t))){if(!i&&!f.noBubble&&!y(r)){for(u=f.delegateType||m,xt.test(u+m)||(a=a.parentNode);a;a=a.parentNode)h.push(a),l=a;l===(r.ownerDocument||b)&&h.push(l.defaultView||l.parentWindow||n)}for(o=0;(a=h[o++])&&!e.isPropagationStopped();)d=a,e.type=o>1?u:f.bindType||m,(c=(G.get(a,"events")||Object.create(null))[e.type]&&G.get(a,"handle"))&&c.apply(a,t),(c=s&&a[s])&&c.apply&&X(a)&&(e.result=c.apply(a,t),!1===e.result&&e.preventDefault());return e.type=m,i||e.isDefaultPrevented()||f._default&&!1!==f._default.apply(h.pop(),t)||!X(r)||s&&v(r[m])&&!y(r)&&((l=r[s])&&(r[s]=null),T.event.triggered=m,e.isPropagationStopped()&&d.addEventListener(m,wt),r[m](),e.isPropagationStopped()&&d.removeEventListener(m,wt),T.event.triggered=void 0,l&&(r[s]=l)),e.result}},simulate:function(e,t,n){var r=T.extend(new T.Event,n,{type:e,isSimulated:!0});T.event.trigger(r,null,t)}}),T.fn.extend({trigger:function(e,t){return this.each((function(){T.event.trigger(e,t,this)}))},triggerHandler:function(e,t){var n=this[0];if(n)return T.event.trigger(e,t,n,!0)}}),g.focusin||T.each({focus:"focusin",blur:"focusout"},(function(e,t){var n=function(e){T.event.simulate(t,e.target,T.event.fix(e))};T.event.special[t]={setup:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t);i||r.addEventListener(e,n,!0),G.access(r,t,(i||0)+1)},teardown:function(){var r=this.ownerDocument||this.document||this,i=G.access(r,t)-1;i?G.access(r,t,i):(r.removeEventListener(e,n,!0),G.remove(r,t))}}}));var kt=n.location,Tt={guid:Date.now()},Et=/\?/;T.parseXML=function(e){var t;if(!e||"string"!==typeof e)return null;try{t=(new n.DOMParser).parseFromString(e,"text/xml")}catch(r){t=void 0}return t&&!t.getElementsByTagName("parsererror").length||T.error("Invalid XML: "+e),t};var St=/\[\]$/,Ct=/\r?\n/g,Nt=/^(?:submit|button|image|reset|file)$/i,Pt=/^(?:input|select|textarea|keygen)/i;function _t(e,t,n,r){var i;if(Array.isArray(t))T.each(t,(function(t,i){n||St.test(e)?r(e,i):_t(e+"["+("object"===typeof i&&null!=i?t:"")+"]",i,n,r)}));else if(n||"object"!==k(t))r(e,t);else for(i in t)_t(e+"["+i+"]",t[i],n,r)}T.param=function(e,t){var n,r=[],i=function(e,t){var n=v(t)?t():t;r[r.length]=encodeURIComponent(e)+"="+encodeURIComponent(null==n?"":n)};if(null==e)return"";if(Array.isArray(e)||e.jquery&&!T.isPlainObject(e))T.each(e,(function(){i(this.name,this.value)}));else for(n in e)_t(n,e[n],t,i);return r.join("&")},T.fn.extend({serialize:function(){return T.param(this.serializeArray())},serializeArray:function(){return this.map((function(){var e=T.prop(this,"elements");return e?T.makeArray(e):this})).filter((function(){var e=this.type;return this.name&&!T(this).is(":disabled")&&Pt.test(this.nodeName)&&!Nt.test(e)&&(this.checked||!pe.test(e))})).map((function(e,t){var n=T(this).val();return null==n?null:Array.isArray(n)?T.map(n,(function(e){return{name:t.name,value:e.replace(Ct,"\r\n")}})):{name:t.name,value:n.replace(Ct,"\r\n")}})).get()}});var Dt=/%20/g,Ot=/#.*$/,At=/([?&])_=[^&]*/,Lt=/^(.*?):[ \t]*([^\r\n]*)$/gm,jt=/^(?:GET|HEAD)$/,Rt=/^\/\//,Mt={},It={},zt="*/".concat("*"),Ft=b.createElement("a");function Ht(e){return function(t,n){"string"!==typeof t&&(n=t,t="*");var r,i=0,o=t.toLowerCase().match(I)||[];if(v(n))for(;r=o[i++];)"+"===r[0]?(r=r.slice(1)||"*",(e[r]=e[r]||[]).unshift(n)):(e[r]=e[r]||[]).push(n)}}function qt(e,t,n,r){var i={},o=e===It;function a(l){var u;return i[l]=!0,T.each(e[l]||[],(function(e,l){var s=l(t,n,r);return"string"!==typeof s||o||i[s]?o?!(u=s):void 0:(t.dataTypes.unshift(s),a(s),!1)})),u}return a(t.dataTypes[0])||!i["*"]&&a("*")}function Wt(e,t){var n,r,i=T.ajaxSettings.flatOptions||{};for(n in t)void 0!==t[n]&&((i[n]?e:r||(r={}))[n]=t[n]);return r&&T.extend(!0,e,r),e}Ft.href=kt.href,T.extend({active:0,lastModified:{},etag:{},ajaxSettings:{url:kt.href,type:"GET",isLocal:/^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test(kt.protocol),global:!0,processData:!0,async:!0,contentType:"application/x-www-form-urlencoded; charset=UTF-8",accepts:{"*":zt,text:"text/plain",html:"text/html",xml:"application/xml, text/xml",json:"application/json, text/javascript"},contents:{xml:/\bxml\b/,html:/\bhtml/,json:/\bjson\b/},responseFields:{xml:"responseXML",text:"responseText",json:"responseJSON"},converters:{"* text":String,"text html":!0,"text json":JSON.parse,"text xml":T.parseXML},flatOptions:{url:!0,context:!0}},ajaxSetup:function(e,t){return t?Wt(Wt(e,T.ajaxSettings),t):Wt(T.ajaxSettings,e)},ajaxPrefilter:Ht(Mt),ajaxTransport:Ht(It),ajax:function(e,t){"object"===typeof e&&(t=e,e=void 0);var r,i,o,a,l,u,s,c,f,d,p=T.ajaxSetup({},t=t||{}),h=p.context||p,m=p.context&&(h.nodeType||h.jquery)?T(h):T.event,g=T.Deferred(),v=T.Callbacks("once memory"),y=p.statusCode||{},x={},w={},k="canceled",E={readyState:0,getResponseHeader:function(e){var t;if(s){if(!a)for(a={};t=Lt.exec(o);)a[t[1].toLowerCase()+" "]=(a[t[1].toLowerCase()+" "]||[]).concat(t[2]);t=a[e.toLowerCase()+" "]}return null==t?null:t.join(", ")},getAllResponseHeaders:function(){return s?o:null},setRequestHeader:function(e,t){return null==s&&(e=w[e.toLowerCase()]=w[e.toLowerCase()]||e,x[e]=t),this},overrideMimeType:function(e){return null==s&&(p.mimeType=e),this},statusCode:function(e){var t;if(e)if(s)E.always(e[E.status]);else for(t in e)y[t]=[y[t],e[t]];return this},abort:function(e){var t=e||k;return r&&r.abort(t),S(0,t),this}};if(g.promise(E),p.url=((e||p.url||kt.href)+"").replace(Rt,kt.protocol+"//"),p.type=t.method||t.type||p.method||p.type,p.dataTypes=(p.dataType||"*").toLowerCase().match(I)||[""],null==p.crossDomain){u=b.createElement("a");try{u.href=p.url,u.href=u.href,p.crossDomain=Ft.protocol+"//"+Ft.host!==u.protocol+"//"+u.host}catch(C){p.crossDomain=!0}}if(p.data&&p.processData&&"string"!==typeof p.data&&(p.data=T.param(p.data,p.traditional)),qt(Mt,p,t,E),s)return E;for(f in(c=T.event&&p.global)&&0===T.active++&&T.event.trigger("ajaxStart"),p.type=p.type.toUpperCase(),p.hasContent=!jt.test(p.type),i=p.url.replace(Ot,""),p.hasContent?p.data&&p.processData&&0===(p.contentType||"").indexOf("application/x-www-form-urlencoded")&&(p.data=p.data.replace(Dt,"+")):(d=p.url.slice(i.length),p.data&&(p.processData||"string"===typeof p.data)&&(i+=(Et.test(i)?"&":"?")+p.data,delete p.data),!1===p.cache&&(i=i.replace(At,"$1"),d=(Et.test(i)?"&":"?")+"_="+Tt.guid+++d),p.url=i+d),p.ifModified&&(T.lastModified[i]&&E.setRequestHeader("If-Modified-Since",T.lastModified[i]),T.etag[i]&&E.setRequestHeader("If-None-Match",T.etag[i])),(p.data&&p.hasContent&&!1!==p.contentType||t.contentType)&&E.setRequestHeader("Content-Type",p.contentType),E.setRequestHeader("Accept",p.dataTypes[0]&&p.accepts[p.dataTypes[0]]?p.accepts[p.dataTypes[0]]+("*"!==p.dataTypes[0]?", "+zt+"; q=0.01":""):p.accepts["*"]),p.headers)E.setRequestHeader(f,p.headers[f]);if(p.beforeSend&&(!1===p.beforeSend.call(h,E,p)||s))return E.abort();if(k="abort",v.add(p.complete),E.done(p.success),E.fail(p.error),r=qt(It,p,t,E)){if(E.readyState=1,c&&m.trigger("ajaxSend",[E,p]),s)return E;p.async&&p.timeout>0&&(l=n.setTimeout((function(){E.abort("timeout")}),p.timeout));try{s=!1,r.send(x,S)}catch(C){if(s)throw C;S(-1,C)}}else S(-1,"No Transport");function S(e,t,a,u){var f,d,b,x,w,k=t;s||(s=!0,l&&n.clearTimeout(l),r=void 0,o=u||"",E.readyState=e>0?4:0,f=e>=200&&e<300||304===e,a&&(x=function(e,t,n){for(var r,i,o,a,l=e.contents,u=e.dataTypes;"*"===u[0];)u.shift(),void 0===r&&(r=e.mimeType||t.getResponseHeader("Content-Type"));if(r)for(i in l)if(l[i]&&l[i].test(r)){u.unshift(i);break}if(u[0]in n)o=u[0];else{for(i in n){if(!u[0]||e.converters[i+" "+u[0]]){o=i;break}a||(a=i)}o=o||a}if(o)return o!==u[0]&&u.unshift(o),n[o]}(p,E,a)),!f&&T.inArray("script",p.dataTypes)>-1&&(p.converters["text script"]=function(){}),x=function(e,t,n,r){var i,o,a,l,u,s={},c=e.dataTypes.slice();if(c[1])for(a in e.converters)s[a.toLowerCase()]=e.converters[a];for(o=c.shift();o;)if(e.responseFields[o]&&(n[e.responseFields[o]]=t),!u&&r&&e.dataFilter&&(t=e.dataFilter(t,e.dataType)),u=o,o=c.shift())if("*"===o)o=u;else if("*"!==u&&u!==o){if(!(a=s[u+" "+o]||s["* "+o]))for(i in s)if((l=i.split(" "))[1]===o&&(a=s[u+" "+l[0]]||s["* "+l[0]])){!0===a?a=s[i]:!0!==s[i]&&(o=l[0],c.unshift(l[1]));break}if(!0!==a)if(a&&e.throws)t=a(t);else try{t=a(t)}catch(C){return{state:"parsererror",error:a?C:"No conversion from "+u+" to "+o}}}return{state:"success",data:t}}(p,x,E,f),f?(p.ifModified&&((w=E.getResponseHeader("Last-Modified"))&&(T.lastModified[i]=w),(w=E.getResponseHeader("etag"))&&(T.etag[i]=w)),204===e||"HEAD"===p.type?k="nocontent":304===e?k="notmodified":(k=x.state,d=x.data,f=!(b=x.error))):(b=k,!e&&k||(k="error",e<0&&(e=0))),E.status=e,E.statusText=(t||k)+"",f?g.resolveWith(h,[d,k,E]):g.rejectWith(h,[E,k,b]),E.statusCode(y),y=void 0,c&&m.trigger(f?"ajaxSuccess":"ajaxError",[E,p,f?d:b]),v.fireWith(h,[E,k]),c&&(m.trigger("ajaxComplete",[E,p]),--T.active||T.event.trigger("ajaxStop")))}return E},getJSON:function(e,t,n){return T.get(e,t,n,"json")},getScript:function(e,t){return T.get(e,void 0,t,"script")}}),T.each(["get","post"],(function(e,t){T[t]=function(e,n,r,i){return v(n)&&(i=i||r,r=n,n=void 0),T.ajax(T.extend({url:e,type:t,dataType:i,data:n,success:r},T.isPlainObject(e)&&e))}})),T.ajaxPrefilter((function(e){var t;for(t in e.headers)"content-type"===t.toLowerCase()&&(e.contentType=e.headers[t]||"")})),T._evalUrl=function(e,t,n){return T.ajax({url:e,type:"GET",dataType:"script",cache:!0,async:!1,global:!1,converters:{"text script":function(){}},dataFilter:function(e){T.globalEval(e,t,n)}})},T.fn.extend({wrapAll:function(e){var t;return this[0]&&(v(e)&&(e=e.call(this[0])),t=T(e,this[0].ownerDocument).eq(0).clone(!0),this[0].parentNode&&t.insertBefore(this[0]),t.map((function(){for(var e=this;e.firstElementChild;)e=e.firstElementChild;return e})).append(this)),this},wrapInner:function(e){return v(e)?this.each((function(t){T(this).wrapInner(e.call(this,t))})):this.each((function(){var t=T(this),n=t.contents();n.length?n.wrapAll(e):t.append(e)}))},wrap:function(e){var t=v(e);return this.each((function(n){T(this).wrapAll(t?e.call(this,n):e)}))},unwrap:function(e){return this.parent(e).not("body").each((function(){T(this).replaceWith(this.childNodes)})),this}}),T.expr.pseudos.hidden=function(e){return!T.expr.pseudos.visible(e)},T.expr.pseudos.visible=function(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},T.ajaxSettings.xhr=function(){try{return new n.XMLHttpRequest}catch(e){}};var Ut={0:200,1223:204},$t=T.ajaxSettings.xhr();g.cors=!!$t&&"withCredentials"in $t,g.ajax=$t=!!$t,T.ajaxTransport((function(e){var t,r;if(g.cors||$t&&!e.crossDomain)return{send:function(i,o){var a,l=e.xhr();if(l.open(e.type,e.url,e.async,e.username,e.password),e.xhrFields)for(a in e.xhrFields)l[a]=e.xhrFields[a];for(a in e.mimeType&&l.overrideMimeType&&l.overrideMimeType(e.mimeType),e.crossDomain||i["X-Requested-With"]||(i["X-Requested-With"]="XMLHttpRequest"),i)l.setRequestHeader(a,i[a]);t=function(e){return function(){t&&(t=r=l.onload=l.onerror=l.onabort=l.ontimeout=l.onreadystatechange=null,"abort"===e?l.abort():"error"===e?"number"!==typeof l.status?o(0,"error"):o(l.status,l.statusText):o(Ut[l.status]||l.status,l.statusText,"text"!==(l.responseType||"text")||"string"!==typeof l.responseText?{binary:l.response}:{text:l.responseText},l.getAllResponseHeaders()))}},l.onload=t(),r=l.onerror=l.ontimeout=t("error"),void 0!==l.onabort?l.onabort=r:l.onreadystatechange=function(){4===l.readyState&&n.setTimeout((function(){t&&r()}))},t=t("abort");try{l.send(e.hasContent&&e.data||null)}catch(u){if(t)throw u}},abort:function(){t&&t()}}})),T.ajaxPrefilter((function(e){e.crossDomain&&(e.contents.script=!1)})),T.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/\b(?:java|ecma)script\b/},converters:{"text script":function(e){return T.globalEval(e),e}}}),T.ajaxPrefilter("script",(function(e){void 0===e.cache&&(e.cache=!1),e.crossDomain&&(e.type="GET")})),T.ajaxTransport("script",(function(e){var t,n;if(e.crossDomain||e.scriptAttrs)return{send:function(r,i){t=T("